> For the complete CircleCI developer hub index, see [llms.txt](https://circleci.com/developer/llms.txt)

# skenai/skencli

Sken.ai offers a DevOps-first Continuous Application Security Scanning. With Sken, your apps on Circle CI will be automatically scanned for security vulnerabilities. Sken is one tool to do all types of scans - SAST, DAST, SCA, Secrets and more, without the need for any AppSec expertise.


## Jobs

### scan

This job will run security scanners based off the config in your sken.yaml file. Before running this orb, you must login to our dashboard (https://dashboard.sken.ai) to obtain your org-id and app-id. Once done, create a sken.yaml in the root directory. You may then run this job. For more information: http://docs.sken.ai/en/articles/4797372-how-to-integrate-sken-ai-with-circleci . This job runs the scans as defined in sken.yaml and logs the results. The scan results are available in the Sken dashboard https://dashboard.sken.ai once the job is completed.


## Examples

### run-scan

This example describes how to use sken.ai's orb. First go to https://sken.ai and sign up for a free forever account. Then login to sken dashboard at https://dashboard.sken.ai , create a new application there and obtain your org-id and app-id for that application. This orb will run security scanners based off the config in your sken.yaml file. For more information: http://docs.sken.ai/en/articles/4797372-how-to-integrate-sken-ai-with-circleci


```yaml
version: '2.1'
orbs:
  skencli: skenai/skencli@x.y
workflows:
  main:
    jobs:
      - skencli/scan
```