refactor(rules): split Feature Implementation Workflow from git-workflow.md (refs #235)

Removed the Feature Implementation Workflow section from the Git Workflow document.
This commit is contained in:
Pangerkumzuk Longkumer
2026-02-24 13:41:19 +05:30
committed by GitHub
parent 6f94c2e28f
commit 946f2ca18c

View File

@@ -1,7 +1,6 @@
# Git Workflow
## Commit Message Format
```
<type>: <description>
@@ -21,25 +20,5 @@ When creating PRs:
4. Include test plan with TODOs
5. Push with `-u` flag if new branch
## Feature Implementation Workflow
1. **Plan First**
- Use **planner** agent to create implementation plan
- Identify dependencies and risks
- Break down into phases
2. **TDD Approach**
- Use **tdd-guide** agent
- Write tests first (RED)
- Implement to pass tests (GREEN)
- Refactor (IMPROVE)
- Verify 80%+ coverage
3. **Code Review**
- Use **code-reviewer** agent immediately after writing code
- Address CRITICAL and HIGH issues
- Fix MEDIUM issues when possible
4. **Commit & Push**
- Detailed commit messages
- Follow conventional commits format
> For the full development process (planning, TDD, code review) before git operations,
> see [development-workflow.md](./development-workflow.md).