AgenticFlow CLI
Command-line interface for AgenticFlow — build agents, deploy workflows and multi-agent workforces, and automate operations from your shell.
Install
# Run without installing
npx @pixelml/agenticflow-cli doctor
# Or install globally (recommended for daily use)
npm install -g @pixelml/agenticflow-cliQuick Start
# 1. Authenticate (interactive — prompts for API key, workspace, project)
af login
# 2. One-shot orientation — auth, agents, workforces, blueprints, playbooks, what's new
af bootstrap --json
# 3. Deploy a starter — pick the simplest shape that fits your need
af workflow init --blueprint summarize-url --json # rung 2: URL → LLM summary
af agent init --blueprint research-assistant --json # rung 3: agent with web-search plugins
af workforce init --blueprint parallel-research --json # rung 6: 4-agent fan-out DAG
# 4. Run it
af workflow run --workflow-id <id> --input '{"url":"..."}' --json
af agent run --agent-id <id> --message "..." --json
af workforce run --workforce-id <id> --trigger-data '{"message":"..."}'The composition ladder
Rung
Kind
Deploy
What it does
Blueprints (20 CLI-shipped starters)
Marketplace (live catalog)
Authentication
Method
Usage
Best For
Environment Variables
Variable
Purpose
AI-Agent Discovery — start here
Core Commands
Workflows (rungs 0-2 — deterministic)
Agents (rung 3 — flexible)
Workforces (rung 6 — multi-agent DAG)
MCP clients (external tool providers)
Marketplace templates
Company (portable agent-bundle I/O) [hidden — legacy]
Playbooks — guided paths
Global Options
Flag
Purpose
Hidden (deprecated) commands
Error Handling
SDK
Next Steps
Last updated