---
title: "Development Workflow"
description: "> This rule extends the git workflow rule with the full feature development process that happens before git operations."
type: skill
canonical_url: https://claudary.paisolsolutions.com/skills/common-development-workflow
source: "Claudary"
difficulty: intermediate
author: "Claude Code Knowledge Pack"
date: 2026-07-10T11:18:31.733Z
license: CC-BY-4.0
attribution: "Development Workflow — Claudary (https://claudary.paisolsolutions.com/skills/common-development-workflow)"
---

# Development Workflow
> This rule extends the git workflow rule with the full feature development process that happens before git operations.

## Overview

---
description: "Development workflow: plan, TDD, review, commit pipeline"
alwaysApply: true
---
# Development Workflow

> This rule extends the git workflow rule 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 the git workflow rule for commit message format and PR process

---

Source: [Claudary](https://claudary.paisolsolutions.com/skills/common-development-workflow) · https://claudary.paisolsolutions.com
