Skip to content

Workflows Catalog

Workflows are step-by-step procedures that agents follow when performing multi-step activities. Unlike skills (reference knowledge), workflows define a sequence of actions to execute from start to finish.

NameDescriptionCompatible AgentsSlash Command
api-developmentSpec-first API development — define contract, generate scaffolding, implement, test, documentbackend, fullstack
code-reviewReview agent output against the plan — correctness, standards, securitysecurity, tech-lead/code-review
issue-to-implementationEnd-to-end autonomous workflow — issue intake, analysis, research, planning, agent dispatch, review loop, logging, audit, and closetech-lead/issue-to-implementation
plan-executionExecute an assigned plan step by step — implement, test, reportbackend, devops, frontend, fullstack/plan-execution
planningEnd-to-end planning process — from request to dispatch-ready plantech-lead/planning
pr-reviewReview a pull request — context, scope, correctness, security, performance, standardstech-lead/pr-review
reportingCompletion report format — what was done, tested, issues encounteredbackend, devops, frontend, fullstack, security
security-auditSecurity audit — secrets scan, dependency audit, SAST, config review, access control, infrastructuredevops, security, tech-lead/security-audit
session-loggingEnd-of-session log — what was done, decisions made, open itemsall
test-planDesign a structured test plan for a feature — scope, prioritize, allocate test typestech-lead/test-plan

Seven workflows are curated as slash commands, meaning they can be invoked directly from the Claude Code prompt using /<name> syntax. These are registered as Claude Code skills (via .claude/skills/ files) during workspace generation.

The curated slash command workflows are:

  • /planning — Start end-to-end planning for a new feature
  • /code-review — Review agent output against the plan
  • /pr-review — Review a pull request for correctness and standards
  • /security-audit — Run a security audit on the codebase
  • /issue-to-implementation — Take an issue from intake through to shipped code
  • /test-plan — Design a structured test plan for a feature
  • /plan-execution — Execute an assigned plan step by step
  • planning — Translates requirements into a structured implementation plan with tiers, phases, and verification steps.
  • issue-to-implementation — The full autonomous workflow: intake an issue, analyze it, plan, dispatch to code agents, review, iterate, and close.
  • code-review — Reviews agent output against the plan for correctness, standards, and security compliance.
  • pr-review — Reviews a pull request: scope, correctness, security, performance, test coverage.
  • test-plan — Designs test coverage strategy: scope, priorities, and allocation across test types.
  • plan-execution — Reads an assigned plan and executes it step by step, reporting progress.
  • api-development — Spec-first API workflow: define the contract, generate scaffolding, implement, test, and document.
  • reporting — Generates a structured completion report: what was done, what was tested, issues encountered.
  • session-logging — Records what was done, decisions made, and open items at end of session. Compatible with all agents.
  • security-audit — Full security audit: secrets scan, dependency audit, SAST, config review. Available to tech-lead, security, and devops agents.
Agent TypeDefault Workflows
Tech Leadissue-to-implementation, planning, code-review, session-logging
Backendplan-execution, reporting, session-logging
Frontendplan-execution, reporting, session-logging
Full-Stackplan-execution, reporting, session-logging
DevOpsplan-execution, reporting, session-logging, security-audit
Securitycode-review, reporting, session-logging, security-audit