@sandrinio/vbounce 1.7.0 → 1.9.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 +168 -160
- package/bin/vbounce.mjs +250 -25
- package/brains/AGENTS.md +4 -4
- package/brains/CHANGELOG.md +2 -2
- package/brains/CLAUDE.md +4 -4
- package/brains/GEMINI.md +5 -5
- package/brains/SETUP.md +15 -15
- package/brains/claude-agents/architect.md +1 -1
- package/brains/claude-agents/developer.md +1 -1
- package/brains/claude-agents/devops.md +1 -1
- package/brains/claude-agents/qa.md +2 -1
- package/brains/claude-agents/scribe.md +1 -1
- package/brains/copilot/copilot-instructions.md +3 -3
- package/brains/cursor-rules/vbounce-docs.mdc +2 -2
- package/brains/cursor-rules/vbounce-process.mdc +3 -3
- package/brains/cursor-rules/vbounce-rules.mdc +2 -2
- package/brains/windsurf/.windsurfrules +2 -2
- package/docs/HOTFIX_EDGE_CASES.md +1 -1
- package/package.json +5 -5
- package/scripts/doctor.mjs +3 -3
- package/scripts/hotfix_manager.sh +2 -2
- package/scripts/init_gate_config.sh +1 -1
- package/scripts/pre_gate_common.sh +1 -1
- package/scripts/pre_gate_runner.sh +1 -1
- package/scripts/prep_qa_context.mjs +19 -1
- package/scripts/prep_sprint_context.mjs +24 -1
- package/scripts/suggest_improvements.mjs +1 -1
- package/scripts/validate_bounce_readiness.mjs +27 -0
- package/scripts/validate_report.mjs +1 -1
- package/scripts/vdoc_match.mjs +269 -0
- package/scripts/vdoc_staleness.mjs +199 -0
- package/scripts/verify_framework.mjs +1 -1
- package/skills/agent-team/SKILL.md +18 -11
- package/skills/doc-manager/SKILL.md +5 -5
- package/skills/improve/SKILL.md +2 -2
- package/templates/sprint_report.md +6 -2
package/README.md
CHANGED
|
@@ -1,246 +1,254 @@
|
|
|
1
|
-
#
|
|
1
|
+
# V-Bounce Engine
|
|
2
2
|
|
|
3
|
-
**
|
|
3
|
+
**A structured SDLC framework for AI coding agents.**
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
V-Bounce Engine turns AI assistants — Claude Code, Cursor, Gemini, Copilot, Codex — into disciplined engineering teams. Instead of letting agents code in a vacuum, it enforces a planning-first workflow with automated quality gates, structured handoffs, and a persistent learning loop.
|
|
6
6
|
|
|
7
|
-
>
|
|
7
|
+
> Inspired by the work of Cory Hymel
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
|
11
|
-
##
|
|
11
|
+
## How It Works
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
V-Bounce Engine is built around a **Context Loop** — a closed feedback system that makes agents smarter with each sprint.
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
```
|
|
16
|
+
Plan ──> Build ──> Bounce ──> Document ──> Learn
|
|
17
|
+
│ │ │ │
|
|
18
|
+
│ QA + Arch │ LESSONS.md
|
|
19
|
+
│ gate code Scribe maps │
|
|
20
|
+
│ the codebase │
|
|
21
|
+
└─────────────────────────────────────────────────────┘
|
|
22
|
+
Next sprint reads it all
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
**Plan.** The Team Lead writes requirements using structured templates (Charter, Epic, Story) before any code is written.
|
|
16
26
|
|
|
17
|
-
|
|
27
|
+
**Build.** The Developer agent implements each Story in an isolated git worktree and submits an Implementation Report.
|
|
18
28
|
|
|
19
|
-
|
|
20
|
-
2. **Bounce Reports (`.bounce/`)**: During implementation, the QA and Architect agents do not edit code. They run deep codebase audits and emit structured "Bounce Reports" summarizing anti-patterns and regressions. The Developer must fix the issues and run the loop again until the code passes validation.
|
|
21
|
-
3. **Product Documentation (`vdocs/`)**: The Scribe agent explores the *actual* codebase post-merge and uses our integrated `vdoc` tool to update feature-centric documentation and the semantic `_manifest.json` map.
|
|
29
|
+
**Bounce.** The QA agent validates against acceptance criteria. The Architect agent audits against your architecture rules. If either fails, the work bounces back to the Developer — up to 3 times before escalating to you. Every failure is tagged with a root cause (`missing_tests`, `adr_violation`, `spec_ambiguity`, etc.) for trend analysis.
|
|
22
30
|
|
|
23
|
-
|
|
31
|
+
**Document.** After merge, the Scribe agent maps the actual codebase into semantic product documentation using [vdoc](https://github.com/sandrinio/vdoc) (optional).
|
|
32
|
+
|
|
33
|
+
**Learn.** Sprint mistakes are recorded in `LESSONS.md`. All agents read it before writing future code. The framework also tracks its own performance — bounce rates, correction tax, recurring failure patterns — and suggests improvements to its own templates and skills.
|
|
24
34
|
|
|
25
35
|
---
|
|
26
36
|
|
|
27
|
-
##
|
|
37
|
+
## Quick Start
|
|
28
38
|
|
|
29
|
-
|
|
39
|
+
```bash
|
|
40
|
+
npx @sandrinio/vbounce install claude # Claude Code
|
|
41
|
+
npx @sandrinio/vbounce install cursor # Cursor
|
|
42
|
+
npx @sandrinio/vbounce install gemini # Gemini CLI
|
|
43
|
+
npx @sandrinio/vbounce install codex # OpenAI Codex
|
|
44
|
+
npx @sandrinio/vbounce install vscode # GitHub Copilot
|
|
45
|
+
```
|
|
30
46
|
|
|
31
|
-
|
|
32
|
-
- **`backlog/`**: Where unassigned work lives. Epics and their child Stories are refined here until selected for a sprint.
|
|
33
|
-
- **`sprints/`**: The active execution workspace. A physical `sprint-XX/` boundary is created and Stories are moved in. Only one sprint is "Active" at a time.
|
|
34
|
-
- **`hotfixes/`**: Trivial, emergency tasks that bypass sprint cycles.
|
|
35
|
-
- **`archive/`**: Immutable history. Finished sprint folders and fully completed Epics are permanently moved here.
|
|
47
|
+
Then verify your setup:
|
|
36
48
|
|
|
37
|
-
|
|
49
|
+
```bash
|
|
50
|
+
npx vbounce doctor
|
|
51
|
+
```
|
|
38
52
|
|
|
39
|
-
|
|
53
|
+
### What gets installed
|
|
40
54
|
|
|
41
|
-
|
|
55
|
+
Here's what lands in your repo (example: Claude Code):
|
|
42
56
|
|
|
43
|
-
|
|
44
|
-
-
|
|
45
|
-
|
|
46
|
-
|
|
57
|
+
```
|
|
58
|
+
your-project/
|
|
59
|
+
├── CLAUDE.md # Brain file — teaches the agent the V-Bounce process
|
|
60
|
+
├── .claude/agents/ # Subagent instructions (Claude Code only)
|
|
61
|
+
│ ├── developer.md
|
|
62
|
+
│ ├── qa.md
|
|
63
|
+
│ ├── architect.md
|
|
64
|
+
│ ├── devops.md
|
|
65
|
+
│ └── scribe.md
|
|
66
|
+
├── templates/ # 9 Markdown + YAML frontmatter templates
|
|
67
|
+
│ ├── charter.md
|
|
68
|
+
│ ├── roadmap.md
|
|
69
|
+
│ ├── epic.md
|
|
70
|
+
│ ├── story.md
|
|
71
|
+
│ ├── sprint.md
|
|
72
|
+
│ ├── delivery_plan.md
|
|
73
|
+
│ ├── sprint_report.md
|
|
74
|
+
│ ├── hotfix.md
|
|
75
|
+
│ └── risk_registry.md
|
|
76
|
+
├── skills/ # 7 modular skill files (see Skills below)
|
|
77
|
+
│ ├── agent-team/
|
|
78
|
+
│ ├── doc-manager/
|
|
79
|
+
│ ├── lesson/
|
|
80
|
+
│ ├── vibe-code-review/
|
|
81
|
+
│ ├── write-skill/
|
|
82
|
+
│ ├── improve/
|
|
83
|
+
│ └── react-best-practices/ # Example — customize for your stack
|
|
84
|
+
├── scripts/ # 23 automation scripts (validation, context prep, state)
|
|
85
|
+
└── package.json # 3 deps: js-yaml, marked, commander. Nothing else.
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
Other platforms install the same `templates/`, `skills/`, and `scripts/` — only the brain file differs (`.cursor/rules/`, `GEMINI.md`, `AGENTS.md`, or `.github/copilot-instructions.md`).
|
|
89
|
+
|
|
90
|
+
Everything is plain Markdown and Node.js. No vector DBs, no embedding models, no background services.
|
|
47
91
|
|
|
48
92
|
---
|
|
49
93
|
|
|
50
|
-
##
|
|
94
|
+
## Supported Tools
|
|
51
95
|
|
|
52
|
-
|
|
96
|
+
V-Bounce Engine adapts to each tool's capabilities:
|
|
53
97
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
98
|
+
| Tier | Tool | How it works |
|
|
99
|
+
|------|------|-------------|
|
|
100
|
+
| 1 | Claude Code | Full orchestration — spawns subagents for each role, manages state, runs all CLI commands |
|
|
101
|
+
| 2 | Gemini CLI, Codex | Single-agent mode — follows the bounce loop sequentially, full CLI access |
|
|
102
|
+
| 3 | Cursor | Role-specific context injection via `.cursor/rules/` MDC files |
|
|
103
|
+
| 4 | Copilot, Windsurf | Awareness mode — checklist-driven, reads state, safe CLI operations |
|
|
57
104
|
|
|
58
|
-
|
|
59
|
-
npx @sandrinio/vbounce install cursor
|
|
105
|
+
---
|
|
60
106
|
|
|
61
|
-
|
|
62
|
-
npx @sandrinio/vbounce install gemini
|
|
107
|
+
## The Bounce Loop
|
|
63
108
|
|
|
64
|
-
|
|
65
|
-
npx @sandrinio/vbounce install vscode
|
|
109
|
+
This is the core execution cycle for every Story:
|
|
66
110
|
|
|
67
|
-
|
|
68
|
-
|
|
111
|
+
```
|
|
112
|
+
Developer QA Architect DevOps
|
|
113
|
+
│ │ │ │
|
|
114
|
+
Writes code in worktree │ │ │
|
|
115
|
+
Submits Implementation ──────> │ │ │
|
|
116
|
+
Report Validates against (waits for QA) │
|
|
117
|
+
acceptance criteria │ │
|
|
118
|
+
│ │ │
|
|
119
|
+
PASS ──────────────────────> │ │
|
|
120
|
+
FAIL ──> bounces back Audits against │
|
|
121
|
+
to Developer ADRs + safe zone │
|
|
122
|
+
│ │
|
|
123
|
+
PASS ──────────────────> │
|
|
124
|
+
FAIL ──> bounces back Merges worktree
|
|
125
|
+
to Developer into main branch
|
|
69
126
|
```
|
|
70
127
|
|
|
71
|
-
|
|
72
|
-
- **Agent Instructions:** The "Brain" file (e.g., `CLAUDE.md`, `.cursor/rules/`) that teaches your AI how to follow the V-Bounce process.
|
|
73
|
-
- **Templates:** Markdown templates for your Charter, Roadmap, Epics, Stories, Sprint Plans, and Delivery Plans.
|
|
74
|
-
- **Bundled Scripts:** 16+ automation scripts — validation pipeline, context preparation, state management, sprint lifecycle, and the self-improvement loop.
|
|
75
|
-
- **Lightweight Dependencies:** The installer runs `npm install` for `js-yaml`, `marked`, and `commander` — nothing else. No vector DBs, no embedding models.
|
|
76
|
-
- **vdoc Integration:** The installer offers to install [`@sandrinio/vdoc`](https://github.com/sandrinio/vdoc) for your platform — enabling automatic semantic product documentation generation via the Scribe agent.
|
|
128
|
+
After 3 failed bounces on either gate, the Story escalates to you for intervention.
|
|
77
129
|
|
|
78
|
-
|
|
130
|
+
Each FAIL report includes a `root_cause` tag that feeds into cross-sprint trend analysis via `vbounce trends`.
|
|
79
131
|
|
|
80
132
|
---
|
|
81
133
|
|
|
82
|
-
##
|
|
134
|
+
## Skills
|
|
83
135
|
|
|
84
|
-
|
|
136
|
+
Skills are modular markdown instructions the Team Lead invokes automatically during the SDLC:
|
|
85
137
|
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
vbounce state show # Print current state.json
|
|
96
|
-
vbounce state update STORY-001-01-login "QA Passed" # Update story state
|
|
97
|
-
vbounce state update STORY-001-01-login "Bouncing" --qa-bounce # Increment QA bounce
|
|
98
|
-
|
|
99
|
-
# Context preparation (context budget management)
|
|
100
|
-
vbounce prep sprint S-01 # Generate sprint-context-S-01.md (≤200 lines)
|
|
101
|
-
vbounce prep qa STORY-001-01-login # Generate qa-context-STORY-ID.md (≤300 lines)
|
|
102
|
-
vbounce prep arch STORY-001-01-login # Generate arch-context with truncated diff
|
|
103
|
-
|
|
104
|
-
# Validation gates
|
|
105
|
-
vbounce validate report .bounce/reports/STORY-001-01-login-qa.md
|
|
106
|
-
vbounce validate state # Validate state.json schema
|
|
107
|
-
vbounce validate sprint S-01 # Validate sprint plan structure + cross-refs
|
|
108
|
-
vbounce validate ready STORY-001-01-login # Pre-bounce readiness gate
|
|
109
|
-
|
|
110
|
-
# Self-improvement loop
|
|
111
|
-
vbounce trends # Compute sprint metrics → .bounce/trends.md
|
|
112
|
-
vbounce suggest S-01 # Generate improvement suggestions
|
|
113
|
-
|
|
114
|
-
# Framework health
|
|
115
|
-
vbounce doctor # Check all required files, scripts, templates
|
|
116
|
-
```
|
|
138
|
+
| Skill | Purpose |
|
|
139
|
+
|-------|---------|
|
|
140
|
+
| `agent-team` | Spawns temporary sub-agents (Dev, QA, Architect, DevOps, Scribe) to parallelize work |
|
|
141
|
+
| `doc-manager` | Enforces the document hierarchy for Epics and Stories |
|
|
142
|
+
| `lesson` | Extracts mistakes from sprints into `LESSONS.md` |
|
|
143
|
+
| `vibe-code-review` | Runs Quick Scan or Deep Audit against acceptance criteria and architecture rules |
|
|
144
|
+
| `write-skill` | Allows the Team Lead to author new skills when the team encounters a recurring problem |
|
|
145
|
+
| `improve` | Self-improvement loop — reads agent friction signals across sprints and proposes framework changes (with your approval) |
|
|
146
|
+
| `react-best-practices` | Example tech-stack skill — customize this for your own stack |
|
|
117
147
|
|
|
118
148
|
---
|
|
119
149
|
|
|
120
|
-
##
|
|
150
|
+
## State Management
|
|
121
151
|
|
|
122
|
-
|
|
152
|
+
Sprint state lives in `.bounce/state.json` — a machine-readable snapshot that survives context resets and session interruptions:
|
|
123
153
|
|
|
124
154
|
```json
|
|
125
155
|
{
|
|
126
156
|
"sprint_id": "S-01",
|
|
127
|
-
"delivery_id": "D-01",
|
|
128
157
|
"current_phase": "bouncing",
|
|
129
|
-
"last_action": "QA failed STORY-001-01-login — bounce 1",
|
|
130
158
|
"stories": {
|
|
131
159
|
"STORY-001-01-login": {
|
|
132
160
|
"state": "Bouncing",
|
|
133
161
|
"qa_bounces": 1,
|
|
134
162
|
"arch_bounces": 0,
|
|
135
|
-
"worktree": ".worktrees/STORY-001-01-login"
|
|
136
|
-
"updated_at": "2026-03-12T10:00:00Z"
|
|
163
|
+
"worktree": ".worktrees/STORY-001-01-login"
|
|
137
164
|
}
|
|
138
165
|
}
|
|
139
166
|
}
|
|
140
167
|
```
|
|
141
168
|
|
|
142
|
-
When a
|
|
169
|
+
When a session starts, the Team Lead reads `state.json` to resume exactly where the sprint left off.
|
|
143
170
|
|
|
144
171
|
---
|
|
145
172
|
|
|
146
|
-
##
|
|
173
|
+
## CLI Reference
|
|
147
174
|
|
|
148
|
-
|
|
175
|
+
```bash
|
|
176
|
+
# Sprint lifecycle
|
|
177
|
+
vbounce sprint init S-01 D-01 # Initialize sprint
|
|
178
|
+
vbounce sprint close S-01 # Validate, archive, close
|
|
149
179
|
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
3. **Improvement Suggestions**: `vbounce suggest S-{XX}` reads trends, LESSONS.md, and the improvement log to flag stale lessons, recurring failure patterns, and graduation candidates.
|
|
153
|
-
4. **Improvement Log**: `.bounce/improvement-log.md` tracks every suggestion with Applied/Rejected/Deferred status — so nothing falls through the cracks.
|
|
180
|
+
# Story lifecycle
|
|
181
|
+
vbounce story complete STORY-ID # Mark story done, update state
|
|
154
182
|
|
|
155
|
-
|
|
183
|
+
# State management
|
|
184
|
+
vbounce state show # Print current state
|
|
185
|
+
vbounce state update STORY-ID STATE # Update story state
|
|
156
186
|
|
|
157
|
-
|
|
187
|
+
# Context preparation
|
|
188
|
+
vbounce prep sprint S-01 # Sprint context pack
|
|
189
|
+
vbounce prep qa STORY-ID # QA context pack
|
|
190
|
+
vbounce prep arch STORY-ID # Architect context pack
|
|
158
191
|
|
|
159
|
-
|
|
192
|
+
# Validation
|
|
193
|
+
vbounce validate report <file> # Validate report YAML
|
|
194
|
+
vbounce validate state # Validate state.json schema
|
|
195
|
+
vbounce validate sprint S-01 # Validate sprint plan
|
|
196
|
+
vbounce validate ready STORY-ID # Pre-bounce readiness gate
|
|
160
197
|
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
| **Tier 2** | Gemini CLI, OpenAI Codex | `brains/GEMINI.md`, `brains/codex/` | Single-agent — follows bounce loop, reads state.json, all CLI commands |
|
|
165
|
-
| **Tier 3** | Cursor | `brains/cursor-rules/` | Role-specific context injection via `.cursor/rules/` MDC files |
|
|
166
|
-
| **Tier 4** | GitHub Copilot, Windsurf | `brains/copilot/`, `brains/windsurf/` | Awareness mode — checklist-driven, reads state.json, CLI commands for safe operations |
|
|
198
|
+
# Self-improvement
|
|
199
|
+
vbounce trends # Cross-sprint trend analysis
|
|
200
|
+
vbounce suggest S-01 # Generate improvement suggestions
|
|
167
201
|
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
npx @sandrinio/vbounce install claude # Tier 1
|
|
171
|
-
npx @sandrinio/vbounce install gemini # Tier 2
|
|
172
|
-
npx @sandrinio/vbounce install cursor # Tier 3
|
|
173
|
-
npx @sandrinio/vbounce install vscode # Tier 4
|
|
202
|
+
# Health check
|
|
203
|
+
vbounce doctor # Verify setup
|
|
174
204
|
```
|
|
175
205
|
|
|
176
206
|
---
|
|
177
207
|
|
|
178
|
-
|
|
179
|
-
V-Bounce OS installs a powerful suite of specialized markdown `skills/` directly into your workspace. These act as modular capabilities you can invoke dynamically or that the Team Lead agent will invoke automatically during the SDLC process:
|
|
208
|
+
## Runtime Structure
|
|
180
209
|
|
|
181
|
-
|
|
182
|
-
|-------|------|---------|
|
|
183
|
-
| `agent-team` | Lead | Spawns temporary sub-agents (Dev, QA, DevOps) to parallelize complex tasks without losing context. |
|
|
184
|
-
| `doc-manager` | All | Enforces the strict hierarchy for managing Epic and Story documents *(Charter is optional, used only for new projects or brainstorming)*. |
|
|
185
|
-
| `lesson` | Lead | Extracts mistakes made during Sprints and updates `LESSONS.md` to prevent future regressions. |
|
|
186
|
-
| `react-best-practices` | Developer | A strict set of frontend execution rules the Developer must follow during implementation. <mark>*(Note: This skill serves as a template and must be customized by the human according to the specific tech stack being used.)*</mark> |
|
|
187
|
-
| `vibe-code-review` | QA/Architect | Runs distinct review modes (Quick Scan, Deep Audit) to validate code against Acceptance Criteria and Architecture rules. |
|
|
188
|
-
| `write-skill` | Lead | Allows the Team Lead to autonomously write and deploy entirely *new* skills if the team repeatedly encounters a novel problem. |
|
|
189
|
-
| `improve` | Lead | The framework's self-improvement loop. Reads agent friction signals from sprint retros and proposes targeted changes to templates, skills, brain files, and scripts — with human approval. |
|
|
210
|
+
As you use V-Bounce Engine, the framework creates these directories to manage your sprints:
|
|
190
211
|
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
You use the bundled templates to define the work.
|
|
199
|
-
`Charter ➔ Roadmap ➔ Epic ➔ Story`
|
|
212
|
+
```
|
|
213
|
+
product_plans/ # Created when you start planning
|
|
214
|
+
strategy/ # Charter, Roadmap, Risk Registry (frozen during sprints)
|
|
215
|
+
backlog/ # Epics and Stories awaiting sprint assignment
|
|
216
|
+
sprints/ # Active sprint workspace (one active at a time)
|
|
217
|
+
hotfixes/ # Emergency fixes that bypass sprint cycles
|
|
218
|
+
archive/ # Completed sprints and Epics (immutable history)
|
|
200
219
|
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
3. The **Architect** AI audits the successful QA build against your Safe Zone and Architecture Decision Records (ADRs).
|
|
206
|
-
4. Only when both gates pass does the **DevOps** AI merge the isolated worktree into your main branch.
|
|
220
|
+
.bounce/ # Created on first sprint init
|
|
221
|
+
state.json # Machine-readable sprint state (crash recovery)
|
|
222
|
+
reports/ # QA and Architect bounce reports
|
|
223
|
+
improvement-log.md # Tracked improvement suggestions
|
|
207
224
|
|
|
208
|
-
|
|
209
|
-
When a sprint concludes, V-Bounce OS generates structured reports so human reviewers can audit the work without reading every line of code:
|
|
210
|
-
- **Sprint Report**: A comprehensive summary by the Team Lead detailing what was delivered, execution metrics, story results, and a retro of what went wrong.
|
|
211
|
-
- **Sprint Release Report**: The DevOps agent's log of the merge process to the main branch, environment changes, and post-merge test validations.
|
|
212
|
-
- **Scribe Report**: The Scribe agent's complete audit of which product documentation files were generated, updated, or removed (using `vdoc`) to map the new codebase reality.
|
|
225
|
+
.worktrees/ # Git worktrees for isolated story branches
|
|
213
226
|
|
|
214
|
-
|
|
215
|
-
|
|
227
|
+
LESSONS.md # Accumulated mistakes — agents read this before coding
|
|
228
|
+
```
|
|
216
229
|
|
|
217
|
-
|
|
218
|
-
V-Bounce OS doesn't just improve your code — it improves *itself*. Every agent report includes a **Process Feedback** section where agents flag friction with the framework: a template missing a critical field, a handoff that lost context, a RAG query that returned irrelevant results, or a skill instruction that was unclear.
|
|
230
|
+
---
|
|
219
231
|
|
|
220
|
-
|
|
232
|
+
## End-of-Sprint Reports
|
|
221
233
|
|
|
222
|
-
|
|
223
|
-
1. Reads accumulated friction signals across sprints
|
|
224
|
-
2. Identifies recurring patterns (same complaint from multiple agents = real problem)
|
|
225
|
-
3. Proposes specific, targeted changes to templates, skills, brain files, or scripts
|
|
226
|
-
4. **Applies nothing without your approval** — you review every proposed change
|
|
234
|
+
When a sprint concludes, V-Bounce Engine generates three structured reports:
|
|
227
235
|
|
|
228
|
-
|
|
236
|
+
- **Sprint Report** — what was delivered, execution metrics (tokens, cost, bounce rates), story results, lessons learned, and a retrospective.
|
|
237
|
+
- **Release Report** — the DevOps agent's merge log, environment changes, and post-merge validations.
|
|
238
|
+
- **Scribe Report** — which product documentation was created, updated, or flagged as stale.
|
|
229
239
|
|
|
230
240
|
---
|
|
231
241
|
|
|
232
|
-
##
|
|
233
|
-
`ai coding agent` `claude code` `cursor` `github copilot` `gemini` `openai codex` `software development lifecycle` `sdlc` `ai software engineer` `autonomous coding` `agentic framework` `software architecture` `ai team` `vdoc` `ai documentation` `prompt engineering`
|
|
242
|
+
## Documentation
|
|
234
243
|
|
|
235
|
-
|
|
244
|
+
- [Epic template and structure](templates/epic.md)
|
|
245
|
+
- [Hotfix edge cases](docs/HOTFIX_EDGE_CASES.md)
|
|
246
|
+
- [vdoc integration](https://github.com/sandrinio/vdoc)
|
|
247
|
+
|
|
248
|
+
## Contributing
|
|
236
249
|
|
|
237
|
-
|
|
238
|
-
- [How to structure an Epic](templates/epic.md)
|
|
239
|
-
- [How the Bounce Loop handles Hotfixes](docs/HOTFIX_EDGE_CASES.md)
|
|
240
|
-
- [Integrating with vdoc](https://github.com/sandrinio/vdoc)
|
|
250
|
+
Contributions, issues, and feature requests are welcome. Check the [issues page](https://github.com/sandrinio/v-bounce-engine/issues).
|
|
241
251
|
|
|
242
|
-
##
|
|
243
|
-
Contributions, issues, and feature requests are welcome! Feel free to check the [issues page]().
|
|
252
|
+
## License
|
|
244
253
|
|
|
245
|
-
|
|
246
|
-
This project is [MIT](LICENSE) licensed.
|
|
254
|
+
[MIT](LICENSE)
|