pydantic-ai: Skill for Claude Code

.agents/skills/poweruser-feature-audit/SKILL.md

poweruser-feature-audit is a skill for Claude Code from pydantic/pydantic-ai. It costs 100 tokens per session (2,461 once invoked), scanned A, original, MIT.

An independent review of a large new feature based first on external documentation and real-world user needs. A pull request is a proposed code change submitted for review.

In plain words
What is it for?
It researches the feature's domain, designs an ideal test suite, compares it with the pull request, and reports evidence-backed missing cases.
Why use it?
It avoids judging an implementation only by its own assumptions and reveals gaps that demanding production users may encounter.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths; mentions subagents; names the AskUserQuestion tool.

This is pydantic/pydantic-ai's own configuration. It tells Claude Code how to work on pydantic-ai itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything pydantic-ai configures →

About the project

Pydantic AI is a typed Python SDK for building AI agents that can use different language models and interfaces, including voice, image generation, and embeddings. Developers use it for applications ranging from structured data extraction to long-running multi-agent work. The catalogue entries provide workflows and configuration for its coding-agent and harness features.

pydantic/pydantic-ai · 19,845 stars · on GitHub · pydantic.dev

Reuse

Borrowing it

Nothing to install: this file belongs to pydantic/pydantic-ai. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/pydantic/pydantic-ai/main/.agents/skills/poweruser-feature-audit/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/pydantic/pydantic-ai

Made for: Claude Code.

Wrote 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.

agentmods badge for poweruser-feature-audit

README.md
[![agentmods](https://agentmods.dev/badge/skills/pydantic/pydantic-ai/poweruser-feature-audit/github.svg)](https://agentmods.dev/skills/pydantic/pydantic-ai/poweruser-feature-audit)
Your own site
<a href="https://agentmods.dev/skills/pydantic/pydantic-ai/poweruser-feature-audit"><img src="https://agentmods.dev/badge/skills/pydantic/pydantic-ai/poweruser-feature-audit/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for poweruser-feature-audit

Your own site · 80×15
<a href="https://agentmods.dev/skills/pydantic/pydantic-ai/poweruser-feature-audit"><img src="https://agentmods.dev/badge/skills/pydantic/pydantic-ai/poweruser-feature-audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 100 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,461 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00100 $0.02461
Opus 5 $0.00050 $0.01230
Sonnet 5 $0.00020 $0.00492
Haiku 4.5 $0.00010 $0.00246

Measured 11d ago against content hash c8022b205a94, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

poweruser-feature-audit 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 11d 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.

.agents/skills/poweruser-feature-audit/SKILL.md · 130 lines

How it starts

The opening of the file, as written. The whole thing — 130 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Power-User Feature Audit

Audit a large new-feature PR the way a demanding production user would encounter the feature: by first learning what the underlying APIs, protocols, and real-world integrators require, and only then checking whether the implementation lives up to that. The output is a set of review items for the PR author, each backed by evidence and precedent.

The core discipline is ordering. If you read the implementation first, it anchors your expectations and you end up reviewing the code against itself. So the knowledge base is built entirely from external sources, the ideal test suite is designed from that knowledge base, and only then is the PR opened and compared against it. Gaps between the ideal and the actual are the findings.

When To Use

  • A big feature PR lands (realtime/voice APIs, image generation, a new provider protocol, a new subsystem) and you want an independent assessment, not a line-by-line review.
  • The feature wraps an external API or protocol whose semantics, edge cases, and operational pitfalls are documented outside this repo.
  • You want to know whether the implementation would satisfy a power user pushing it hard in production, and where technical users would need trade-off flexibility.

Not for general code review of a diff (use /review-branch if available), and not for completing a narrow fix (use complete-partial-pr). This skill deliberately ignores code style, naming, and diff mechanics — its lens is behavioral completeness and operational robustness.

Operating Principles

  1. Bias ordering is a hard gate. No reading of the PR diff, the implementation, or its tests until the ideal test-suite design is written (phase 4). Only the scoping subagent reads the PR before that, and it returns scope facts, never approach.
  2. Every phase persists its artifacts under local-notes/<feature>-audit/. Each phase must be independently valuable and resumable: a single session often completes only scoping + research, and a later session (or a different agent) picks up from the files.
  3. Sources or it didn't happen. Every research claim carries a specific source link. Findings without sources cannot become review items.
  4. Independently verify before anything is author-facing. The driving agent re-verifies every load-bearing subagent claim against the PR's current HEAD itself. Subagents propose; the driver confirms.
  5. Nothing posts without the user. The skill ends at drafted review items. Posting is a separate, human-gated step, usually in a later session.
  6. Delegate token-heavy writing. Research documents, gap tables, and comment drafts are written by subagents; the driver writes the prompts and specs, reads the results, and synthesizes.

Read the full file on GitHub · 130 lines

Changes

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.

  1. 11d ago First seen · 130 lines · 100 tokens per session scan A c8022b205a94

Subscribe to this mod's changes

poweruser-feature-audit is a skill published in the GitHub repository pydantic/pydantic-ai (19,845 stars, last pushed today), licensed MIT. It adds 100 tokens to every session and 2,461 once invoked, about $0.0005 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.

Related

Other skills, from other repositories

review-prs

Review a GitHub pull request in the googleapis/mcp-toolbox repo against the team's reviewer checklist: PR title/description conventions, linked issue, logic errors and unhandled edge cases, breaking changes, test coverage, docs updates, security (input handling), and new dependencies. Use whenever a maintainer asks…

googleapis/mcp-toolbox · 162 tokens

test-generator

Generate pytest test cases for Python functions and classes.

vstorm-co/pydantic-deepagents · 12 tokens

qa-review

QA review for code changes — test coverage analysis, edge case identification, test plan generation, regression detection, test health tracking over time.

suyoumo/ClawProBench · 30 tokens

fable-judge

Adversarial verification of finished work. Treats any 'done' claim as a set of claims to verify by re-running everything yourself. Use when someone reports work complete and you must gate it: load this before trusting a completion report. Subcommands: suite runs a trap suite against any skill/model.

ardhaecosystem/fable-method · 69 tokens

Pair Programming

AI-assisted pair programming with multiple modes (driver$navigator$switch), real-time verification, quality monitoring, and comprehensive testing. Supports TDD, debugging, refactoring, and learning sessions. Features automatic role switching, continuous code review, security scanning, and performance optimization with…

Soulcynics404/AgentForge · 61 tokens

python-testing

Python testing best practices using pytest including fixtures, parametrization, mocking, coverage analysis, async testing, and test organization. Use when writing or improving Python tests.

affaan-m/ECC · 35 tokens