From 946f2ca18c08aa14a254d2c22d7e8ae8ca7a61fe Mon Sep 17 00:00:00 2001 From: Pangerkumzuk Longkumer <73515951+pangerlkr@users.noreply.github.com> Date: Tue, 24 Feb 2026 13:41:19 +0530 Subject: [PATCH 1/2] refactor(rules): split Feature Implementation Workflow from git-workflow.md (refs #235) Removed the Feature Implementation Workflow section from the Git Workflow document. --- rules/common/git-workflow.md | 25 ++----------------------- 1 file changed, 2 insertions(+), 23 deletions(-) diff --git a/rules/common/git-workflow.md b/rules/common/git-workflow.md index a32d0bc3..d57d9e28 100644 --- a/rules/common/git-workflow.md +++ b/rules/common/git-workflow.md @@ -1,7 +1,6 @@ # Git Workflow ## Commit Message Format - ``` : @@ -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). From 253aecbebd1cb44011f306dcb66a16db28985a88 Mon Sep 17 00:00:00 2001 From: Pangerkumzuk Longkumer <73515951+pangerlkr@users.noreply.github.com> Date: Tue, 24 Feb 2026 13:42:08 +0530 Subject: [PATCH 2/2] feat(rules): add development-workflow.md with Feature Implementation Workflow (refs #235) This document outlines the full feature development process, including planning, TDD, code review, and committing to git. --- rules/common/development-workflow.md | 29 ++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 rules/common/development-workflow.md diff --git a/rules/common/development-workflow.md b/rules/common/development-workflow.md new file mode 100644 index 00000000..dd4aa321 --- /dev/null +++ b/rules/common/development-workflow.md @@ -0,0 +1,29 @@ +# Development Workflow + +> This file extends [common/git-workflow.md](./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 + +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 + - See [git-workflow.md](./git-workflow.md) for commit message format and PR process