Skip to main content
CodeAnt provides two interfaces for exploring scan results - an interactive terminal UI for humans, and a set of CLI subcommands for scripts and AI agents.

Interactive UI: scan-center

Browse scan results interactively in your terminal.
Launches a full-terminal interactive UI. Navigate through:
  1. Connection - Select your organization/connection
  2. Repository - Pick a repository
  3. Scan - Select a scan (latest or historical)
  4. Result type - Choose a finding category:
    • Security Issues (SAST), Anti-Patterns, Docstring Issues, Complex Functions
    • SCA, SBOM, Secrets, IaC, Dead Code
    • Dismissed Alerts, Dismissed Secrets
No options. Use arrow keys and Enter to navigate.

Agent / Script Interface: scans

The scans subcommands expose the same data as structured output, designed for use in CI pipelines, AI agents, and scripts.

scans orgs

List authenticated organizations.
Output: Returns your connections and user email.

scans repos

List repositories for an organization.
Examples:

scans history

Show scan history for a repository.
Examples:

scans get

Show scan metadata and a severity/category summary. Does not include individual findings.
Scan types: sast, anti_patterns, docstring, complex_functions, sca, sbom, secrets, iac, dead_code, all Examples:

scans results

Fetch full scan findings for a repository.
Examples:
Exit codes:

scans dismissed

List dismissed alerts for a repository.
Examples:

scans start-scan

Trigger a new analysis run for a repository.
All options are optional - repo, branch, and commit are auto-detected from the local git context. Examples: