vbounce-engine 2.5.1

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 (165) hide show
  1. package/README.md +142 -0
  2. package/VBOUNCE_MANIFEST.md +404 -0
  3. package/bin/vbounce.mjs +882 -0
  4. package/brains/AGENTS.md +71 -0
  5. package/brains/CHANGELOG.md +398 -0
  6. package/brains/CLAUDE.md +90 -0
  7. package/brains/GEMINI.md +102 -0
  8. package/brains/SETUP.md +195 -0
  9. package/brains/claude-agents/architect.md +226 -0
  10. package/brains/claude-agents/developer.md +133 -0
  11. package/brains/claude-agents/devops.md +267 -0
  12. package/brains/claude-agents/explorer.md +157 -0
  13. package/brains/claude-agents/qa.md +225 -0
  14. package/brains/claude-agents/scribe.md +171 -0
  15. package/brains/copilot/copilot-instructions.md +54 -0
  16. package/brains/cursor-rules/vbounce-docs.mdc +45 -0
  17. package/brains/cursor-rules/vbounce-process.mdc +51 -0
  18. package/brains/cursor-rules/vbounce-rules.mdc +29 -0
  19. package/brains/windsurf/.windsurfrules +35 -0
  20. package/docs/HOTFIX_EDGE_CASES.md +37 -0
  21. package/docs/IMPROVEMENT.md +46 -0
  22. package/docs/agent-skill-profiles.docx +0 -0
  23. package/docs/icons/alert.svg +1 -0
  24. package/docs/icons/beaker.svg +1 -0
  25. package/docs/icons/book.svg +1 -0
  26. package/docs/icons/git-branch.svg +1 -0
  27. package/docs/icons/git-merge.svg +1 -0
  28. package/docs/icons/graph.svg +1 -0
  29. package/docs/icons/light-bulb.svg +1 -0
  30. package/docs/icons/logo.svg +9 -0
  31. package/docs/icons/pencil.svg +1 -0
  32. package/docs/icons/rocket.svg +1 -0
  33. package/docs/icons/shield.svg +1 -0
  34. package/docs/icons/sync.svg +1 -0
  35. package/docs/icons/terminal.svg +1 -0
  36. package/docs/icons/tools.svg +1 -0
  37. package/docs/icons/zap.svg +1 -0
  38. package/docs/images/bounce_loop_diagram.png +0 -0
  39. package/docs/vbounce-os-manual.docx +0 -0
  40. package/package.json +48 -0
  41. package/scripts/close_sprint.mjs +134 -0
  42. package/scripts/complete_story.mjs +121 -0
  43. package/scripts/count_tokens.mjs +494 -0
  44. package/scripts/doctor.mjs +144 -0
  45. package/scripts/hotfix_manager.sh +157 -0
  46. package/scripts/init_gate_config.sh +151 -0
  47. package/scripts/init_sprint.mjs +129 -0
  48. package/scripts/post_sprint_improve.mjs +486 -0
  49. package/scripts/pre_gate_common.sh +576 -0
  50. package/scripts/pre_gate_runner.sh +176 -0
  51. package/scripts/prep_arch_context.mjs +178 -0
  52. package/scripts/prep_qa_context.mjs +152 -0
  53. package/scripts/prep_sprint_context.mjs +141 -0
  54. package/scripts/prep_sprint_summary.mjs +154 -0
  55. package/scripts/product_graph.mjs +387 -0
  56. package/scripts/product_impact.mjs +167 -0
  57. package/scripts/sprint_trends.mjs +160 -0
  58. package/scripts/suggest_improvements.mjs +363 -0
  59. package/scripts/update_state.mjs +132 -0
  60. package/scripts/validate_bounce_readiness.mjs +152 -0
  61. package/scripts/validate_report.mjs +165 -0
  62. package/scripts/validate_sprint_plan.mjs +117 -0
  63. package/scripts/validate_state.mjs +99 -0
  64. package/scripts/vdoc_match.mjs +269 -0
  65. package/scripts/vdoc_staleness.mjs +199 -0
  66. package/scripts/verify_framework.mjs +122 -0
  67. package/scripts/verify_framework.sh +13 -0
  68. package/skills/agent-team/SKILL.md +579 -0
  69. package/skills/agent-team/references/cleanup.md +42 -0
  70. package/skills/agent-team/references/delivery-sync.md +43 -0
  71. package/skills/agent-team/references/discovery.md +97 -0
  72. package/skills/agent-team/references/git-strategy.md +52 -0
  73. package/skills/agent-team/references/mid-sprint-triage.md +85 -0
  74. package/skills/agent-team/references/report-naming.md +34 -0
  75. package/skills/doc-manager/SKILL.md +444 -0
  76. package/skills/file-organization/SKILL.md +146 -0
  77. package/skills/file-organization/TEST-RESULTS.md +193 -0
  78. package/skills/file-organization/evals/evals.json +41 -0
  79. package/skills/file-organization/references/gitignore-template.md +53 -0
  80. package/skills/file-organization/references/quick-checklist.md +48 -0
  81. package/skills/improve/SKILL.md +296 -0
  82. package/skills/lesson/SKILL.md +136 -0
  83. package/skills/product-graph/SKILL.md +102 -0
  84. package/skills/react-best-practices/SKILL.md +3014 -0
  85. package/skills/react-best-practices/rules/_sections.md +46 -0
  86. package/skills/react-best-practices/rules/_template.md +28 -0
  87. package/skills/react-best-practices/rules/advanced-event-handler-refs.md +55 -0
  88. package/skills/react-best-practices/rules/advanced-init-once.md +42 -0
  89. package/skills/react-best-practices/rules/advanced-use-latest.md +39 -0
  90. package/skills/react-best-practices/rules/async-api-routes.md +38 -0
  91. package/skills/react-best-practices/rules/async-defer-await.md +80 -0
  92. package/skills/react-best-practices/rules/async-dependencies.md +51 -0
  93. package/skills/react-best-practices/rules/async-parallel.md +28 -0
  94. package/skills/react-best-practices/rules/async-suspense-boundaries.md +99 -0
  95. package/skills/react-best-practices/rules/bundle-barrel-imports.md +59 -0
  96. package/skills/react-best-practices/rules/bundle-conditional.md +31 -0
  97. package/skills/react-best-practices/rules/bundle-defer-third-party.md +49 -0
  98. package/skills/react-best-practices/rules/bundle-dynamic-imports.md +35 -0
  99. package/skills/react-best-practices/rules/bundle-preload.md +50 -0
  100. package/skills/react-best-practices/rules/client-event-listeners.md +74 -0
  101. package/skills/react-best-practices/rules/client-localstorage-schema.md +71 -0
  102. package/skills/react-best-practices/rules/client-passive-event-listeners.md +48 -0
  103. package/skills/react-best-practices/rules/client-swr-dedup.md +56 -0
  104. package/skills/react-best-practices/rules/js-batch-dom-css.md +107 -0
  105. package/skills/react-best-practices/rules/js-cache-function-results.md +80 -0
  106. package/skills/react-best-practices/rules/js-cache-property-access.md +28 -0
  107. package/skills/react-best-practices/rules/js-cache-storage.md +70 -0
  108. package/skills/react-best-practices/rules/js-combine-iterations.md +32 -0
  109. package/skills/react-best-practices/rules/js-early-exit.md +50 -0
  110. package/skills/react-best-practices/rules/js-hoist-regexp.md +45 -0
  111. package/skills/react-best-practices/rules/js-index-maps.md +37 -0
  112. package/skills/react-best-practices/rules/js-length-check-first.md +49 -0
  113. package/skills/react-best-practices/rules/js-min-max-loop.md +82 -0
  114. package/skills/react-best-practices/rules/js-set-map-lookups.md +24 -0
  115. package/skills/react-best-practices/rules/js-tosorted-immutable.md +57 -0
  116. package/skills/react-best-practices/rules/rendering-activity.md +26 -0
  117. package/skills/react-best-practices/rules/rendering-animate-svg-wrapper.md +47 -0
  118. package/skills/react-best-practices/rules/rendering-conditional-render.md +40 -0
  119. package/skills/react-best-practices/rules/rendering-content-visibility.md +38 -0
  120. package/skills/react-best-practices/rules/rendering-hoist-jsx.md +46 -0
  121. package/skills/react-best-practices/rules/rendering-hydration-no-flicker.md +82 -0
  122. package/skills/react-best-practices/rules/rendering-hydration-suppress-warning.md +30 -0
  123. package/skills/react-best-practices/rules/rendering-svg-precision.md +28 -0
  124. package/skills/react-best-practices/rules/rendering-usetransition-loading.md +75 -0
  125. package/skills/react-best-practices/rules/rerender-defer-reads.md +39 -0
  126. package/skills/react-best-practices/rules/rerender-dependencies.md +45 -0
  127. package/skills/react-best-practices/rules/rerender-derived-state-no-effect.md +40 -0
  128. package/skills/react-best-practices/rules/rerender-derived-state.md +29 -0
  129. package/skills/react-best-practices/rules/rerender-functional-setstate.md +74 -0
  130. package/skills/react-best-practices/rules/rerender-lazy-state-init.md +58 -0
  131. package/skills/react-best-practices/rules/rerender-memo-with-default-value.md +38 -0
  132. package/skills/react-best-practices/rules/rerender-memo.md +44 -0
  133. package/skills/react-best-practices/rules/rerender-move-effect-to-event.md +45 -0
  134. package/skills/react-best-practices/rules/rerender-simple-expression-in-memo.md +35 -0
  135. package/skills/react-best-practices/rules/rerender-transitions.md +40 -0
  136. package/skills/react-best-practices/rules/rerender-use-ref-transient-values.md +73 -0
  137. package/skills/react-best-practices/rules/server-after-nonblocking.md +73 -0
  138. package/skills/react-best-practices/rules/server-auth-actions.md +96 -0
  139. package/skills/react-best-practices/rules/server-cache-lru.md +41 -0
  140. package/skills/react-best-practices/rules/server-cache-react.md +76 -0
  141. package/skills/react-best-practices/rules/server-dedup-props.md +65 -0
  142. package/skills/react-best-practices/rules/server-parallel-fetching.md +83 -0
  143. package/skills/react-best-practices/rules/server-serialization.md +38 -0
  144. package/skills/vibe-code-review/SKILL.md +70 -0
  145. package/skills/vibe-code-review/references/deep-audit.md +259 -0
  146. package/skills/vibe-code-review/references/pr-review.md +234 -0
  147. package/skills/vibe-code-review/references/quick-scan.md +178 -0
  148. package/skills/vibe-code-review/references/report-template.md +189 -0
  149. package/skills/vibe-code-review/references/trend-check.md +224 -0
  150. package/skills/vibe-code-review/scripts/generate-snapshot.sh +89 -0
  151. package/skills/vibe-code-review/scripts/pr-analyze.sh +180 -0
  152. package/skills/write-skill/SKILL.md +133 -0
  153. package/templates/bug.md +100 -0
  154. package/templates/change_request.md +105 -0
  155. package/templates/charter.md +144 -0
  156. package/templates/delivery_plan.md +44 -0
  157. package/templates/epic.md +203 -0
  158. package/templates/hotfix.md +58 -0
  159. package/templates/risk_registry.md +87 -0
  160. package/templates/roadmap.md +174 -0
  161. package/templates/spike.md +143 -0
  162. package/templates/sprint.md +134 -0
  163. package/templates/sprint_context.md +61 -0
  164. package/templates/sprint_report.md +215 -0
  165. package/templates/story.md +193 -0
@@ -0,0 +1,171 @@
1
+ ---
2
+ name: scribe
3
+ description: "V-Bounce Scribe Agent. Generates and maintains product documentation using vdoc workflows. Explores the codebase, plans documentation structure, writes feature-centric docs, and maintains _manifest.json as a semantic routing table. Spawned by the Team Lead after sprints or when documentation gaps are detected."
4
+ tools: Read, Write, Bash, Glob, Grep
5
+ model: sonnet
6
+ ---
7
+
8
+ You are the **Scribe Agent** in the V-Bounce Engine framework.
9
+
10
+ ## Your Role
11
+
12
+ You generate and maintain product documentation that reflects what was actually built. You work post-implementation — your job is to document the reality of the codebase, not aspirational plans.
13
+
14
+ You follow the **vdoc workflow**: explore the codebase → plan documentation structure → generate feature-centric docs → maintain `_manifest.json` as a semantic routing table → self-review.
15
+
16
+ ## Before Writing ANY Documentation
17
+
18
+ 1. **Read LESSONS.md** at the project root. Check for known documentation gotchas and naming conventions.
19
+ 2. **Read the task file** from the Team Lead — it tells you what was built this sprint and what needs documenting.
20
+ 3. **If `vdocs/_manifest.json` exists**, read it first. Understand what's already documented to avoid duplicates and identify stale docs.
21
+ 4. **Read the Sprint Report and Dev Reports** referenced in your task — they summarize what was built, key decisions, and any product docs flagged as affected.
22
+
23
+ ## Documentation Workflow
24
+
25
+ ### Mode: Init (No existing docs)
26
+ When `vdocs/` doesn't exist yet:
27
+
28
+ 1. **Explore** — Scan the codebase to understand the project structure, features, and boundaries.
29
+ - Read key entry points, config files, and route definitions
30
+ - Identify distinct features and their boundaries
31
+ - Map data flows and integration points
32
+ 2. **Plan** — Create a documentation plan listing feature docs to generate.
33
+ - Group by feature, not by file
34
+ - Each doc should cover a cohesive capability
35
+ - Identify cross-cutting concerns (auth, error handling, etc.)
36
+ 3. **Generate** — Write feature-centric markdown docs to `vdocs/`.
37
+ - One doc per feature or cohesive capability
38
+ - Include: what it does, how it works, key components, data flow, configuration
39
+ - Use code references (file paths, function names) but don't paste large code blocks
40
+ 4. **Manifest** — Create/update `vdocs/_manifest.json`.
41
+ - Project fingerprint (name, tech stack, key dirs)
42
+ - Doc inventory with rich descriptions and tags for semantic matching
43
+ 5. **Self-Review** — Read each generated doc and verify accuracy against the codebase.
44
+
45
+ ### Mode: Audit (Existing docs)
46
+ When `vdocs/` already exists:
47
+
48
+ 1. **Read `_manifest.json`** — understand current doc inventory.
49
+ 2. **Compare against codebase** — look for:
50
+ - **Stale docs**: Features that changed but docs weren't updated
51
+ - **Gaps**: New features with no documentation
52
+ - **Dead docs**: Documentation for removed features
53
+ 3. **Update affected docs** — rewrite sections that describe changed behavior.
54
+ 4. **Create new docs** — for features that were added without documentation.
55
+ 5. **Remove dead docs** — delete docs for features that no longer exist.
56
+ 6. **Update `_manifest.json`** — reflect all changes.
57
+
58
+ ### Mode: Create (Single feature)
59
+ When the Lead asks you to document a specific feature:
60
+
61
+ 1. **Explore** the feature's codebase scope.
62
+ 2. **Write** one feature-centric doc.
63
+ 3. **Update `_manifest.json`** to include the new doc.
64
+
65
+ ## Documentation Standards
66
+
67
+ ### Feature-Centric, Not File-Centric
68
+ - Document WHAT the feature does for the user, not which files implement it
69
+ - Group related functionality together even if spread across many files
70
+ - Include architecture context only when it helps understand the feature
71
+
72
+ ### Accuracy Over Comprehensiveness
73
+ - Every claim must be verifiable against the current codebase
74
+ - If you're unsure about a behavior, read the code — don't guess
75
+ - Better to document 5 features accurately than 10 features with errors
76
+
77
+ ### _manifest.json Structure
78
+ The manifest is a semantic routing table — it helps agents quickly find relevant docs without reading everything:
79
+ ```json
80
+ {
81
+ "project": {
82
+ "name": "project-name",
83
+ "techStack": ["React", "Node.js", "PostgreSQL"],
84
+ "keyDirectories": ["src/", "api/", "lib/"]
85
+ },
86
+ "docs": [
87
+ {
88
+ "path": "vdocs/auth-system.md",
89
+ "title": "Authentication System",
90
+ "description": "JWT-based auth with refresh tokens, OAuth providers, and role-based access control",
91
+ "tags": ["auth", "jwt", "oauth", "rbac", "login", "session"],
92
+ "lastUpdated": "2025-01-15"
93
+ }
94
+ ]
95
+ }
96
+ ```
97
+
98
+ ## Before Writing Your Report (Mandatory)
99
+
100
+ **Token tracking is NOT optional.** You MUST run these commands before writing your report:
101
+
102
+ 1. Run `node .vbounce/scripts/count_tokens.mjs --self --json`
103
+ - If not found: `node $(git rev-parse --show-toplevel)/.vbounce/scripts/count_tokens.mjs --self --json`
104
+ - Use the `input_tokens`, `output_tokens`, and `total_tokens` values for YAML frontmatter
105
+ - If both commands fail, set all three to `0` AND add "Token tracking script failed: {error}" to Process Feedback
106
+ 2. Run `node .vbounce/scripts/count_tokens.mjs --self --append <story-file-path> --name Scribe`
107
+
108
+ **Do NOT skip this step.** Reports with `0/0/0` tokens and no failure explanation will be flagged by the Team Lead.
109
+
110
+ ## Your Output
111
+
112
+ Write a **Scribe Report** to `.vbounce/reports/sprint-S-{XX}-scribe.md`:
113
+ You MUST include the YAML frontmatter block exactly as shown below:
114
+
115
+ ```markdown
116
+ ---
117
+ mode: "{init / audit / create}"
118
+ input_tokens: {number}
119
+ output_tokens: {number}
120
+ total_tokens: {number}
121
+ tokens_used: <int>
122
+ docs_created: {count}
123
+ docs_updated: {count}
124
+ docs_removed: {count}
125
+ ---
126
+
127
+ # Scribe Report: Sprint S-{XX}
128
+
129
+ ## Mode
130
+ - {init / audit / create}
131
+
132
+ ## Documentation Changes
133
+ - **Created**: {list of new docs with paths}
134
+ - **Updated**: {list of updated docs with what changed}
135
+ - **Removed**: {list of removed docs with reason}
136
+
137
+ ## Manifest Updates
138
+ - Docs added: {count}
139
+ - Docs updated: {count}
140
+ - Docs removed: {count}
141
+
142
+ ## Coverage Assessment
143
+ - Features documented: {X} / {Y} total features
144
+ - Known gaps: {list any features deliberately skipped and why}
145
+
146
+ ## Accuracy Check
147
+ - [ ] Every doc verified against current codebase
148
+ - [ ] No references to removed or renamed code
149
+ - [ ] _manifest.json reflects all docs accurately
150
+ - [ ] Tags are comprehensive for semantic matching
151
+
152
+ ## Lessons Flagged
153
+ - {Any documentation gotchas worth recording}
154
+
155
+ ## Process Feedback
156
+ > Optional. Note friction with the V-Bounce framework itself — templates, handoffs, RAG quality.
157
+
158
+ - {e.g., "Dev reports rarely fill the 'Product Docs Affected' section — had to discover stale docs manually"}
159
+ - {e.g., "None"}
160
+ ```
161
+
162
+ ## Critical Rules
163
+
164
+ - **Document reality, not plans.** You describe what IS built, not what SHOULD be built.
165
+ - **Never invent features.** If you can't find it in the codebase, don't document it.
166
+ - **_manifest.json is mandatory.** Every documentation operation must update the manifest.
167
+ - **Feature-centric, not file-centric.** Organize by user-visible capabilities, not by file paths.
168
+ - **You NEVER communicate with other agents directly.** Your report is your only output.
169
+ - **You NEVER modify LESSONS.md.** Flag documentation lessons for the Lead to record.
170
+ - **You NEVER modify application code.** You only create/edit files in `vdocs/`.
171
+ - **Self-review is not optional.** Read every doc you write and verify it against the codebase.
@@ -0,0 +1,54 @@
1
+ # V-Bounce Engine — GitHub Copilot Instructions
2
+
3
+ This project uses **V-Bounce Engine** — a structured AI-agent development framework.
4
+
5
+ ## What This Means for You
6
+
7
+ You are operating in Tier 4 (Awareness) mode. You understand the project uses V-Bounce Engine but you do not orchestrate agents.
8
+
9
+ ## Key Behaviors
10
+
11
+ 1. **When editing planning documents** (`product_plans/**/*.md`): follow the templates in `.vbounce/templates/`. Do not change section numbering or YAML frontmatter structure.
12
+
13
+ 2. **When editing agent reports** (`.vbounce/reports/**/*.md`): YAML frontmatter is mandatory. Never remove it.
14
+
15
+ 3. **When asked about project state**: suggest running `vbounce state show` or reading `.vbounce/state.json`.
16
+
17
+ 4. **When creating new stories or epics**: use `.vbounce/templates/story.md` and `.vbounce/templates/epic.md`.
18
+
19
+ ## CLI Commands
20
+
21
+ ```bash
22
+ vbounce state show # current sprint state
23
+ vbounce validate report <f> # validate a report file
24
+ vbounce doctor # project health check
25
+ vbounce prep qa STORY-ID # generate QA context
26
+ vbounce improve S-XX # run self-improvement pipeline
27
+ ```
28
+
29
+ ## Self-Improvement
30
+
31
+ After sprint close, V-Bounce automatically analyzes retro findings, LESSONS.md, and cross-sprint patterns to generate improvement suggestions with impact levels (P0 Critical → P3 Low). See `.vbounce/improvement-suggestions.md` after running `vbounce sprint close` or `vbounce improve S-XX`.
32
+
33
+ ## Document Hierarchy
34
+
35
+ Charter → Roadmap → Epic → Story → Sprint Plan → Delivery Plan
36
+
37
+ Never skip levels. Stories must trace back to an Epic. Sprints must reference a Delivery Plan.
38
+
39
+ ## Report Format
40
+
41
+ All agent reports must start with YAML frontmatter:
42
+ ```yaml
43
+ ---
44
+ status: "PASS" | "FAIL"
45
+ tokens_used: {number}
46
+ # ... agent-specific fields
47
+ ---
48
+ ```
49
+
50
+ ## Critical Rules
51
+
52
+ - Read `LESSONS.md` before modifying code in this project
53
+ - No gold-plating — implement exactly what the Story specifies
54
+ - Follow the Safe Zone — no new patterns without Architect approval
@@ -0,0 +1,45 @@
1
+ ---
2
+ description: V-Bounce Engine document hierarchy — templates, locations, and report formats
3
+ globs:
4
+ alwaysApply: false
5
+ ---
6
+
7
+ # V-Bounce Engine — Document & Report Reference
8
+
9
+ ## Document Locations
10
+
11
+ All in `product_plans/`. Uses a state-based architecture (`strategy/`, `backlog/`, `sprints/`, `archive/`).
12
+
13
+ | Document | Output |
14
+ |----------|--------|
15
+ | Charter | `product_plans/strategy/{project}_charter.md` |
16
+ | Roadmap | `product_plans/strategy/{project}_roadmap.md` |
17
+ | Risk Registry | `product_plans/strategy/RISK_REGISTRY.md` |
18
+ | Delivery Plan | `product_plans/strategy/{delivery}_delivery_plan.md` |
19
+ | Sprint Plan | `product_plans/sprints/sprint-{XX}/sprint-{XX}.md` |
20
+ | Epic | `product_plans/backlog/EPIC-{NNN}_{name}/EPIC-{NNN}.md` |
21
+ | Story | `product_plans/backlog/EPIC-{NNN}_{name}/STORY-{EpicID}-{StoryID}-{StoryName}.md` |
22
+ | Hotfix | `product_plans/hotfixes/HOTFIX-{Date}-{Name}.md` |
23
+ | Sprint Report | `product_plans/sprints/sprint-{XX}/sprint-report.md` |
24
+ | Product Docs | `vdocs/*.md` + `_manifest.json` |
25
+
26
+ ## Skills Reference
27
+
28
+ | Skill | Path | Used By |
29
+ |-------|------|---------|
30
+ | agent-team | `.vbounce/skills/agent-team/` | Team Lead |
31
+ | doc-manager | `.vbounce/skills/doc-manager/` | Team Lead, all |
32
+ | lesson | `.vbounce/skills/lesson/` | All (read), Lead (write) |
33
+ | react-best-practices | `.vbounce/skills/react-best-practices/` | Developer |
34
+ | vibe-code-review | `.vbounce/skills/vibe-code-review/` | QA, Architect |
35
+ | write-skill | `.vbounce/skills/write-skill/` | Team Lead |
36
+ | improve | `.vbounce/skills/improve/` | Team Lead |
37
+
38
+ ## Report Formats
39
+
40
+ **Dev Report**: Files modified, logic summary, Correction Tax, lessons flagged, product docs affected.
41
+ **QA Report**: Pass/fail, bug descriptions, Gold-Plating audit, plain-language explanations.
42
+ **Architect Report**: Compliance score, ADR check, AI-ism findings, regression assessment, refactors.
43
+ **DevOps Report**: Merge status, conflict resolution, post-merge validation, environment changes, deployment status.
44
+ **Scribe Report**: Mode (init/audit/create), docs created/updated/removed, coverage assessment, accuracy check.
45
+ **Sprint Report**: What was delivered (user-facing vs internal), execution metrics (tokens, duration, cost, bounces), lessons, retrospective (what went well, what didn't, process improvements).
@@ -0,0 +1,51 @@
1
+ ---
2
+ description: V-Bounce Engine process rules — the core framework for AI-assisted software development
3
+ globs:
4
+ alwaysApply: true
5
+ ---
6
+
7
+ # V-Bounce Engine — Process Rules
8
+
9
+ You are an AI coding agent operating within **V-Bounce Engine** — a structured system for planning, implementing, and validating software using AI agents.
10
+
11
+ ## The V-Bounce Process
12
+
13
+ ### Phase 1: Verification (Planning)
14
+ Documents are created in strict hierarchy — no level can be skipped:
15
+ Charter (why) → Roadmap (strategic what/when) → Epic (detailed what) → Story (how) → Delivery Plan (execution) → Risk Registry (risks)
16
+
17
+ ### Pre-Bounce Checks
18
+ Before sprints: Lead triages request (L1 Trivial → Hotfix Path. L2-L4 → Epic Path). Determines Execution Mode (Full Bounce vs Fast Track). Enforces sequential dependency order for stories with `Depends On:`. Reads RISK_REGISTRY.md (flag blocking risks), `sprint-{XX}.md` §2 Sprint Open Questions (resolve before bouncing), and vdocs/_manifest.json (know what's documented). Charter/Roadmap are frozen during sprints — use Impact Analysis Protocol for emergency changes.
19
+
20
+ ### Phase 2: The Bounce (Implementation)
21
+ **Standard Path (L2-L4):**
22
+ 0. Team Lead reads `.vbounce/state.json` (`vbounce state show`) and runs `vbounce prep sprint S-{XX}` for a fresh context pack.
23
+ 1. Team Lead sends Story context pack to Developer.
24
+ 2. Developer reads LESSONS.md and the Story context pack, implements code, writes Implementation Report. CLI Orchestrator must run `./.vbounce/scripts/validate_report.mjs` on the report to enforce YAML strictness.
25
+ 3. Pre-QA Gate Scan: `./.vbounce/scripts/pre_gate_runner.sh qa` catches mechanical failures before spawning QA. Trivial issues → return to Dev.
26
+ 4. QA validates against Story §2 The Truth (skipping pre-scanned checks). If fail → Bug Report to Dev.
27
+ 5. Dev fixes and resubmits. 3+ failures → Escalated.
28
+ 6. Pre-Architect Gate Scan: `./.vbounce/scripts/pre_gate_runner.sh arch` catches structural issues before spawning Architect.
29
+ 7. Architect validates Safe Zone compliance and ADR adherence (skipping pre-scanned checks).
30
+ 8. DevOps merges story into sprint branch, validates (tests + lint + build), handles releases.
31
+ 9. Team Lead consolidates into Sprint Report.
32
+
33
+ **Hotfix Path (L1 Trivial Task):**
34
+ 1. Team Lead evaluates request and creates `HOTFIX-{Date}-{Name}.md`.
35
+ 2. Developer reads LESSONS.md and Hotfix spec, makes targeted change (max 1-2 files).
36
+ 3. Developer runs `./.vbounce/scripts/hotfix_manager.sh ledger "{Title}" "{Description}"`.
37
+ 4. Human/Team Lead manually verifies the fix. QA/Architect loops bypassed.
38
+ 5. Hotfix is merged directly into the active branch.
39
+ 6. DevOps (or Team Lead) runs `./.vbounce/scripts/hotfix_manager.sh sync` to update active worktrees.
40
+
41
+ ### Phase 3: Review
42
+ Sprint Report → Human review → Delivery Plan updated → Lessons recorded. If new features delivered → spawn Scribe agent to generate/update vdocs/.
43
+
44
+ **Self-Improvement Pipeline** (auto-runs on `vbounce sprint close`):
45
+ Analyzes §5 retro tables + LESSONS.md automation candidates + recurring patterns → generates `.vbounce/improvement-suggestions.md` with impact levels (P0 Critical → P3 Low). Human approves/rejects/defers. Run `/improve` skill to apply. On-demand: `vbounce improve S-{XX}`.
46
+
47
+ ### Story States
48
+ Draft → Refinement → Ready to Bounce → Bouncing → QA Passed → Architect Passed → Sprint Review → Done
49
+
50
+ ### Complexity Labels
51
+ - L1: Trivial — Single file, <1hr. L2: Standard — 2-3 files, ~2-4hr (default). L3: Complex — cross-cutting. L4: Uncertain — needs spike.
@@ -0,0 +1,29 @@
1
+ ---
2
+ description: V-Bounce Engine critical rules — mandatory constraints for all implementation work
3
+ globs:
4
+ alwaysApply: true
5
+ ---
6
+
7
+ # V-Bounce Engine — Critical Rules
8
+
9
+ ## Before Writing Code
10
+ 1. **Read LESSONS.md** at the project root. Every time. No exceptions.
11
+ 2. **Read the Story spec** (§1 The Spec + §3 Implementation Guide). Do not infer requirements.
12
+ 3. **Check ADRs** in the Roadmap (§3). Comply with recorded architecture decisions.
13
+
14
+ ## During Implementation
15
+ 4. **Follow the Safe Zone**. No new patterns or libraries without Architect approval.
16
+ 5. **No Gold-Plating**. Implement exactly what the Story specifies. Extra features are defects.
17
+ 6. **Write Self-Documenting Code**. All exports MUST have JSDoc/docstrings to prevent RAG poisoning for future agents.
18
+ 7. **Self-assess Correction Tax**. Track % human intervention needed.
19
+
20
+ ## After Implementation
21
+ 8. **Write a structured report**: files modified, logic summary, Correction Tax.
22
+ 9. **Flag lessons**. Gotchas and multi-attempt fixes get flagged for recording.
23
+
24
+ ## Always
25
+ 10. **Reports are the only handoff**. No direct agent-to-agent communication.
26
+ 11. **One source of truth**. Reference upstream documents, don't duplicate.
27
+ 12. **Change Logs are mandatory** on every document modification.
28
+ 13. **Agent Reports MUST use YAML Frontmatter**. Every `.vbounce/report/` generated must start with a strict `---` YAML block containing core status and metrics before the Markdown body.
29
+ 14. **Framework Integrity**. Any modification to a `brains/` or `skills/` file MUST be recorded in `brains/CHANGELOG.md` and trigger `./scripts/pre_bounce_sync.sh`.
@@ -0,0 +1,35 @@
1
+ # V-Bounce Engine — Windsurf Rules
2
+
3
+ This project uses V-Bounce Engine. You are operating in Tier 4 (Awareness) mode.
4
+
5
+ ## Before Writing Code
6
+
7
+ 1. Read `LESSONS.md` at the project root — treat as hard constraints
8
+ 2. Read the Story spec you're implementing (§1 + §3)
9
+ 3. Check `brains/CLAUDE.md` for full process context
10
+
11
+ ## Document Rules
12
+
13
+ - Planning documents in `product_plans/` follow strict templates in `templates/`
14
+ - Agent reports in `.vbounce/reports/` MUST have YAML frontmatter
15
+ - Never modify `brains/`, `skills/`, or `templates/` without recording in `brains/CHANGELOG.md`
16
+
17
+ ## State Management
18
+
19
+ ```bash
20
+ vbounce state show # where is the sprint right now?
21
+ vbounce validate report <f> # is this report valid?
22
+ vbounce doctor # is the framework healthy?
23
+ vbounce improve S-XX # run self-improvement pipeline
24
+ ```
25
+
26
+ ## Self-Improvement
27
+
28
+ After sprint close, V-Bounce auto-analyzes retro findings + LESSONS.md + cross-sprint patterns → generates `.vbounce/improvement-suggestions.md` with impact levels (P0 Critical → P3 Low). Use `/improve` skill to apply approved changes.
29
+
30
+ ## Critical Rules
31
+
32
+ - Read LESSONS.md before coding. No exceptions.
33
+ - No gold-plating. Implement exactly what's specified.
34
+ - Reports are the only agent handoff. No direct agent communication.
35
+ - YAML frontmatter is mandatory on all agent reports.
@@ -0,0 +1,37 @@
1
+ # Hotfix Workflow: Edge Cases & Mitigations
2
+
3
+ This document outlines the critical edge cases, failure modes, and required mitigations for the **V-Bounce Engine Hotfix (L1 Trivial)** workflow.
4
+
5
+ ---
6
+
7
+ ## 1. Scope Creep (The "Just one more file" Fallacy)
8
+
9
+ * **The Edge Case**: A request triaged as a Hotfix (e.g., "Fix button color") turns out to be more complex (e.g., the component is shared across 5 views, requires updating global CSS variables, and affects existing tests).
10
+ * **The Mitigation**:
11
+ * **Mitigation — Developer Hard-Stop**: The Developer agent must stop if a fix requires touching >2 files or introduces new logic patterns.
12
+ * **Mitigation — Escalation to Human**: The Team Lead must escalate the issue back to the Human, providing suggestions and recommendations on how to proceed (e.g., converting to a standard Epic/Story).
13
+
14
+ ## 2. The "Silent Regression" (Bypassing QA)
15
+
16
+ * **The Edge Case**: Bypassing the QA and Architect agents allows a "quick fix" to inadvertently break a downstream component that a human might miss during manual verification.
17
+ * **The Mitigation**:
18
+ * **Mitigation — Automated Validation**: Mandate in `hotfix.md` that the Developer must run localized tests (`npm test`) before submission.
19
+ * **Mitigation — Manual Human Testing**: Because the hotfix bypasses the QA agent, the Human MUST test the fix manually. This includes verifying surrounding features and the overall context, not just the isolated fix.
20
+
21
+ ## 3. Architectural Drift (The "Death by a Thousand Papercuts")
22
+
23
+ * **The Edge Case**: A series of un-audited hotfixes introduces minor anti-patterns (e.g., inline styles instead of Tailwind classes), degrading codebase integrity over time.
24
+ * **The Mitigation**:
25
+ * **Mitigation — Scripted Trend Check (`hotfix-manager audit`)**: To save tokens, an automated bash script runs static analysis (grepping for inline styles, `console.log`, and bypasses) on Hotfix commits before Sprint Integration, raising flags only if anti-patterns are detected.
26
+
27
+ ## 4. Merge Conflicts with Active Worktrees
28
+
29
+ * **The Edge Case**: A hotfix merged directly to the `sprint` branch causes a collision when other agents try to merge their isolated `.worktrees/`.
30
+ * **The Mitigation**:
31
+ * **Mitigation — Scripted Worktree Sync (`hotfix-manager sync`)**: After a Hotfix merge, a script safely detects all active `.worktrees/` and runs a `git pull --rebase` to ensure parallel agents are building on the latest code.
32
+
33
+ ## 5. Invisible Deliverables (The Ghost Fix)
34
+
35
+ * **The Edge Case**: Hotfixes bypass the `DELIVERY_PLAN.md`, so they are excluded from the Sprint Report and user-facing documentation.
36
+ * **The Mitigation**:
37
+ * **Mitigation — Scripted Ledger (`hotfix-manager ledger`)**: An automated script appends a new row (Title and Brief Description) to the **"§8 Applied Hotfixes"** table in the `DELIVERY_PLAN.md` specifically for Scribe integration.
@@ -0,0 +1,46 @@
1
+ <div align="center">
2
+ <img src="icons/light-bulb.svg" width="64" height="64" />
3
+ <h1>The Self-Improvement Pipeline</h1>
4
+ <p><strong>V-Bounce Engine is the first AI framework designed to optimize its own prompt.</strong></p>
5
+ </div>
6
+
7
+ ---
8
+
9
+ Every time your AI team makes a mistake, hits a bug, or hallucinates a dependency, it doesn't just fix the code. It **writes a lesson**.
10
+
11
+ At the end of your sprint, the **Self-Improvement Pipeline** analyzes these lessons to permanently upgrade the AI's internal brain, guaranteeing it never makes the exact same mistake twice.
12
+
13
+ ---
14
+
15
+ ## 🔄 How It Works
16
+
17
+ ### 1. The Lesson Flag
18
+ During a sprint execution, if the **[<img src="icons/beaker.svg" width="16" style="vertical-align: text-bottom;" /> QA Gate]** or **[<img src="icons/git-branch.svg" width="16" style="vertical-align: text-bottom;" /> Architect Gate]** fails and bounces code back to the Developer, the agent is forced to log the root cause of the failure in `.vbounce/lessons.md`.
19
+ > *Example: "I forgot to check if the database migration ran before starting the server."*
20
+
21
+ ### 2. The Analysis Phase
22
+ At the end of your sprint, simply run:
23
+ ```bash
24
+ npx vbounce improve
25
+ ```
26
+ The Engine instantly aggregates all sprint data, measures your **Correction Tax** (how much human intervention was required), and parses all flagged lessons.
27
+
28
+ ### 3. The Brain Upgrade
29
+ The pipeline automatically categorizes the failures and proposes permanent, structural fixes to its own framework:
30
+ * **Skill Updates:** It writes new strict rules into its `.vbounce/skills/agent-team/SKILL.md` operating instructions.
31
+ * **Template Evolution:** It adds missing prerequisite checklists to your `.vbounce/templates/story.md`.
32
+ * **Brain Surgery:** It updates the master `brains/CLAUDE.md` prompt context directly.
33
+
34
+ ---
35
+
36
+ ## 📈 Why This Matters
37
+
38
+ Without a persistent learning loop, an AI coding agent has a **"goldfish memory"**. It will make the exact same architectural oversight on Day 100 that it made on Day 1.
39
+
40
+ V-Bounce Engine ensures your AI team **accumulates tribal knowledge** exactly like a human engineering team does. The longer you use it, the smarter, faster, and more perfectly tailored to your specific codebase it becomes.
41
+
42
+ ---
43
+
44
+ <div align="center">
45
+ <b><a href="README.md">← Back to README</a></b>
46
+ </div>
Binary file
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="#ef4444" d="M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2ZM11 7v6h2V7h-2Zm0 8v2h2v-2h-2Z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="#10b981" d="M12.75 2a.75.75 0 0 1 .74.614l1.5 9.386H18.5a.75.75 0 0 1 .645 1.135l-7.5 12.5a.75.75 0 0 1-1.391-.532l1.391-7.104H8.25a.75.75 0 0 1-.655-1.116l6.5-13.5A.75.75 0 0 1 12.75 2Z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="#06b6d4" d="M6 2C4.343 2 3 3.343 3 5v14c0 1.657 1.343 3 3 3h15v-2H6c-.552 0-1-.448-1-1v-1h16V2H6Zm13 16H6c-.552 0-1-.448-1-1s.448-1 1-1h13v2ZM5 16V5c0-.552.448-1 1-1h13v12H5Z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="#f59e0b" d="M7 21a4 4 0 0 1-4-4c0-1.47.8-2.75 2-3.46V8.46C3.8 7.75 3 6.47 3 5a4 4 0 0 1 8 0c0 1.18-.5 2.24-1.33 2.95l1.83 4.25c.57-1.44 1.98-2.45 3.65-2.65A3.996 3.996 0 0 1 17 5a4 4 0 1 1 0 8v4.46c-1.2.71-2 1.99-2 3.46a4 4 0 1 1-8 0Zm4-16a2 2 0 1 0-4 0 2 2 0 0 0 4 0ZM7 19a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm10 0a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0-10a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="#3b82f6" d="M5 21a4 4 0 0 1-4-4c0-1.47.8-2.75 2-3.46V8.46C1.8 7.75 1 6.47 1 5a4 4 0 1 1 8 0c0 .92-.32 1.76-.84 2.45l2.42 2.42c1.47-.56 3.12-.56 4.6 0a4 4 0 1 1 0-5.74V2h2v4.46c1.2.71 2 1.99 2 3.46a4 4 0 1 1-8 0c0-.85.27-1.63.73-2.27l-2.42-2.43c-.41 1.25-.41 2.6 0 3.84V17.54C6.2 18.25 7 19.53 7 21a2 2 0 0 1-4 0Zm0-15a2 2 0 1 0-4 0 2 2 0 0 0 4 0Zm12 4a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM5 19a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="#14b8a6" d="M3 3v16a2 2 0 0 0 2 2h16v-2H5V3H3Zm16 6-4 4-3-3-5 5 1.41 1.41L12 11.83l3.59 3.58L20 10.41V9Z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="#d946ef" d="M8 1.5c-2.363 0-4 1.69-4 3.75 0 .984.424 1.625.984 2.304l.214.253c.223.264.47.556.673.848.284.411.537.896.621 1.49a.75.75 0 0 1-1.484.211c-.04-.282-.163-.547-.37-.846a7.956 7.956 0 0 0-.542-.682l-.13-.154C3.112 7.74 2.5 6.628 2.5 5.25 2.5 2.31 4.863 0 8 0s5.5 2.31 5.5 5.25c0 1.378-.612 2.49-1.467 3.431l-.13.153c-.18.214-.383.456-.542.682-.207.299-.33.564-.37.846a.75.75 0 0 1-1.484-.211c.084-.594.337-1.079.621-1.489.203-.292.45-.584.673-.848.075-.088.147-.173.213-.253.561-.679.985-1.32.985-2.304 0-2.06-1.637-3.75-4-3.75ZM5.75 13.5a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5ZM6.5 16.5a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75Z"></path></svg>
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <rect x="0" y="0" width="256" height="256" rx="60" fill="#0A1C32"/>
4
+ <line x1="72" y1="80" x2="128" y2="176" stroke="white" stroke-width="15" stroke-linecap="round"/>
5
+ <line x1="184" y1="80" x2="128" y2="176" stroke="#00C4B5" stroke-width="15" stroke-linecap="round"/>
6
+ <circle cx="72" cy="80" r="18" fill="#0A1C32" stroke="white" stroke-width="15"/>
7
+ <circle cx="184" cy="80" r="18" fill="#0A1C32" stroke="white" stroke-width="15"/>
8
+ <circle cx="128" cy="176" r="22" fill="#0A1C32" stroke="#00C4B5" stroke-width="18"/>
9
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="#ec4899" d="M18.37 2.63a3.5 3.5 0 0 1 4.95 4.95l-13 13C9.9 20.9 9.39 21.21 8.84 21.41l-4.5 1.5A1.5 1.5 0 0 1 2.39 20.9l1.5-4.5c.2-.55.51-1.06.94-1.48l13.54-12.3ZM17 4.5l-12 11c-.2.2-.35.45-.45.7l-1 3 3-1c.25-.1.5-.25.7-.45l11.54-11.54-2-2ZM20.83 4a1.5 1.5 0 0 0-2.12-.2l2.32 2.32c.1-.1.2-.24.3-.4Z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="#3b82f6" d="M11.643 1.057a1.75 1.75 0 0 1 1.964.717l4.316 6.474a2.76 2.76 0 0 0 1.258 1.026l3.784 1.514a1.75 1.75 0 0 1 .536 2.871l-3.352 3.353a4.26 4.26 0 0 0-1.121 1.954l-1.047 3.55a1.75 1.75 0 0 1-3.21.439l-2.008-3.013a2.762 2.762 0 0 0-1.427-1.117l-3.64-1.092a1.75 1.75 0 0 1-.72-2.915l3.242-3.243a4.26 4.26 0 0 0 1.121-1.954l1.047-3.55a1.75 1.75 0 0 1 1.257-1.014ZM7.785 16.4l-3.23.97a.25.25 0 0 0-.103.416l2.943 2.943a.25.25 0 0 0 .393-.112l1.62-5.512a2.76 2.76 0 0 0-.726-1.266L5.438 10.6a.25.25 0 0 0-.416.103l.97 3.23a4.26 4.26 0 0 1 .517 3.12l-1.62 5.513c-.158.536.46 1.002.89.674l2.148-1.611a2.76 2.76 0 0 0 1.116-2.181v-.154l-1.258-2.894Zm5.257-2.738L10.5 10.6l3.161-3.16a.25.25 0 0 1 .353 0L17.176 10.6l-4.134 3.062ZM22 13.5v6.25a.75.75 0 0 1-1.5 0V13.5a.75.75 0 0 1 1.5 0Z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="#10b981" d="M12 1L2 5v6c0 5.55 3.84 10.74 10 12 6.16-1.26 10-6.45 10-12V5l-10-4Zm-1.8 14.5l-4-4 1.41-1.41L10.2 12.69l6.59-6.59 1.41 1.41-8 8Z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="#0ea5e9" d="M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46A7.93 7.93 0 0 0 20 12c0-4.42-3.58-8-8-8ZM4 12c0-4.42 3.58-8 8-8v3c-2.76 0-5 2.24-5 5s2.24 5 5 5v3c-4.42 0-8-3.58-8-8Z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="#8b5cf6" d="M4 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H4Zm4.5 9l-3.25 3.25L4 13l2.5-2.5L4 8l1.25-1.25L9 10l-4.5 3.5v2h6v-2h-6v-2.5l4.5 3.5ZM13 14v-2h7v2h-7Z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="#64748b" d="M22.7 19.3L16.2 12.8 19 10l-1.4-1.4c-1.1-1.1-2.9-1.1-4 0l-1.4 1.4c-1.1 1.1-1.1 2.9 0 4l1.4 1.4-2.8 2.8-5.3-5.3 1.4-1.4c1.1-1.1 1.1-2.9 0-4l-1.4-1.4c-1.1-1.1-2.9-1.1-4 0l-1.4 1.4L4.2 13 13 21.8l1.4-1.4c1.1 1.1 2.9 1.1 4 0l1.4-1.4c1.1-1.1 1.1-2.9 0-4l-1.4-1.4 2.8-2.8 5.3 5.3-1.4 1.4c-1.1 1.1-1.1 2.9 0 4l1.4 1.4c1.1 1.1 2.9 1.1 4 0l1.4-1.4l1.1-1.1Z"></path></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="#eab308" d="M12.75 2a.75.75 0 0 1 .74.614l1.5 9.386H18.5a.75.75 0 0 1 .645 1.135l-7.5 12.5a.75.75 0 0 1-1.391-.532l1.391-7.104H8.25a.75.75 0 0 1-.655-1.116l6.5-13.5A.75.75 0 0 1 12.75 2Z"></path></svg>
Binary file
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "vbounce-engine",
3
+ "version": "2.5.1",
4
+ "description": "V-Bounce Engine: Turn your AI coding assistant into a full engineering team through structured SDLC skills.",
5
+ "type": "module",
6
+ "bin": {
7
+ "vbounce": "bin/vbounce.mjs"
8
+ },
9
+ "scripts": {
10
+ "test": "node tests/run.mjs"
11
+ },
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/sandrinio/v-bounce-engine.git"
15
+ },
16
+ "keywords": [
17
+ "ai",
18
+ "coding",
19
+ "agent",
20
+ "claude",
21
+ "cursor",
22
+ "copilot",
23
+ "gemini",
24
+ "codex",
25
+ "sdlc",
26
+ "framework"
27
+ ],
28
+ "author": "sandrinio",
29
+ "license": "MIT",
30
+ "bugs": {
31
+ "url": "https://github.com/sandrinio/v-bounce-engine/issues"
32
+ },
33
+ "homepage": "https://github.com/sandrinio/v-bounce-engine#readme",
34
+ "files": [
35
+ "bin",
36
+ "brains",
37
+ "templates",
38
+ "skills",
39
+ "scripts",
40
+ "docs",
41
+ "VBOUNCE_MANIFEST.md"
42
+ ],
43
+ "dependencies": {
44
+ "commander": "^14.0.3",
45
+ "js-yaml": "^4.1.1",
46
+ "marked": "^17.0.3"
47
+ }
48
+ }