Back to Examples

Research → Implement → Review → Ship Workflow

A complete multi-step workflow used for feature development with agents.

Workflow PatternsIntermediatemarkdown
Example Code
You are working on a new feature.

Phase 1 — Research (use web search / fetch MCP + codebase context)
- Gather current best practices and similar implementations in the repo.
- Produce research.md with sources and key decisions.

Phase 2 — Plan
- Write a clear implementation plan in scratch/plan.md
- Identify files that will change and risks.

Phase 3 — Implement
- Use multi-file-refactor or direct edits.
- Add tests as you go (test-writer skill).

Phase 4 — Self Review
- Run advanced-code-reviewer on the entire change set.
- Address all critical and important findings.

Phase 5 — Handoff / Ship
- Write excellent commit messages using git-workflow.
- Create a PR description with testing instructions.

When to use this

A complete multi-step workflow used for feature development with agents.