Skip to content

Commit 4ea2297

Browse files
authored
Merge branch 'main' into feat/cleanup-command
2 parents 11c151e + c1034f1 commit 4ea2297

2 files changed

Lines changed: 19 additions & 5 deletions

File tree

docs/quickstart.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,9 @@ Then, use the `/speckit.implement` slash command to execute the plan.
8181
/speckit.implement
8282
```
8383

84+
> [!TIP]
85+
> **Phased Implementation**: For complex projects, implement in phases to avoid overwhelming the agent's context. Start with core functionality, validate it works, then add features incrementally.
86+
8487
## Detailed Example: Building Taskify
8588

8689
Here's a complete example of building a team productivity platform:
@@ -135,7 +138,15 @@ Be specific about your tech stack and technical requirements:
135138
/speckit.plan We are going to generate this using .NET Aspire, using Postgres as the database. The frontend should use Blazor server with drag-and-drop task boards, real-time updates. There should be a REST API created with a projects API, tasks API, and a notifications API.
136139
```
137140
138-
### Step 6: Validate and Implement
141+
### Step 6: Define Tasks
142+
143+
Generate an actionable task list using the `/speckit.tasks` command:
144+
145+
```bash
146+
/speckit.tasks
147+
```
148+
149+
### Step 7: Validate and Implement
139150
140151
Have your AI agent audit the implementation plan using `/speckit.analyze`:
141152
@@ -149,6 +160,9 @@ Finally, implement the solution:
149160
/speckit.implement
150161
```
151162
163+
> [!TIP]
164+
> **Phased Implementation**: For large projects like Taskify, consider implementing in phases (e.g., Phase 1: Basic project/task structure, Phase 2: Kanban functionality, Phase 3: Comments and assignments). This prevents context saturation and allows for validation at each stage.
165+
152166
## Key Principles
153167
154168
- **Be explicit** about what you're building and why

extensions/catalog.community.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
"id": "v-model",
3535
"description": "Enforces V-Model paired generation of development specs and test specs with full traceability.",
3636
"author": "leocamello",
37-
"version": "0.2.0",
38-
"download_url": "https://github.com/leocamello/spec-kit-v-model/archive/refs/tags/v0.2.0.zip",
37+
"version": "0.3.0",
38+
"download_url": "https://github.com/leocamello/spec-kit-v-model/archive/refs/tags/v0.3.0.zip",
3939
"repository": "https://github.com/leocamello/spec-kit-v-model",
4040
"homepage": "https://github.com/leocamello/spec-kit-v-model",
4141
"documentation": "https://github.com/leocamello/spec-kit-v-model/blob/main/README.md",
@@ -45,15 +45,15 @@
4545
"speckit_version": ">=0.1.0"
4646
},
4747
"provides": {
48-
"commands": 5,
48+
"commands": 7,
4949
"hooks": 1
5050
},
5151
"tags": ["v-model", "traceability", "testing", "compliance", "safety-critical"],
5252
"verified": false,
5353
"downloads": 0,
5454
"stars": 0,
5555
"created_at": "2026-02-20T00:00:00Z",
56-
"updated_at": "2026-02-20T00:00:00Z"
56+
"updated_at": "2026-02-21T00:00:00Z"
5757
}
5858
}
5959
}

0 commit comments

Comments
 (0)