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/claude-mdgit clone --depth 1 https://github.com/10xHub/AgentflowWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/instructions/10xhub/agentflow/claude-md)<a href="https://agentmods.dev/instructions/10xhub/agentflow/claude-md"><img src="https://agentmods.dev/badge/instructions/10xhub/agentflow/claude-md.svg" alt="Measured on agentmods" height="20"></a>What 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.02839 | $0.02839 |
| Opus 5 | $0.01419 | $0.01419 |
| Sonnet 5 | $0.00568 | $0.00568 |
| Haiku 4.5 | $0.00284 | $0.00284 |
Grade A, and why
Agentflow 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 3d 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 — 184 lines — stays where its author put it; the contents beside it link to each section on GitHub.
agentflow (core Python library) — Engineering Guide
This file documents the core Python framework only (10xscale-agentflow, the package that
lives in this folder). For the API/CLI, TS client, docs, or playground, see the CLAUDE.md in
their respective folders and the workspace-root CLAUDE.md for the monorepo overview.
- Package name (PyPI):
10xscale-agentflow - Version:
1.0.0(single source of truth:pyproject.toml;agentflow.__version__resolves from installed distribution metadata, so it cannot drift from this file) - Requires: Python >= 3.12
- Importable top-level package lives at
agentflow/agentflow/(this folder is the repo root; the importable package is the nestedagentflow/directory).
What this package is
A graph-based orchestration engine for multi-agent LLM systems. It is LLM-agnostic: you bring the provider SDK (OpenAI / Google GenAI), and Agentflow provides the workflow engine, state, persistence, tools, memory, evaluation, and event publishing. Inspired by LangGraph but simpler.
Working principles for this codebase
- Read before writing. The public API is large and re-exported through many
__init__.pyfiles. Confirm the real export path before referencing a symbol (see Import Map below). - Examples are the source of truth, not the README.
examples/uses current import paths; the README and several docstrings still show pre-refactor paths (see Known Doc Drift). - Surgical edits. This is
Development Status :: 5 - Production/Stable. Don't refactor module boundaries or rename exports without checking every__init__.pythat re-exports them. - Keep coverage green.
pytestenforces--cov-fail-under=80. New code needs tests. - Optional deps are optional. Provider SDKs, MCP, Postgres, Redis, Qdrant, Mem0, Kafka, RabbitMQ, OTEL, a2a are all extras. Guard imports; never make core import a hard optional dep.
Package layout (real, current)
The importable package is agentflow/agentflow/. Top-level subpackages:
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.
- 3d ago First seen · 184 lines · 2,839 tokens per session scan A 757991d709c9
Agentflow CLAUDE.md is an instructions file published in the GitHub repository 10xHub/Agentflow (20 stars, last pushed 18d ago), licensed MIT. It adds 2,839 tokens to every session, about $0.0142 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-30.
Other instructions, from other repositories
agent-framework python.instructions.md
Instructions for microsoft/agent-framework: See AGENTS.md for project structure and package documentation. Detailed conventions are in the agent skills under .github/skills/.
mini-swe-agent copilot-instructions.md
Copilot instructions for SWE-agent/mini-swe-agent, covering style guide, test style, bad and good.
innovation-lab-examples python.instructions.md
Instructions for fetchai/innovation-lab-examples, a project described as: 80+ production-ready AI agent examples in Python — build autonomous agents, multi-agent systems and agentic AI with uAgents, ASI:One, MCP, A2A, LangChain, CrewAI, Gemini, Claude and OpenAI.
valuecell AGENTS.md
Instructions for ValueCell-ai/valuecell, covering guidelines, python programming, python environment, imports and runtime checks.
apex-accelerator python.instructions.md
Python coding conventions for diagram generation, MCP servers, and tooling scripts.
agentinsight-sdk-python AGENTS.md
Instructions for AgentInsight/agentinsight-sdk-python, covering agentinsight python sdk — 智能体执行规则, 1. 项目基本信息, 1.1 技术栈, 1.2 项目关键特征 and 1.3 项目目录结构.