The Subagent Directory

Agents

These are the reusable subagents people wire into their builds: the planners, reviewers, testers and security folks that do one job well and hand the result back to the main loop. Browse what each one does and jump straight to the builds that run it.

78Roles
78Matching
117In Use
Sort
Category

Implementer

implementer
6
Implementation

Takes the plan and turns it into real edits, sticking to existing utilities instead of pulling in new dependencies. It works in small reviewable chunks rather than one giant rewrite.

Reviewer

reviewer
5
Quality

A second pair of eyes that reads the diff and flags real correctness problems before they land. It favors substance over style nitpicks.

Tester

tester
5
Testing

Writes and runs tests for the new code and reports what actually failed, not a summary of everything it tried.

Agent Mode Worker

agent-mode-worker
4
Implementation

Cursor's multi-file agent driver. It coordinates edits across several files in one pass while you stay in the editor.

Cascade

cascade
4
Implementation

Windsurf's narrating agent. It explains its plan, then applies changes in reviewable steps, which makes it easy to follow along.

Eda Explorer

eda-explorer
3
Data

Pokes at the dataset to surface shape, gaps, and oddities before any modeling starts, so you know what you are working with.

Fact Checker

fact-checker
3
Quality

Reads the draft and strips out claims that lack a source, so the published docs only say things you can back up.

Feature Engineer

feature-engineer
3
Data

Builds model features without leaking the test set into training data. It documents what each feature is and where it came from.

Plan Act Worker

plan-act-worker
3
Implementation

Cline's two-phase worker: it drafts a plan, waits for a nod, then acts. Checkpoints let you roll back if a step goes sideways.

Planner

planner
3
Planning

Reads the task and the codebase first, then lays out the steps and the files it expects to touch before anyone writes a line. It keeps the work scoped so the implementer is not guessing.

Schema Validator

schema-validator
3
Testing

Validates data schemas at each stage of a pipeline, so a bad shape gets caught at the boundary instead of three steps later.

A11y Reviewer

a11y-reviewer
2
Quality

Checks each component against WCAG before it merges, so accessibility is part of the build rather than a later cleanup.

Doc Author

doc-author
2
Docs

Writes the docs in plain language and pulls real API signatures so the examples actually match the code.

Eval Reviewer

eval-reviewer
2
Quality

Guards against leakage and inflated metric claims in an ML run, asking for confidence intervals instead of a single lucky number.

Fix Author

fix-author
2
Security

Proposes a patch for each confirmed vulnerability for a human to review, rather than quietly merging a security fix on its own.

Integration Tester

integration-tester
2
Testing

Runs the cross-package and end-to-end checks that catch breakage at the seams, where unit tests usually miss it.

Policy Reviewer

policy-reviewer
2
Quality

Checks infra changes against your rules: no secrets in state, every resource tagged, nothing applied to prod without sign-off.

Schema Designer

schema-designer
2
Data

Thinks about the database shape before any handler gets written, so the data model leads the code instead of trailing it.

Security Reviewer

security-reviewer
2
Security

Reads the change with an attacker's eye, looking for injection, broken auth, and other gaps before the endpoint ships.

Axe Scanner

axe-scanner
1
Implementation

A axe scanner subagent that handles its slice of the build and hands the result back to the main loop.

Background Agent

background-agent
1
Ops

Runs the long jobs off to the side so you can keep iterating in the foreground. It reports back when the heavy lifting is done.

Bench Reviewer

bench-reviewer
1
Quality

Reads benchmark results and flags misleading numbers, like missing warmups or noisy single runs, before you trust a speedup.

Borrow Checker Coach

borrow-checker-coach
1
Implementation

Explains Rust borrow-checker and lifetime errors in plain terms and suggests the idiomatic fix, instead of just restating the compiler message.

Borrow Checker Reviewer

borrow-checker-reviewer
1
Quality

A borrow checker reviewer subagent that handles its slice of the build and hands the result back to the main loop.

Used in 1 build

Bot Builder

bot-builder
1
Implementation

A bot builder subagent that handles its slice of the build and hands the result back to the main loop.

Bughunter Reviewer

bughunter-reviewer
1
Quality

Hunts for correctness bugs in a pull request and skips the bikeshedding. It cites the line and explains why it matters.

Builder

builder
1
Implementation

A lean single worker that just builds the thing, happy path first. Good when you want a demo on screen fast and can sort out the edges later.

Caption Writer

caption-writer
1
Docs

A caption writer subagent that handles its slice of the build and hands the result back to the main loop.

Characterization Tester

characterization-tester
1
Testing

Pins down how legacy code behaves today by writing tests around it first, so a refactor stays provably safe.

Chart Author

chart-author
1
Docs

A chart author subagent that handles its slice of the build and hands the result back to the main loop.

Chart Reviewer

chart-reviewer
1
Quality

Reviews generated charts and rejects misleading axes, cherry-picked ranges, and bad scales before you trust a figure.

Ci Pipeline Author

ci-pipeline-author
1
Ops

Builds the CI pipeline so it builds, runs tests, then deploys only on green, with the deploy gated behind a passing run.

Code Review Agent

code-review-agent
1
Quality

Posts inline review comments on a pull request, pointing at the line and the reason rather than dumping a wall of notes.

Content Script Author

content-script-author
1
Docs

A content script author subagent that handles its slice of the build and hands the result back to the main loop.

Copilot Coding Agent

copilot-coding-agent
1
Implementation

Copilot's coding agent. It picks up an issue and files a pull request that routes through your normal review, so a human still signs off.

Copy Writer

copy-writer
1
Docs

A copy writer subagent that handles its slice of the build and hands the result back to the main loop.

Dataset Builder

dataset-builder
1
Data

Assembles and cleans the evaluation dataset, deduping examples and keeping a held-out split so scores are not gamed by leakage.

Db Migrator

db-migrator
1
Data

Generates a database migration, dry-runs it, and shows the SQL diff for review before anything touches the live schema.

Dependency Mapper

dependency-mapper
1
Data

Maps the package graph in a monorepo and keeps edits inside the right boundary, so a change does not quietly ripple everywhere.

Deploy Reviewer

deploy-reviewer
1
Ops

Checks a deploy before it goes out: migrations are reversible, env vars are set, and there is a rollback path if it goes wrong.

Diff Reviewer

diff-reviewer
1
Quality

Reads the change as a diff and reports any behavior that drifted from the original, which is the safety net during a refactor.

Dockerfile Author

dockerfile-author
1
Ops

Writes a multi-stage Dockerfile with a non-root runtime and a small final image, so the container ships lean and a bit safer.

Editor

editor
1
Docs

Turns the gathered, fact-checked material into a ranked brief with inline source links, ready to read top to bottom.

Endpoint Implementer

endpoint-implementer
1
Implementation

Writes API handlers that validate input at the boundary and call into a service layer, keeping business logic out of the route.

Flake Hunter

flake-hunter
1
Testing

Tracks down flaky end-to-end tests and quarantines them instead of deleting, keeping noise out of the main run.

Gameplay Scripter

gameplay-scripter
1
Implementation

A gameplay scripter subagent that handles its slice of the build and hands the result back to the main loop.

Used in 1 build

Highlight Finder

highlight-finder
1
Implementation

A highlight finder subagent that handles its slice of the build and hands the result back to the main loop.

Incident Responder

incident-responder
1
Ops

Pulls in error context when something breaks and walks through the likely cause. It is the on-call teammate for infra fires.

Judge Prompt Tuner

judge-prompt-tuner
1
Data

Tunes the LLM-as-judge prompt and its rubric, checking the judge's grades against human labels so the eval stays trustworthy.

Manifest Diff Reviewer

manifest-diff-reviewer
1
Quality

A manifest diff reviewer subagent that handles its slice of the build and hands the result back to the main loop.

Manifest Planner

manifest-planner
1
Planning

A manifest planner subagent that handles its slice of the build and hands the result back to the main loop.

Metric Reviewer

metric-reviewer
1
Quality

A metric reviewer subagent that handles its slice of the build and hands the result back to the main loop.

Package Owner

package-owner
1
Ops

Acts as the steward for a single package in a monorepo, enforcing its boundaries and keeping circular dependencies out.

Platform Reviewer

platform-reviewer
1
Quality

Flags where iOS and Android behavior diverge early, so a screen does not look right on one platform and broken on the other.

Pricing Modeler

pricing-modeler
1
Implementation

A pricing modeler subagent that handles its slice of the build and hands the result back to the main loop.

Prompt Tuner

prompt-tuner
1
Implementation

A prompt tuner subagent that handles its slice of the build and hands the result back to the main loop.

Used in 1 build

Prospect Researcher

prospect-researcher
1
Testing

A prospect researcher subagent that handles its slice of the build and hands the result back to the main loop.

Query Author

query-author
1
Docs

A query author subagent that handles its slice of the build and hands the result back to the main loop.

Rag Indexer

rag-indexer
1
Implementation

A rag indexer subagent that handles its slice of the build and hands the result back to the main loop.

Reader

reader
1
Implementation

Opens each candidate link and pulls the full page text, so later steps judge the actual content instead of a search-result blurb.

Refactorer

refactorer
1
Implementation

Reshapes existing code in tiny behavior-preserving steps. It never mixes a structure change and a behavior change in the same commit.

Regression Reporter

regression-reporter
1
Data

Compares an eval run against the baseline and blocks the pull request when the win rate drops, so quality cannot silently regress.

Regression Verifier

regression-verifier
1
Implementation

A regression verifier subagent that handles its slice of the build and hands the result back to the main loop.

Rollout Planner

rollout-planner
1
Planning

A rollout planner subagent that handles its slice of the build and hands the result back to the main loop.

Sast Scanner

sast-scanner
1
Security

Runs static analysis across the diff and turns raw findings into something actionable instead of a pile of warnings.

Scene Builder

scene-builder
1
Implementation

A scene builder subagent that handles its slice of the build and hands the result back to the main loop.

Used in 1 build

Schema Normalizer

schema-normalizer
1
Data

A schema normalizer subagent that handles its slice of the build and hands the result back to the main loop.

Used in 1 build

Screen Builder

screen-builder
1
Implementation

Builds mobile screens with safe-area handling and platform conventions baked in. It keeps an eye on bundle size as the UI grows.

Searcher

searcher
1
Implementation

Fans out across the web to gather sources on your tracked topics, collecting links and snippets for the rest of the crew to work from.

Selector Finder

selector-finder
1
Implementation

A selector finder subagent that handles its slice of the build and hands the result back to the main loop.

Used in 1 build

Store Reviewer

store-reviewer
1
Quality

A store reviewer subagent that handles its slice of the build and hands the result back to the main loop.

Style Reviewer

style-reviewer
1
Quality

Handles the consistency pass: naming, formatting, and house conventions, so the correctness reviewer can stay focused on logic.

Terraform Planner

terraform-planner
1
Ops

Produces a reviewable plan diff before anything gets applied, so you see the blast radius of an infra change up front.

Test Author

test-author
1
Testing

Writes the tests up front, before the fix, so there is a clear target for what done looks like.

Threat Modeler

threat-modeler
1
Security

Ranks findings by real exploitability and severity, so you fix the issue that can actually hurt you first.

Triage Reporter

triage-reporter
1
Testing

Filters a wall of test output down to the failures that actually need a human, so the signal does not get buried.

Webhook Author

webhook-author
1
Docs

A webhook author subagent that handles its slice of the build and hands the result back to the main loop.

Workflow Builder

workflow-builder
1
Implementation

A workflow builder subagent that handles its slice of the build and hands the result back to the main loop.

Used in 1 build