# Feature Workflow

> End-to-end feature development pipeline: plan → implement → build tests → post checks → PR → summary. Invoked by /new-feature and /continue-feature. this skill should not be invoked directly but rether by the other skills.

- Skill: `yonichechik/feature-workflow` (Agent Skill)
- Install (CLI): `npx skillmds add yonichechik/feature-workflow`
- Raw SKILL.md: https://api.skillmd.com/api/skills/yonichechik/feature-workflow/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- Author: YoniChechik (https://skillmd.com/u/yonichechik)
- Updated: 2026-09-10
- Page: https://skillmd.com/skills/yonichechik/feature-workflow

---


# Feature Development Workflow

The workflow for developing a feature end to end — planning, implementation, testing, and post-implementation tasks.

- Each time the user asks to plan, run all stages afterwards.
- Each time the user requests a code change/debug, run all stages after implementation.

## Process

### Step 1: Plan
Run `/plan $FEATURE_DESCRIPTION` skill.

### Step 2: Implement
- Use a subagent to write code (opus high effort)
- If problems occur, use `/debug` skill to fix them
- After each significant change, commit and push (main agent does this directly)

### Step 3: Build Tests
Run `/build-tests` skill for test planning and building.

### Step 4: Post
Run `/post` skill for quality checks, code review, test review, and lint/format.

### Step 5: PR Creation
Run `/pr-create` skill to create a pull request. This also launches the CI watcher in the background automatically.

### Step 6: Summary
Report a summary of what the feature is, how we implemented it, and what happened at all post-implementation steps.

