-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevelopment-workflow.mdc
More file actions
28 lines (22 loc) · 941 Bytes
/
development-workflow.mdc
File metadata and controls
28 lines (22 loc) · 941 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
description: Guides discovery, implementation, verification, and finalization phases. Use when starting a feature, fixing a bug, or when the user asks for development process.
globs: "**/*"
---
# Development Workflow
## Pre-Flight
Verify: 1) Objective clear, 2) Constraints identified, 3) System boundaries defined, 4) Assumptions listed, 5) Failure mode considered. If unclear, ask.
## Phase 1: Discovery & Planning
- Explore existing project structure first
- Plan: files to modify, strategy, verification plan
## Phase 2: Implementation
1. Write code
2. Create and run tests - do not proceed until tests pass
## Phase 3: Code Review
1. Review for SRP, performance, security
2. Apply changes immediately
3. Max 3 iterations. If blocked: "**BLOCKED:** [Reason]"
## Phase 4: Finalize
1. Present files and proposed commit message
2. Wait for explicit approval
3. Commit with conventional format
4. Push only if explicitly requested