Skip to content

Command Line Interface (CLI)

Tools · Sovereign Automation

For system administrators and technical profiles, the Cognitive Suite offers a powerful Python-based command line interface for automation, scripting, and enclave management.


Main Commands

📥 Document Ingestion

Send files directly to the semantic processing engine.

atlantyqa ingest --file report_q1.pdf \
  --title "Quarterly Analysis" --tags legal,risk

📋 Real-Time Monitoring

View local worker logs. Ideal for infrastructure debugging.

atlantyqa logs --follow

🖥️ Enclave Status

Check local models and resource usage (GPU/RAM) of the cognitive engine.

atlantyqa status --detailed

🔄 GitOps Sync

Persist results in the local repository and generate the corresponding Pull Request.

atlantyqa gitops sync \
  --message "feat: weekly-analysis-sync"

Pipeline Integration

The CLI is designed for Bash scripts and local CI/CD pipelines:

#!/bin/bash
# Automated nightly analysis script
FILES=$(ls /data/incoming/*.pdf)

for file in $FILES; do
    atlantyqa ingest --file "$file" --silent
done

atlantyqa gitops sync --message "auto: nightly-batch-process"

Full Reference

Get a complete list of commands and options by running atlantyqa --help.