@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.
Files changed (36) hide show
  1. package/README.md +168 -160
  2. package/bin/vbounce.mjs +250 -25
  3. package/brains/AGENTS.md +4 -4
  4. package/brains/CHANGELOG.md +2 -2
  5. package/brains/CLAUDE.md +4 -4
  6. package/brains/GEMINI.md +5 -5
  7. package/brains/SETUP.md +15 -15
  8. package/brains/claude-agents/architect.md +1 -1
  9. package/brains/claude-agents/developer.md +1 -1
  10. package/brains/claude-agents/devops.md +1 -1
  11. package/brains/claude-agents/qa.md +2 -1
  12. package/brains/claude-agents/scribe.md +1 -1
  13. package/brains/copilot/copilot-instructions.md +3 -3
  14. package/brains/cursor-rules/vbounce-docs.mdc +2 -2
  15. package/brains/cursor-rules/vbounce-process.mdc +3 -3
  16. package/brains/cursor-rules/vbounce-rules.mdc +2 -2
  17. package/brains/windsurf/.windsurfrules +2 -2
  18. package/docs/HOTFIX_EDGE_CASES.md +1 -1
  19. package/package.json +5 -5
  20. package/scripts/doctor.mjs +3 -3
  21. package/scripts/hotfix_manager.sh +2 -2
  22. package/scripts/init_gate_config.sh +1 -1
  23. package/scripts/pre_gate_common.sh +1 -1
  24. package/scripts/pre_gate_runner.sh +1 -1
  25. package/scripts/prep_qa_context.mjs +19 -1
  26. package/scripts/prep_sprint_context.mjs +24 -1
  27. package/scripts/suggest_improvements.mjs +1 -1
  28. package/scripts/validate_bounce_readiness.mjs +27 -0
  29. package/scripts/validate_report.mjs +1 -1
  30. package/scripts/vdoc_match.mjs +269 -0
  31. package/scripts/vdoc_staleness.mjs +199 -0
  32. package/scripts/verify_framework.mjs +1 -1
  33. package/skills/agent-team/SKILL.md +18 -11
  34. package/skills/doc-manager/SKILL.md +5 -5
  35. package/skills/improve/SKILL.md +2 -2
  36. package/templates/sprint_report.md +6 -2
package/README.md CHANGED
@@ -1,246 +1,254 @@
1
- # 🎯 V-Bounce OS
1
+ # V-Bounce Engine
2
2
 
3
- **Turn your AI coding assistant into a full engineering team.**
3
+ **A structured SDLC framework for AI coding agents.**
4
4
 
5
- *Stop letting your AI code in a vacuum. V-Bounce OS is a structured, agentic framework that enforces a strict Software Development Lifecycle (SDLC) on AI agents like Claude Code, Cursor, Copilot, Gemini, and Codex.*
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
- > *Inspired by the work of Cory Hymel*
7
+ > Inspired by the work of Cory Hymel
8
8
 
9
9
  ---
10
10
 
11
- ## 💡 The Hook: Why V-Bounce OS?
11
+ ## How It Works
12
12
 
13
- Multi-agent frameworks are everywhere. But simply putting three agents in a chatroom doesn't write scalable software. When left unchecked, AI coding teams still hallucinate requirements, introduce architectural drift, and break existing patterns because they are disconnected from the truth of what they actually built.
13
+ V-Bounce Engine is built around a **Context Loop** a closed feedback system that makes agents smarter with each sprint.
14
14
 
15
- **The core differentiator of V-Bounce OS is the Context Loop: Requirements → Bounce Reports → Product Documentation.**
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
- Instead of treating your AI as a solo developer, V-Bounce OS forces distinct, specialized roles (Team Lead, Developer, QA, Architect, Scribe) to communicate exclusively through structured artifacts.
27
+ **Build.** The Developer agent implements each Story in an isolated git worktree and submits an Implementation Report.
18
28
 
19
- 1. **Requirements (`product_plans/`)**: The Team Lead defines standard, immutable templates (Charter, Epic, Story) before a single line of code is written.
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
- The next time an agent writes code, it reads the `_manifest.json` and the `LESSONS.md` file from previous sprints. The context loop closes. Your AI writes better code because it finally understands the reality of your evolving system.
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
- ## 📂 State-Based Folder Structure
37
+ ## Quick Start
28
38
 
29
- V-Bounce OS organizes planning documents (`product_plans/`) through a strict state machine based on folder location:
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
- - **`strategy/`**: High-level context (Charter, Roadmap, Risk Registry, Release Plans). Frozen during active sprints.
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
- ## 🛠️ The Tech Stack
53
+ ### What gets installed
40
54
 
41
- V-Bounce OS is built to be **local-first, privacy-conscious, and dependency-light**.
55
+ Here's what lands in your repo (example: Claude Code):
42
56
 
43
- - **Runtime**: Node.js — Powering the validation pipeline, context preparation, and CLI.
44
- - **Data Contract**: YAML Frontmatter + Markdown — Human-readable agent handoffs that are also strictly machine-parsable.
45
- - **State Management**: `.bounce/state.json`Machine-readable sprint state for instant crash recovery without re-reading documents.
46
- - **Context Budget**: On-demand prep scripts (`vbounce prep sprint/qa/arch`) generate capped context packs — no embedding or vector DB required.
57
+ ```
58
+ your-project/
59
+ ├── CLAUDE.md # Brain fileteaches 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
- ## 🚀 Quick Start
94
+ ## Supported Tools
51
95
 
52
- One command to install the entire methodology directly into your AI assistant.
96
+ V-Bounce Engine adapts to each tool's capabilities:
53
97
 
54
- ```bash
55
- # For Claude Code
56
- npx @sandrinio/vbounce install claude
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
- # For Cursor
59
- npx @sandrinio/vbounce install cursor
105
+ ---
60
106
 
61
- # For Gemini / Antigravity
62
- npx @sandrinio/vbounce install gemini
107
+ ## The Bounce Loop
63
108
 
64
- # For Copilot / VS Code
65
- npx @sandrinio/vbounce install vscode
109
+ This is the core execution cycle for every Story:
66
110
 
67
- # For OpenAI Codex
68
- npx @sandrinio/vbounce install codex
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
- ### What gets installed?
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
- After installing, run `vbounce doctor` to verify your setup is complete.
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
- ## 🛠️ The `vbounce` CLI
134
+ ## Skills
83
135
 
84
- All V-Bounce OS operations route through a unified CLI. Every command is designed to be run by the Team Lead agent not just humans.
136
+ Skills are modular markdown instructions the Team Lead invokes automatically during the SDLC:
85
137
 
86
- ```bash
87
- # Sprint lifecycle
88
- vbounce sprint init S-01 D-01 # Initialize sprint state.json + plan dir
89
- vbounce sprint close S-01 # Validate terminal states, archive, close
90
-
91
- # Story lifecycle
92
- vbounce story complete STORY-001-01-login # Update state.json + sprint plan §4
93
-
94
- # State management (crash recovery)
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
- ## 🔄 State Management & Crash Recovery
150
+ ## State Management
121
151
 
122
- V-Bounce OS tracks sprint state in `.bounce/state.json` — a machine-readable snapshot that survives context resets and session interruptions.
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 new session starts, the Team Lead reads `state.json` in under 5 seconds to know exactly where the sprint left off — no re-reading 10 markdown files.
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
- ## 📊 Self-Improvement Loop
173
+ ## CLI Reference
147
174
 
148
- V-Bounce OS tracks its own performance and suggests improvements automatically.
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
- 1. **Root Cause Tagging**: Every QA and Architect FAIL report includes a `root_cause:` field (e.g., `missing_tests`, `adr_violation`, `spec_ambiguity`) that feeds into trend analysis.
151
- 2. **Sprint Trends**: `vbounce trends` scans all archived reports to compute first-pass rate, average bounce count, correction tax, and root cause breakdown per sprint.
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
- ## 🔧 Tool Tier Model
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
- V-Bounce OS supports four tiers of AI tools with dedicated brain files for each.
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
- | Tier | Tools | Brain File | Capabilities |
162
- |------|-------|------------|--------------|
163
- | **Tier 1** | Claude Code | `brains/CLAUDE.md` | Full orchestration — spawns subagents, manages state, runs all CLI commands |
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
- Install the appropriate brain for your tool:
169
- ```bash
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
- ### 🧰 The Bundled Skills
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
- | Skill | Role | Purpose |
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
- ## ⚙️ A Skill-Driven Methodology
194
-
195
- V-Bounce OS enforces a strict hierarchy. No code is written without a plan, and no task is executed without invoking the proper skills.
196
-
197
- ### 1. Planning Layer
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
- ### 2. The Bounce Loop (Implementation)
202
- Once a Story is ready, you kick off the AI sprint.
203
- 1. The **Developer** AI writes the code and submits an Implementation Report.
204
- 2. The **QA** AI reads the report and tests it against the Story's requirements. If it fails, it bounces back. (Max 3 attempts before escalating to you).
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
- ### 3. End of Sprint Reports
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
- ### 4. Progressive Learning (`LESSONS.md`)
215
- Every time the AI makes a mistake during the Bounce Loop, it flags the issue. During the sprint retrospective, these mistakes are recorded in `LESSONS.md`—a permanent project memory that all agents read *before* writing any future code. **Your AI gets smarter about your specific codebase with every single sprint.**
227
+ LESSONS.md # Accumulated mistakes — agents read this before coding
228
+ ```
216
229
 
217
- ### 5. Self-Improving Framework (`improve` skill)
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
- These signals are aggregated into the Sprint Report's **Framework Self-Assessment** — categorized by area (Templates, Handoffs, RAG Pipeline, Skills, Process Flow, Tooling) with severity ratings and suggested fixes.
232
+ ## End-of-Sprint Reports
221
233
 
222
- After every 2-3 sprints, the Team Lead runs the `improve` skill which:
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
- The result: templates get sharper, handoffs get cleaner, skills get more precise, and the bounce loop gets tighter all driven by the agents who actually use the framework every day.
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
- ## 🔍 Keywords for Searchability
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
- ## 📖 Documentation
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
- ## 🤝 Contributing
243
- Contributions, issues, and feature requests are welcome! Feel free to check the [issues page]().
252
+ ## License
244
253
 
245
- ## 📝 License
246
- This project is [MIT](LICENSE) licensed.
254
+ [MIT](LICENSE)