AgenticFlow CLI

The AgenticFlow CLI is the terminal/operator interface for public AgenticFlow APIs.

It is designed for:

  • engineers scripting platform operations,

  • AI agents executing deterministic API tasks,

  • CI/CD jobs that need machine-readable output and guardrails.

What You Can Do

  • Discover available operations from the bundled public OpenAPI snapshot.

  • Rank capabilities for a task before execution.

  • Call public endpoints directly by operation_id or method + path.

  • Run policy-guarded automation with dry-run support.

  • Use profile-based auth with AGENTICFLOW_PUBLIC_API_KEY.

Quick Start

# 1) install
pip install agenticflow-cli

# 2) set auth
export AGENTICFLOW_PUBLIC_API_KEY=your_public_key

# 3) preflight checks
agenticflow doctor --json

# 4) discover public operations
agenticflow ops list --public-only

# 5) invoke a known public endpoint
agenticflow call --operation-id health_check_v1_health_get

As of February 19, 2026, these command groups are the most reliable for public API usage:

  • ops

  • catalog

  • call

  • node-types

  • auth

  • doctor

  • policy

  • playbook

Known Limitation (Current Snapshot)

As of February 19, 2026, these wrappers are supported against the public snapshot:

  • workflow get|run|run-status|validate

  • agent get|stream

These wrappers are intentionally blocked because matching public endpoints are not in the snapshot:

  • workflow create|update

  • agent create|update

  • node-types dynamic-options

  • connections list|categories

For unsupported actions, the CLI now returns explicit unsupported-command errors. For universal compatibility, prefer:

  • agenticflow ops list --public-only

  • agenticflow call --operation-id <id>

Next

Last updated