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.

51Roles
51Matching
68In Use
Sort
Category

Implementer

implementer
4
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
4
Quality

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

Agent Mode Worker

agent-mode-worker
3
Implementation

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

Tester

tester
3
Testing

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

Cascade

cascade
2
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
2
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
2
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
2
Data

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

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.

Planner

planner
2
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 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.

A11y Reviewer

a11y-reviewer
1
Quality

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

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.

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.

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 Reviewer

chart-reviewer
1
Quality

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

Ci Pipeline Author

ci-pipeline-author
1
Docs

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

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.

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.

Dataset Builder

dataset-builder
1
Data

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

Db Migrator

db-migrator
1
Implementation

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

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
Quality

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

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.

Doc Author

doc-author
1
Docs

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

Dockerfile Author

dockerfile-author
1
Docs

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

Editor

editor
1
Implementation

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

Endpoint Implementer

endpoint-implementer
1
Implementation

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

Eval Reviewer

eval-reviewer
1
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
1
Security

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

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.

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
Implementation

A judge prompt tuner 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.

Plan Act Worker

plan-act-worker
1
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.

Used in 1 build

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.

Policy Reviewer

policy-reviewer
1
Quality

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

Reader

reader
1
Implementation

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

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
Implementation

A regression reporter 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.

Schema Validator

schema-validator
1
Testing

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

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

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

Security Reviewer

security-reviewer
1
Security

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

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.