implementer
01Agent
Use when an agent-harness run needs to execute exactly one step from a PLAN.md. Examples.
Agent
Use when an agent-harness run needs to execute exactly one step from a PLAN.md. Examples.
Agent
Use when the agent-harness needs to reflect on recent runs and propose (or apply) at most one improvement. Examples.
Agent
Use when a PLAN.md has been drafted and needs a skeptical gap-finding pass before implementation begins. Examples.
Agent
Use when an agent-harness run needs to turn a TASK.md brief into a step-by-step PLAN.md. Examples.
Agent
Invoke the hardcore-code-reviewer skill on a worktree and return the verbatim report. Wraps the skill so the orchestrator can dispatch it via Task tool (clean return) instead of Skill tool (which stalls after long outputs).
Agent
Use after the implementer finishes a single step to judge that step's diff. Examples.
Agent
Reviews frontend code changes for accessibility violations including missing ARIA attributes, keyboard navigation gaps, screen reader issues, color contrast problems, and WCAG compliance failures. Spawned by hardcore-code-reviewer skill.
Agent
Reviews code changes for API design issues including breaking contract changes, inconsistent endpoint patterns, missing validation, incorrect status codes, versioning problems, and backwards compatibility risks. Spawned by hardcore-code-reviewer skill.
Agent
Reviews code changes for pattern violations, broken contracts, inconsistencies with existing codebase conventions, and architectural regressions. Spawned by hardcore-code-reviewer skill.
Agent
Reviews code changes for logic errors, edge cases, null handling, race conditions, incorrect assumptions, and correctness bugs. Spawned by hardcore-code-reviewer skill.
Agent
Reviews code changes for unnecessary complexity, duplicated logic, premature abstractions, overly clever code, and maintainability issues. Spawned by hardcore-code-reviewer skill.
Agent
Reviews code changes for database schema safety, migration rollback risks, data integrity issues, backwards-incompatible schema changes, and unsafe data transformations. Spawned by hardcore-code-reviewer skill.
Agent
Reviews code changes for prose-vs-implementation drift in non-executable artifacts: documentation files (knowledge/, docs/, ADRs, PLAN, RUNBOOK, lessons-learned, READMEs), JSDoc/TSDoc/docstrings, multi-line code comments, PR description claims, and test-file header comments. Catches stale, inaccurate, or contradictory…
Agent
Reviews code changes for missing metrics, tracing, structured logging, alerting gaps, and unobservable code paths that make production incidents hard to detect and diagnose. Spawned by hardcore-code-reviewer skill.
Agent
Reviews code changes for performance regressions including N+1 queries, unnecessary allocations, blocking operations, missing indexes, and inefficient algorithms. Spawned by hardcore-code-reviewer skill.
Agent
Reviews code changes for swallowed errors, bad fallbacks, misleading success paths, empty catch blocks, and error handling that hides problems. Spawned by hardcore-code-reviewer skill.
Agent
Reviews code changes for missing test coverage, broken test assumptions, untested edge cases, and test quality issues. Spawned by hardcore-code-reviewer skill.
Agent
Reviews code changes for type safety issues including unsafe type assertions, any usage, missing generic constraints, incorrect type narrowing, and type-related regressions in TypeScript or typed language code. Spawned by hardcore-code-reviewer skill.
Agent
Audits codebase for API design issues: inconsistent endpoint naming, missing pagination, versioning gaps, inconsistent error responses, and missing validation schemas. Spawned by tech-debt-audit command.
Agent
Audits codebase for code smells: long functions, high complexity, deep nesting, duplication, dead code, magic values, inconsistent naming, and god files. Spawned by tech-debt-audit command.
Agent
Audits codebase for dependency health issues: outdated packages, known CVEs, unused dependencies, unmaintained packages, duplicate versions, and license risks. Spawned by tech-debt-audit command.
Agent
Audits codebase for documentation gaps: missing API docs, stale READMEs, missing JSDoc on public APIs, missing ADRs, and outdated examples. Spawned by tech-debt-audit command.
Agent
Audits codebase for resilience issues: empty catch blocks, swallowed errors, missing error handling on async operations, inconsistent error formats, and missing retry/circuit-breaker patterns. Spawned by tech-debt-audit command.
Agent
Audits codebase for performance issues: N+1 queries, missing indexes, unbounded queries, sync bottlenecks, missing caching, and memory leak patterns. Spawned by tech-debt-audit command.