vibe-coding-master 0.3.22 → 0.3.24

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 (35) hide show
  1. package/README.md +2 -2
  2. package/dist/backend/adapters/git-adapter.js +53 -0
  3. package/dist/backend/api/artifact-routes.js +1 -28
  4. package/dist/backend/api/codex-translation-routes.js +24 -0
  5. package/dist/backend/api/harness-routes.js +10 -0
  6. package/dist/backend/api/task-routes.js +2 -6
  7. package/dist/backend/gateway/gateway-service.js +3 -16
  8. package/dist/backend/server.js +5 -2
  9. package/dist/backend/services/artifact-service.js +1 -30
  10. package/dist/backend/services/codex-hook-service.js +30 -9
  11. package/dist/backend/services/codex-translation-service.js +17 -40
  12. package/dist/backend/services/harness-service.js +106 -0
  13. package/dist/backend/services/session-service.js +189 -15
  14. package/dist/backend/services/status-service.js +1 -6
  15. package/dist/backend/services/task-service.js +42 -110
  16. package/dist/backend/services/translation-service.js +15 -4
  17. package/dist/backend/templates/handoff.js +3 -3
  18. package/dist/backend/templates/harness/architect-agent.js +3 -2
  19. package/dist/backend/templates/harness/coder-agent.js +6 -1
  20. package/dist/backend/templates/harness/project-manager-agent.js +10 -1
  21. package/dist/backend/templates/harness/vcm-route-message-skill.js +8 -2
  22. package/dist/shared/types/app-settings.js +3 -2
  23. package/dist-frontend/assets/index-CKWy15WL.js +94 -0
  24. package/dist-frontend/assets/index-Cfum1Prr.css +32 -0
  25. package/dist-frontend/index.html +2 -2
  26. package/docs/cc-best-practices.md +1 -1
  27. package/docs/codex-translation-plan.md +41 -37
  28. package/docs/full-harness-baseline.md +0 -1
  29. package/docs/gateway-design.md +9 -13
  30. package/docs/product-design.md +23 -44
  31. package/docs/v0.4-custom-workflow-plan.md +785 -0
  32. package/docs/vcm-cc-best-practices.md +15 -13
  33. package/package.json +1 -1
  34. package/dist-frontend/assets/index-CEB6Bssn.js +0 -95
  35. package/dist-frontend/assets/index-Dmefx9m7.css +0 -32
@@ -164,7 +164,6 @@ Current runtime files and directories:
164
164
  ```text
165
165
  .ai/vcm/handoffs/
166
166
  .ai/vcm/handoffs/messages/
167
- .ai/vcm/handoffs/logs/
168
167
  .ai/vcm/handoffs/architecture-plan.md
169
168
  .ai/vcm/handoffs/review-report.md
170
169
  .ai/vcm/handoffs/docs-sync-report.md
@@ -194,13 +193,14 @@ VCM uses four core roles:
194
193
  - `architect`: technical planner and docs-sync owner. It defines module/file
195
194
  responsibilities, cross-file callable surfaces, public contracts, phase
196
195
  boundaries, risks, and durable docs updates. Before coder work starts,
197
- architect writes the plan with a Scaffold Manifest and materializes only the
198
- minimum necessary code scaffolding with durable contract comments and
199
- `VCM:CODE` placeholders.
196
+ architect writes the plan with a Scaffold Manifest whose rows have stable
197
+ IDs, and materializes only the minimum necessary code scaffolding with
198
+ durable contract comments and `VCM:CODE <ID>` placeholders.
200
199
  - `coder`: implementation owner. It changes production code and baseline unit
201
200
  tests within the approved plan. It follows the architect-defined scaffold,
202
- implements and removes `VCM:CODE` placeholders, follows general coding
203
- standards, and does not change architecture or durable docs.
201
+ implements and removes `VCM:CODE` placeholders, reports Scaffold Completion
202
+ by ID in handoff, follows general coding standards, and does not change
203
+ architecture or durable docs.
204
204
  - `reviewer`: independent validation owner. It reads code as needed, writes or
205
205
  updates tests, owns `docs/TESTING.md`, and decides validation sufficiency.
206
206
  `docs/TESTING.md` must be current validation strategy, not a task log, and
@@ -250,11 +250,11 @@ non-private cross-file callable surfaces, docs impact, risks, and Replan
250
250
  triggers.
251
251
 
252
252
  The Scaffold Manifest carries task-specific file context for the current handoff:
253
- why a file is in scope, what coder should implement, allowed implementation
254
- freedom, expected `VCM:CODE` placeholders, durable code comment needs, proof
255
- points, and Replan triggers. Task context, phase notes, handoff instructions,
256
- temporary rationale, and coder guidance belong in the Scaffold Manifest, not in
257
- source-code comments.
253
+ stable row ID, why a file is in scope, what coder should implement, allowed
254
+ implementation freedom, expected `VCM:CODE` placeholders, durable code comment
255
+ needs, proof points, and Replan triggers. Task context, phase notes, handoff
256
+ instructions, temporary rationale, and coder guidance belong in the Scaffold
257
+ Manifest, not in source-code comments.
258
258
 
259
259
  Code scaffolding materializes that plan in the repository before coder work
260
260
  starts:
@@ -265,11 +265,13 @@ starts:
265
265
  task is complete
266
266
  - new or changed non-private callable surfaces are defined directly in code with
267
267
  signature shape and contract comments
268
- - incomplete implementation bodies are marked with `VCM:CODE`
268
+ - incomplete implementation bodies are marked with `VCM:CODE <Scaffold Manifest ID>`
269
269
 
270
270
  Coder implements the marked placeholders and may add private helpers, but cannot
271
271
  change file responsibilities, callable-surface signatures, or contract intent
272
- without architect replan.
272
+ without architect replan. Coder handoff reports Scaffold Completion by manifest
273
+ ID, including completed markers, remaining markers if any, private helpers
274
+ added, manifest deviations, and whether Replan is needed.
273
275
 
274
276
  Architect may also enter Debug Mode when PM routes bugs, failing tests,
275
277
  build/runtime failures, or unclear defects. Debug Mode allows architect to read
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibe-coding-master",
3
- "version": "0.3.22",
3
+ "version": "0.3.24",
4
4
  "description": "Local GUI session cockpit for Claude Code role sessions.",
5
5
  "type": "module",
6
6
  "files": [