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 skills/itechmeat/llm-code/pydantic-ainpx skills add itechmeat/llm-code --skill pydantic-aigit clone --depth 1 https://github.com/itechmeat/llm-codeWhat 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.00080 | $0.03878 |
| Opus 5 | $0.00040 | $0.01939 |
| Sonnet 5 | $0.00016 | $0.00776 |
| Haiku 4.5 | $0.00008 | $0.00388 |
Grade A, and why
pydantic-ai 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 — 303 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Pydantic AI
Python agent framework for building production-grade GenAI applications with the "FastAPI feeling".
Quick Navigation
| Topic | Reference |
|---|---|
| Agents | agents.md |
| Capabilities | agents.md |
| Tools | tools.md |
| Models | models.md |
| Embeddings | embeddings.md |
| Evals | evals.md |
| Integrations | integrations.md |
| Graphs | graphs.md |
| UI Streams | ui.md |
| Installation | installation.md |
When to Use
- Building AI agents with structured output
- Need type-safe, IDE-friendly agent development
- Require dependency injection for tools
- Multi-model support (OpenAI, Anthropic, Gemini, etc.)
- Production observability with Logfire
- Complex workflows with graphs
Installation
See references/installation.md for full/slim install options and optional dependency groups. Requires Python 3.10+.
Release Highlights (2.13.0 -> 2.22.0)
- Durability capabilities replace wrapper agents:
TemporalDurability,DBOSDurability, andPrefectDurability(2.14.0) attach to a regularAgentviacapabilities=[...], replacing the deprecatedTemporalAgent/DBOSAgent/PrefectAgentwrapper classes (removed in v3). Existing wrapper-based workflows keep replaying correctly after switching. Seeintegrations.mdfor the updated Temporal/DBOS/Prefect examples. - New models/providers: Claude Opus 5 (
2.20.0),gemini-3.6-flash/gemini-3.5-flash-lite(2.16.0), Mistralreasoning_effort(2.14.0) andmistral_prompt_cache_key(2.16.0), OpenAI explicit prompt caching forgpt-5.6(2.15.0),BedrockMantleProvider(2.18.0), and theAdvisorToolbuiltin tool for Anthropic/OpenRouter (2.18.0). - Usage & limits:
cache_hit_ratioonRequestUsage/RunUsage(2.13.0),ToolFailedfor model-visible failures that don't consume a retry (2.16.0), optionalrun_id=on runs (2.16.0), tool-retry budget overrides atrun/iter/overridetime (2.15.0), andper_request_input_tokens_limitonUsageLimits(2.21.0). - Error handling & instrumentation:
ModelHTTPErrornow carriesheadersand a parsedretry_afterfrom every provider SDK (2.19.0);RaiseContentFilterErrorcapability andinclude_model_request_parametersinstrumentation setting (2.13.0); per-message OTel serialization is cached to avoidO(n^2)cost (2.17.0). - Dependencies: the
fastmcpoptional group now constrainsfastmcp<4(2.19.0).
What ships with it
9 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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 · 303 lines · 80 tokens per session scan A 31394a21933f
pydantic-ai is a skill published in the GitHub repository itechmeat/llm-code (22 stars, last pushed 1mo ago), licensed MIT. It adds 80 tokens to every session and 3,878 once invoked, about $0.0004 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 skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
brainstorming
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
chat-pet-sprite-creation
Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…
agent-host-chat-contributions
Build and review cross-cutting agent-host chat behavior through lifecycle contributions. Use when adding turn lifecycle side effects, prompt or context injection, restored-history transformation, protocol-action observation, or when reviewing changes that add code to AgentSideEffects or AgentService.
auto-perf-optimize
Run agent-driven VS Code performance or memory investigations. Use when asked to launch Code OSS, automate a VS Code scenario, run the Chat memory smoke runner, capture renderer heap snapshots, take workflow screenshots, compare run summaries, or drive a repeatable scenario before heap-snapshot analysis.