shapeup-sdlc 3.0.1 → 3.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/plugin.json +1 -1
- package/package.json +1 -1
- package/skills/shapeup/resources/breadboarding.md +36 -0
- package/skills/shapeup/resources/framing-doc.md +1 -1
- package/skills/shapeup/resources/kickoff-doc.md +1 -1
- package/skills/shapeup/resources/shaping.md +1 -1
- package/skills/shapeup/resources/spike.md +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shapeup-sdlc-plugin",
|
|
3
3
|
"displayName": "ShapeUp SDLC Plugin",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.2",
|
|
5
5
|
"description": "Shape Up SDLC harness for Claude Code: shaping, intake, orient, scope-mapping, building (T0-verified, sandboxed, scope-contracted), evaluation and QA skills orchestrated by a tech-lead.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Liberty Nguyen",
|
package/package.json
CHANGED
|
@@ -325,6 +325,42 @@ Slicing groups affordances into **vertical implementation slices** — each demo
|
|
|
325
325
|
|
|
326
326
|
---
|
|
327
327
|
|
|
328
|
+
## Output File: breadboard.md
|
|
329
|
+
|
|
330
|
+
Write `shapeup/[feature-slug]/shaping/breadboard.md`
|
|
331
|
+
|
|
332
|
+
```markdown
|
|
333
|
+
---
|
|
334
|
+
shaping: true
|
|
335
|
+
feature: "[[feature-slug]]"
|
|
336
|
+
status: breadboarded
|
|
337
|
+
---
|
|
338
|
+
|
|
339
|
+
# [Feature Name] — Breadboard
|
|
340
|
+
|
|
341
|
+
## Places
|
|
342
|
+
[P1..PN with one-line descriptions]
|
|
343
|
+
|
|
344
|
+
## UI Affordances
|
|
345
|
+
| ID | Place | Description | Wires Out | Returns To |
|
|
346
|
+
|----|-------|--------------|-----------|------------|
|
|
347
|
+
|
|
348
|
+
## Code Affordances
|
|
349
|
+
| ID | Description | Wires Out | Returns To |
|
|
350
|
+
|----|--------------|-----------|------------|
|
|
351
|
+
|
|
352
|
+
## Wiring Diagram
|
|
353
|
+
[optional Mermaid — see Mermaid Visualization above]
|
|
354
|
+
|
|
355
|
+
## Slicing
|
|
356
|
+
| # | Slice | Mechanism | Demo |
|
|
357
|
+
|---|-------|-----------|------|
|
|
358
|
+
```
|
|
359
|
+
|
|
360
|
+
**Note:** This file is the second half of the kicked-off pitch (with `shaping.md`). `/ba-pitch-analyzer` and `/tech-lead` consume it as-is — affordance IDs (U[N], N[N]) are the traceability anchors downstream tasks and commits reference.
|
|
361
|
+
|
|
362
|
+
---
|
|
363
|
+
|
|
328
364
|
## Handoff to High-Fidelity Design
|
|
329
365
|
|
|
330
366
|
Once the breadboard is completed, verified, and sliced, it serves as the wireframe blueprint for the **Product Designer**:
|