Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/10xhub/agentflow-cli/claude-mdgit clone --depth 1 https://github.com/10xHub/agentflow-cliWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.03664 | $0.03664 |
| Opus 5 | $0.01832 | $0.01832 |
| Sonnet 5 | $0.00733 | $0.00733 |
| Haiku 4.5 | $0.00366 | $0.00366 |
Grade A, and why
agentflow-cli CLAUDE.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 185 lines — stays where its author put it; the contents beside it link to each section on GitHub.
agentflow-api (API server + CLI) — Engineering Guide
This file documents the API server and CLI package only (10xscale-agentflow-cli). For the
core framework see agentflow/CLAUDE.md; for the TS client, docs, or playground see their folders;
for the monorepo overview see the workspace-root CLAUDE.md.
-
Package name (PyPI):
10xscale-agentflow-cli -
Version:
0.5.0(pyproject.toml).CLI_VERSIONandagentflow_cli.__version__are single-sourced from the installed distribution metadata (falling back topyproject.tomlonly for a non-installed source checkout), soagentflow versionreports0.5.0consistently. -
Requires: Python >= 3.12 · Status:
4 - Beta -
Console entry point:
agentflow = agentflow_cli.cli.main:main -
Depends on the core framework:
10xscale-agentflow>=0.7.0. -
Depends on the core framework:
10xscale-agentflow>=0.9.0(0.9.0 is the first release that shipsagentflow.core.authz, which the RBAC/scope code imports).
What this package is
It turns an Agentflow CompiledGraph into a production FastAPI service, plus a Typer CLI to
scaffold, run, build, test, and evaluate that service. You write a graph, point agentflow.json
at it, and agentflow api serves it over REST + WebSocket with auth, rate limiting, media
handling, checkpointer/thread management, and a memory store API.
Package layout
Importable package: agentflow_cli/. Two halves:
| Path | What lives there |
|---|---|
agentflow_cli/cli/ |
The Typer CLI. main.py (command definitions), commands/ (one class per command: api, build, eval, init, skills, test, version), core/ (config, output, validation), constants.py, templates/ (project scaffolds: dev/ minimal, prod/ full) |
agentflow_cli/src/app/ |
The FastAPI app. main.py + loader.py (build app from agentflow.json), routers/ (graph, checkpointer, store, media, ping), core/auth/, core/config/, core/middleware/ (rate_limit, security_headers, request_limits), tasks/, utils/, worker.py |
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 185 lines · 3,664 tokens per session scan A e1b68cb29f51
agentflow-cli CLAUDE.md is an instructions file published in the GitHub repository 10xHub/agentflow-cli (5 stars, last pushed 15d ago), licensed MIT. It adds 3,664 tokens to every session, about $0.0183 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
agent-collab AGENTS.md
AGENTS.md instructions for zebbern/agent-collab, covering agent-collab — agent guide, commands, hard rules, platform facts (learned the hard way — do not rediscover) and working style.
Agentflow CLAUDE.md
Instructions for 10xHub/Agentflow, covering agentflow (core python library) — engineering guide, what this package is, working principles for this codebase, package layout (real, current) and import map (verified) — this is the part that bites people.
Agentflow copilot-instructions.md
Instructions for 10xHub/Agentflow, covering copilot instructions for 10xscale agentflow, big picture, architecture essentials, authoritative examples and conventions.
agent-collab CLAUDE.md
Claude Code instructions for zebbern/agent-collab, a project described as: Run Codex and Cursor as background workers inside Claude Code. Reviews, tasks, and rescues with tracked jobs, live progress, and session handoffs.
agent-compass copilot-instructions.md
Copilot instructions for YoavLax/agent-compass, covering copilot instructions — ai readiness analyzer, tech stack, coding guidelines, project structure and resources.
agent-compass CLAUDE.md
Claude Code instructions for YoavLax/agent-compass, covering claude.md and claude code specifics.