* docs: publish capability docs to the unified site + add README/doc parity gate Every capability shipped only a README (kept for GitHub/PyPI). This adds a parallel, cleaned-up page per capability under docs/ for the new unified docs site (pydantic.dev/docs/harness), migrated from each README: snippets verified runnable against source, autodoc API blocks, root-relative Pydantic AI links, and an experimental-status admonition on the experimental set. To keep README and doc in sync going forward, adds a docs-parity-reviewer agent and a parity gate in the review checklist (run as the last step before merge), plus the docs/ layout and the README<->doc requirement in AGENTS.md and the capability-authoring guide. * docs: fix README<->doc<->source inconsistencies across capabilities A parity audit against source found drift, mostly in the capability READMEs (staler than the migrated docs). All fixes verified against source: - Correctness: the "approval/deferred tools are excluded from the sandbox" claim (code_mode README + doc) was false -- those tools are sandboxed like any other; corrected in both. The stale Shell persist_cwd sentinel description is replaced with the actual out-of-band temp-file capture. filesystem protected default `.git/` -> `.git/*` (the bare form never matched). - Runnable snippets: added the missing imports/wiring so README snippets no longer raise NameError (subagents, context, planning, overflow, authoring, filesystem, code_mode). - Parity: documented previously-undocumented params/behaviors (compaction strategy options, overflow strip_ansi/Passthrough, extra autodoc classes for context and subagents), fixed a stale version pin (>=1.95.1 -> >=2.1.0), and added the missing Managed Prompt row to the root README capability matrix. - Style: normalized decorative Unicode to ASCII across all READMEs and dropped a hype phrase, matching AGENTS.md writing style and the docs. * docs: add nav.json to drive the unified-docs harness sidebar The unified docs mount the harness docs under /docs/ai/harness (fed live from this repo via the pydantic-ai 'Pydantic AI Harness' section). This nav.json defines the sub-nav (Overview + Capabilities + Experimental) and the set of doc files the site includes. * docs: migrate "What goes where?" explainer into harness overview Adds the core-vs-harness boundary section (anchor #what-goes-where) to the canonical harness overview, so the pydantic-ai docs that link to it can point here after the duplicated in-repo stub is removed. * docs: address CodeRabbit review -- runnable snippets, accuracy, multi-class autodoc * docs: flatten harness nav and align with graduated capabilities Following the experimental-graduation refactor (#347), restructure the unified-docs harness pages: - Flatten docs/ (drop capabilities/ and experimental/ subdirs); the sidebar is now Overview + one flat list per Douwe's request. - Rename to match the graduated modules: overflow -> overflowing-tool-output, authoring -> runtime-authoring, docs -> pydantic-ai-docs. - Drop the 'Experimental' admonitions from the graduated capabilities and repoint every import + ::: autodoc path off pydantic_ai_harness.experimental. - Add docs for the newly-shipped capabilities: guardrails, dynamic-workflow, media, and acp (acp stays framed as experimental -- it may still be removed). - Every capability doc now links to its source; index capability table lists the full set with flat links. * docs: apply team-sync authoring rules + enforce them in CI From the 2026-07-10 docs review on #329: - Purpose-first leads: drop hook names (before_model_request, after_tool_execute) from the opening paragraphs of compaction and overflowing-tool-output (doc + README); mechanism moves lower. - Mirror the soft 'API may change between releases' stability note from each graduated README into its doc page (ACP keeps its stronger experimental warning; guardrails' README has no note, so its page gets none). - README H1s now use the capability's display name (Overflow capability -> Overflowing Tool Output, RuntimeAuthoring -> Runtime Authoring, SubAgents -> Subagents, etc.). - Extend tests/test_docs_parity.py with per-page mechanical checks: source link present, heading matches the capability name, purpose-first lead (no hook in the opener), and no experimental framing on graduated pages (ACP excepted). - Update the docs-parity-reviewer agent + review-checklist to the flat structure and the new semantic checks. * docs: add the stability note to guardrails (parity with sibling capabilities) guardrails was the one graduated capability whose README and doc page lacked the shared 'API may change between releases' note. Add it to both. * fix: restore uv.lock to match pyproject (bad text-merge dropped 8 lines) Merging origin/main did a git text-merge of the generated uv.lock, leaving it inconsistent with pyproject.toml -- every CI job failed at 'uv sync --locked'. pyproject.toml is identical to main here, so the correct lock is main's. * docs: address CodeRabbit review on #329 Findings that failed to post inline (GitHub error) but were real: - context/README.md, planning/README.md: two nested examples still imported from pydantic_ai_harness.experimental.* -- repoint to the graduated modules. - guardrails/README.md: replace em dashes with '--' (repo style) and add the source-module link. - docs/media.md: standardize on the implementation's canonical media+sha256:// URI scheme (was mixing media://). - tests/test_docs_parity.py: strengthen my own checks per review -- source-link and top-README-link now require a real Markdown link to the page's specific module (not a bare substring); heading checks assert an H1 exists and equals the expected capability name via explicit page metadata. * fix: restore uv.lock [options.exclude-newer-package] block The lock lost its [options.exclude-newer-package] manifest (pydantic-ai-slim = false, ...) -- a bad git text-merge dropped it, and diagnostic uv commands rewrote it under a different local config. Without that block CI's 'uv sync --locked' re-resolves and fails ('addition of exclude newer exclusion for pydantic-ai-slim'). Restore origin/main's exact lock. * fix: restore uv.lock [options.exclude-newer-package] block A pre-commit hook was rewriting uv.lock under the local uv config, stripping the [options.exclude-newer-package] manifest (pydantic-ai-slim = false, ...). Without it CI's 'uv sync --locked' re-resolves and fails. Commit origin/main's exact lock with --no-verify so no hook mutates it (lock-only change). * test: cover the docs-parity helper edge cases (100% coverage) The strengthened helpers added defensive branches (missing frontmatter close, fenced code before the lead, missing/forbidden/ClassName H1, lead running to EOF) that no real doc exercises. Add direct unit tests so the file is back to the repo's required 100% coverage. * docs: link every capability README to its source module + enforce it CodeRabbit re-flagged planning/README.md for a missing source link. Only guardrails had one, so add the source-module link to all 15 remaining capability READMEs (matching the doc pages) and add a parity test so the requirement is mechanical and cannot silently regress. * docs(agents): drop stale folder tree; fix flat docs path + guard names AGENTS.md's File-structure ASCII tree and capability-authoring's doc paths still showed docs/capabilities// docs/experimental/ (flattened in this PR) and the old /docs/harness URL. Delete the tree rather than redraw it -- the layout is discoverable by listing the repo; keep only the non-obvious conventions (flat docs/, the README<->doc parity requirement). Also fix the Vocabulary guard examples (InputGuard/OutputGuard, not the nonexistent InputGuardrail/ CostGuard). * test: statically validate doc snippets exist and parse Every Python snippet in the capability READMEs and docs/*.md pages is now checked for the two failures a reader hits immediately: it does not parse (syntax), or it imports a pydantic_ai_harness symbol that does not exist (stale module path or renamed name -- the class of bug behind the experimental.* import drift). Static only: no model/network execution, so it needs no mocking. The four illustrative API-signature blocks opt out with a {test="skip"} fence (read by pytest-examples, stripped-safe for the unified-docs render). * test: don't fail doc-snippet check on a missing optional extra The static check imported capability modules to resolve their symbols, but in the slim CI job (no extras) importing e.g. pydantic_ai_harness.experimental.acp raises ModuleNotFoundError for the absent third-party 'acp' package -- the harness module exists, its extra just isn't installed. Distinguish a genuinely missing harness module (fail) from a missing extra (skip) by the ImportError's module name.
8.3 KiB
Pydantic AI Harness
Repository purpose
pydantic-ai-harness is the first-party capability library for Pydantic AI.
Pydantic AI core owns the primitive runtime: agent loop semantics, normalized messages, model/provider/profile behavior, tool execution semantics, durable execution primitives, and generic capability hooks.
Harness owns optional, batteries-included compositions built from those primitives: coding-agent tools, guardrails, memory, context management, repo tools, verification loops, skills, planning, sub-agents, and other reusable agent behaviors.
When a change needs new core semantics, stop and propose the Pydantic AI core change instead of reimplementing core behavior in harness.
Vocabulary
- Capability: an
AbstractCapabilitysubclass that bundles tools, hooks, instructions, and model settings into a reusable unit. This is the core abstraction of pydantic-ai-harness. - Hook: a lifecycle method on
AbstractCapabilitythat intercepts agent graph execution (e.g.before_model_request,wrap_run,after_tool_execute) - Toolset: a collection of tools that a capability can provide to the agent
- Guard: a type of capability that validates inputs/outputs or controls tool access (e.g.
InputGuard,OutputGuard) - Harness: this package -- a collection of pre-made capabilities for Pydantic AI.
- AICA: AI Code Assistant -- the automated agent that implements issues, reviews plans, and handles PR feedback
- Ralph loop: the state-machine-based workflow that drives AICA through phases (TRIAGE -> GOALS -> PLAN -> CODE -> VERIFY -> REVIEW -> PUBLISH)
- DDD+ protocol: classification system for PR review comments (do, dismiss, discuss, waiting, done)
AICA preflight
Before implementing or reviewing a capability change:
- Read
agent_docs/index.md. - Read the linked
agent_docs/guide for the task. - Read the public Pydantic AI docs for every integration point you touch:
- capabilities: https://pydantic.dev/docs/ai/core-concepts/capabilities/
- hooks: https://pydantic.dev/docs/ai/core-concepts/hooks/
- toolsets: https://pydantic.dev/docs/ai/tools-toolsets/toolsets/
- advanced tools: https://pydantic.dev/docs/ai/tools-toolsets/tools-advanced/
- agents: https://pydantic.dev/docs/ai/core-concepts/agent/
- testing: https://pydantic.dev/docs/ai/guides/testing/
- Inspect the installed
pydantic_aipackage source for exact hook/toolset signatures when needed. Do not assume a contributor's local checkout layout. - Use
pydantic_ai_harness.code_modeas the exemplar for capability shape, docs, tests, and public exports until another capability becomes a better example. Capabilities live in their own top-level submodulepydantic_ai_harness/<name>/(module name = capability name; one module per capability or strategy) and are not re-exported from the root__init__.py, so each keeps its own optional dependencies. Theexperimentaltier is retired; ACP is the sole remaining experimental capability (seeagent_docs/capability-authoring.md, "Capability Submodules And Exports").
Capabilities API reference
When implementing a new capability, reference these docs:
- https://pydantic.dev/docs/ai/core-concepts/capabilities/ -- main capabilities documentation, usage patterns, built-in capabilities
- https://pydantic.dev/docs/ai/core-concepts/hooks/ -- lifecycle hooks reference, hook ordering, all hook categories
- https://pydantic.dev/docs/ai/guides/extensibility/ -- publishing capabilities as packages, spec serialization
- https://pydantic.dev/docs/ai/tools-toolsets/toolsets/ -- toolset abstraction, building tools for capabilities
- https://pydantic.dev/docs/ai/tools-toolsets/tools-advanced/ -- tool hooks, prepare tools, tool validation
- https://pydantic.dev/docs/ai/core-concepts/agent/ -- agent configuration, instructions, model settings
- Installed
pydantic_ai.capabilitiessource --AbstractCapability, hook signatures, and composition behavior - Installed
pydantic_ai.toolsetssource --AbstractToolset,WrapperToolset, andToolsetTool
Coding standards
- Python 3.10+ (target version for pyright and ruff)
- pyright strict mode -- no
Anytypes, full type annotations - ruff: line-length=120, single quotes, max-complexity=15
- 100% branch coverage required (enforced by
make testcov) - docstrings use single backticks (markdown), not RST double backticks
- no typecasting (
asin TypeScript,cast()in Python) -- use type narrowing instead - prefer the most generic input types possible (reduce dependency chains)
- don't add comments that restate what the code does
Writing style
Applies to docs, READMEs, docstrings, comments, commit messages, and PR text.
- No em-dashes (
—). Use--for an aside or interruption, or split into two sentences. Em-dash-heavy prose reads as machine-generated. - State facts, not sales copy. Cut marketing superlatives and hype ("blazingly fast", "battle-tested", "the single most expensive thing you can do", "footgun") and editorializing adjectives ("sprawling", "noisy", "silently").
- Avoid absolute claims ("never", "always", "guaranteed") unless they are literally true and load-bearing. Name the specific mechanism instead of the slogan.
- Use bold sparingly -- for the lead-in term of a list item, not to emphasize whole sentences.
- Document the why, the constraints, and the non-obvious. Don't restate what the code or signature already says.
- Prefer plain ASCII punctuation over decorative Unicode (arrows, fancy quotes) in prose and comments.
Package management
- Use
uvfor all dependency operations - Never edit
pyproject.tomloruv.lockdirectly -- useuv add,uv remove - External PRs that change dependencies are auto-closed by CI
Commands
make format # ruff format
make lint # ruff check
make typecheck # pyright strict
make test # pytest
make testcov # pytest with branch coverage
Always run make lint && make typecheck && make test before committing.
File structure
The tree is discoverable by listing it; only the conventions that are not are recorded here.
Each released capability is a self-contained package under
pydantic_ai_harness/<capability>/ (naming and exports are covered in the
preflight above), with tests under tests/<capability>/. It ships two
hand-maintained docs that must stay in sync: the README.md next to the code
(GitHub/PyPI) and the docs/<capability>.md page (the docs site at
pydantic.dev/docs/ai/harness). The docs/ folder is flat -- there are no
capabilities/ or experimental/ subdirectories. A user-facing change updates
both; agent_docs/review-checklist.md "Docs" and the docs-parity-reviewer
subagent enforce the parity before merge.
Do not add placeholder template files for new capabilities. Start from the
existing CodeMode package shape, then delete what the new capability does not
need.
Testing patterns
- Use
pydantic_ai.models.TestModelfor all tests (no real API calls) ALLOW_MODEL_REQUESTS = Falseis set globally inconftest.py- Tests use
pytest-anyiofor async support - Each capability test class follows:
TestCapabilityNamewith methodstest_<scenario> - Prefer tests through
Agent(..., capabilities=[...])when that is the public behavior. Use directToolset/RunContexttests for lower-level lifecycle, schema, retry, or wrapper behavior that is hard to isolate throughAgent. - Don't import private (
_-prefixed) helpers into tests. Exercise them through the capability's public surface so tests survive internal refactors: drive the behavior throughAgent(..., capabilities=[...]), or import the public class re-exported from the capability package's__init__.py(e.g.from pydantic_ai_harness.filesystem import FileSystemToolset, notfrom pydantic_ai_harness.filesystem._toolset import _content_hash). When a branch is only reachable by calling a private helper directly, mark it# pragma: no coverrather than reaching into the helper from a test.
Contributing rules for AICAs
- Never change
pyproject.tomloruv.lock-- if a dependency is needed, open an issue - Always link sources for any claims made during research
- Run
make lint && make typecheck && make testbefore every commit - Commit messages should summarize the "why", not the "what"
- All GitHub comments must start with "Claude here: "