@sandrinio/vbounce 1.4.0 → 1.6.0
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/README.md +28 -2
- package/bin/vbounce.mjs +30 -0
- package/brains/AGENTS.md +26 -18
- package/brains/CHANGELOG.md +35 -0
- package/brains/CLAUDE.md +29 -19
- package/brains/GEMINI.md +28 -18
- package/brains/SETUP.md +7 -10
- package/brains/claude-agents/architect.md +37 -6
- package/brains/claude-agents/developer.md +20 -7
- package/brains/claude-agents/devops.md +31 -12
- package/brains/claude-agents/qa.md +31 -8
- package/brains/claude-agents/scribe.md +16 -7
- package/brains/cursor-rules/vbounce-docs.mdc +12 -8
- package/brains/cursor-rules/vbounce-process.mdc +11 -8
- package/brains/cursor-rules/vbounce-rules.mdc +9 -6
- package/package.json +1 -1
- package/scripts/init_gate_config.sh +151 -0
- package/scripts/pre_gate_common.sh +576 -0
- package/scripts/pre_gate_runner.sh +176 -0
- package/scripts/validate_report.mjs +5 -5
- package/scripts/vbounce_index.mjs +2 -2
- package/scripts/verify_framework.mjs +11 -0
- package/skills/agent-team/SKILL.md +112 -68
- package/skills/doc-manager/SKILL.md +58 -44
- package/skills/improve/SKILL.md +205 -0
- package/templates/charter.md +1 -1
- package/templates/delivery_plan.md +28 -181
- package/templates/epic.md +6 -4
- package/templates/risk_registry.md +2 -2
- package/templates/roadmap.md +1 -1
- package/templates/sprint.md +48 -0
- package/templates/sprint_report.md +57 -18
- package/templates/story.md +6 -3
|
@@ -25,6 +25,7 @@ sprint_id: "S-{XX}"
|
|
|
25
25
|
sprint_goal: "{One-sentence North Star}"
|
|
26
26
|
dates: "{MM/DD - MM/DD}"
|
|
27
27
|
status: "Achieved / Partially Achieved / Failed"
|
|
28
|
+
total_tokens_used: {N}
|
|
28
29
|
delivery_ref: "D-{NN}_{release_name}"
|
|
29
30
|
delivery_plan_ref: "product_plans/{delivery}/DELIVERY_PLAN.md"
|
|
30
31
|
---
|
|
@@ -50,12 +51,12 @@ delivery_plan_ref: "product_plans/{delivery}/DELIVERY_PLAN.md"
|
|
|
50
51
|
### Not Completed
|
|
51
52
|
> Stories that were planned but didn't make it (escalated, deferred, or partially done).
|
|
52
53
|
|
|
53
|
-
- {e.g., "STORY-001-03
|
|
54
|
+
- {e.g., "STORY-001-03-email_notifications — Escalated (template integration failed 3x)"}
|
|
54
55
|
|
|
55
56
|
### Product Docs Affected
|
|
56
57
|
> Any product documentation files modified, created, or identified for updates. Handed off to Scribe agent.
|
|
57
58
|
|
|
58
|
-
- {e.g., "
|
|
59
|
+
- {e.g., "vdocs/api_reference.md — Added rate limiting details"}
|
|
59
60
|
|
|
60
61
|
---
|
|
61
62
|
|
|
@@ -63,13 +64,13 @@ delivery_plan_ref: "product_plans/{delivery}/DELIVERY_PLAN.md"
|
|
|
63
64
|
|
|
64
65
|
| Story | Epic | Label | Final State | Bounces (QA) | Bounces (Arch) | Correction Tax |
|
|
65
66
|
|-------|------|-------|-------------|--------------|----------------|----------------|
|
|
66
|
-
| STORY-{ID}
|
|
67
|
+
| STORY-{ID}-{story_name} | EPIC-{ID} | L{N} | Done / Escalated / Parking Lot | {N} | {N} | {X}% |
|
|
67
68
|
|
|
68
69
|
### Story Highlights
|
|
69
|
-
- **
|
|
70
|
+
- **STORY-{ID}-{story_name}**: {1-sentence summary of what was built and notable decisions}
|
|
70
71
|
|
|
71
72
|
### Escalated Stories (if any)
|
|
72
|
-
- **
|
|
73
|
+
- **STORY-{ID}-{story_name}**: Escalated after {N} bounces. Root cause: {why}. Recommendation: {rewrite spec / descope / kill}.
|
|
73
74
|
|
|
74
75
|
---
|
|
75
76
|
|
|
@@ -104,13 +105,13 @@ delivery_plan_ref: "product_plans/{delivery}/DELIVERY_PLAN.md"
|
|
|
104
105
|
|
|
105
106
|
| Story | Tokens | Duration | Agent Sessions | Bounces | Cost |
|
|
106
107
|
|-------|--------|----------|----------------|---------|------|
|
|
107
|
-
| STORY-{ID} | {N} | {Xh Ym} | {N} | {N} | ${X.XX} |
|
|
108
|
+
| STORY-{ID}-{story_name} | {N} | {Xh Ym} | {N} | {N} | ${X.XX} |
|
|
108
109
|
|
|
109
110
|
### Threshold Alerts
|
|
110
111
|
> Flag any metrics that crossed warning or critical thresholds. If none, write "No threshold alerts."
|
|
111
112
|
|
|
112
|
-
- {e.g., "STORY-001-05: Correction Tax 10% (🟡) — root cause: test architecture rework due to ESM timer conflict"}
|
|
113
|
-
- {e.g., "STORY-002-03: 2 QA bounces — spec ambiguity in edge case handling"}
|
|
113
|
+
- {e.g., "STORY-001-05-test_arch: Correction Tax 10% (🟡) — root cause: test architecture rework due to ESM timer conflict"}
|
|
114
|
+
- {e.g., "STORY-002-03-edge_cases: 2 QA bounces — spec ambiguity in edge case handling"}
|
|
114
115
|
|
|
115
116
|
---
|
|
116
117
|
|
|
@@ -120,7 +121,7 @@ delivery_plan_ref: "product_plans/{delivery}/DELIVERY_PLAN.md"
|
|
|
120
121
|
|
|
121
122
|
| Source | Lesson | Approved? |
|
|
122
123
|
|--------|--------|-----------|
|
|
123
|
-
| STORY-{ID} Dev Report | {What happened and proposed rule} | Pending / Yes / No |
|
|
124
|
+
| STORY-{ID}-{story_name} Dev Report | {What happened and proposed rule} | Pending / Yes / No |
|
|
124
125
|
|
|
125
126
|
---
|
|
126
127
|
|
|
@@ -135,17 +136,55 @@ delivery_plan_ref: "product_plans/{delivery}/DELIVERY_PLAN.md"
|
|
|
135
136
|
### What Didn't Go Well
|
|
136
137
|
> Problems encountered, root causes, and impact on the sprint.
|
|
137
138
|
|
|
138
|
-
- {e.g., "STORY-001-03 escalated because the spec was ambiguous — 3 QA bounces wasted"}
|
|
139
|
-
- {e.g., "Merge conflict on STORY-002-01 required a fix story — cost an extra half-day"}
|
|
139
|
+
- {e.g., "STORY-001-03-api_spec escalated because the spec was ambiguous — 3 QA bounces wasted"}
|
|
140
|
+
- {e.g., "Merge conflict on STORY-002-01-database required a fix story — cost an extra half-day"}
|
|
140
141
|
|
|
141
|
-
###
|
|
142
|
-
>
|
|
142
|
+
### Framework Self-Assessment
|
|
143
|
+
> Aggregated from agent Process Feedback sections. Categorized by area of the V-Bounce framework.
|
|
144
|
+
> Severity: **Friction** (slowed work) or **Blocker** (required workaround).
|
|
145
|
+
> These feed the `improve` skill for framework evolution.
|
|
143
146
|
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
147
|
+
#### Templates
|
|
148
|
+
> Template sections that were confusing, incomplete, had unused fields, or were missing critical information.
|
|
149
|
+
|
|
150
|
+
| Finding | Source Agent | Severity | Suggested Fix |
|
|
151
|
+
|---------|-------------|----------|---------------|
|
|
152
|
+
| {e.g., "Story §3 missing 'existing modules to reuse' field"} | Developer | Friction | {Add a reuse checklist to the story template} |
|
|
153
|
+
|
|
154
|
+
#### Agent Handoffs
|
|
155
|
+
> Information that was missing, redundant, or unclear when passed between agents via reports.
|
|
156
|
+
|
|
157
|
+
| Finding | Source Agent | Severity | Suggested Fix |
|
|
158
|
+
|---------|-------------|----------|---------------|
|
|
159
|
+
| {e.g., "Dev report didn't specify test runner — QA had to discover it"} | QA | Friction | {Add 'test_runner' to Dev report YAML frontmatter} |
|
|
160
|
+
|
|
161
|
+
#### RAG Pipeline
|
|
162
|
+
> Context quality issues — irrelevant results, missing critical context, stale embeddings.
|
|
163
|
+
|
|
164
|
+
| Finding | Source Agent | Severity | Suggested Fix |
|
|
165
|
+
|---------|-------------|----------|---------------|
|
|
166
|
+
| {e.g., "Query for 'auth constraints' returned old sprint results"} | Developer | Friction | {Add date-weighted ranking to vbounce_ask.mjs} |
|
|
167
|
+
|
|
168
|
+
#### Skills
|
|
169
|
+
> Skill instructions that were unclear, had gaps, or could be improved for better agent performance.
|
|
170
|
+
|
|
171
|
+
| Finding | Source Agent | Severity | Suggested Fix |
|
|
172
|
+
|---------|-------------|----------|---------------|
|
|
173
|
+
| {e.g., "vibe-code-review Deep Audit missing accessibility dimension"} | Architect | Friction | {Add dimension 7 to deep-audit.md} |
|
|
174
|
+
|
|
175
|
+
#### Process Flow
|
|
176
|
+
> Steps that were unnecessary, wrongly ordered, or missing for this type of work.
|
|
177
|
+
|
|
178
|
+
| Finding | Source Agent | Severity | Suggested Fix |
|
|
179
|
+
|---------|-------------|----------|---------------|
|
|
180
|
+
| {e.g., "Fast Track stories still triggered Architect pass in the checklist"} | Team Lead | Blocker | {Update agent-team SKILL.md Step 4 skip logic} |
|
|
181
|
+
|
|
182
|
+
#### Tooling & Scripts
|
|
183
|
+
> Script failures, validation gaps, or automation opportunities.
|
|
184
|
+
|
|
185
|
+
| Finding | Source Agent | Severity | Suggested Fix |
|
|
186
|
+
|---------|-------------|----------|---------------|
|
|
187
|
+
| {e.g., "validate_report.mjs doesn't check for Process Feedback section"} | Team Lead | Friction | {Add optional section validation} |
|
|
149
188
|
|
|
150
189
|
---
|
|
151
190
|
|
package/templates/story.md
CHANGED
|
@@ -12,8 +12,11 @@ Ambiguity Score:
|
|
|
12
12
|
- 🟡 Medium: Logic clear, files TBD
|
|
13
13
|
- 🟢 Low: Ready for coding
|
|
14
14
|
|
|
15
|
-
Output location: `product_plans/
|
|
16
|
-
|
|
15
|
+
Output location (Draft/Refinement): `product_plans/backlog/EPIC-{NNN}_{epic_name}/STORY-{EpicID}-{StoryID}-{StoryName}.md`
|
|
16
|
+
|
|
17
|
+
Sprint Lifecycle Rule:
|
|
18
|
+
- When a sprint starts, this Story file is MOVED to `product_plans/sprints/sprint-{XX}/`.
|
|
19
|
+
- When the sprint completes, this Story file is MOVED to `product_plans/archive/sprints/sprint-{XX}/`.
|
|
17
20
|
|
|
18
21
|
Document Hierarchy Position: LEVEL 4 (Charter → Roadmap → Epic → **Story**)
|
|
19
22
|
|
|
@@ -39,7 +42,7 @@ Do NOT output these instructions.
|
|
|
39
42
|
</instructions>
|
|
40
43
|
|
|
41
44
|
---
|
|
42
|
-
story_id: "STORY-{EpicID}-{StoryID}"
|
|
45
|
+
story_id: "STORY-{EpicID}-{StoryID}-{StoryName}"
|
|
43
46
|
parent_epic_ref: "EPIC-{ID}"
|
|
44
47
|
status: "Draft / Refinement / Probing/Spiking / Ready to Bounce / Bouncing / QA Passed / Architect Passed / Sprint Review / Done / Escalated / Parking Lot"
|
|
45
48
|
ambiguity: "🔴 High / 🟡 Medium / 🟢 Low"
|