mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-03-30 13:43:26 +08:00
* Initial plan * docs: document core skill scope --------- Co-authored-by: openai-code-agent[bot] <242516109+Codex@users.noreply.github.com>
1.2 KiB
1.2 KiB
Development Workflow
This file extends common/git-workflow.md with the full feature development process that happens before git operations.
The Feature Implementation Workflow describes the development pipeline: planning, TDD, code review, and then committing to git.
Feature Implementation Workflow
-
Research & Reuse
- Run the search-first skill or researcher agent to scan the existing codebase and GitHub open-source repos for implementations/templates before planning work.
- Prefer adopting or porting a proven approach over writing net-new code when it meets the requirement.
-
Plan First
- Use planner agent to create implementation plan
- Identify dependencies and risks
- Break down into phases
-
TDD Approach
- Use tdd-guide agent
- Write tests first (RED)
- Implement to pass tests (GREEN)
- Refactor (IMPROVE)
- Verify 80%+ coverage
-
Code Review
- Use code-reviewer agent immediately after writing code
- Address CRITICAL and HIGH issues
- Fix MEDIUM issues when possible
-
Commit & Push
- Detailed commit messages
- Follow conventional commits format
- See git-workflow.md for commit message format and PR process