vibe-coding-master 0.4.4 → 0.4.6
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/dist/backend/adapters/git-adapter.js +36 -0
- package/dist/backend/api/harness-routes.js +5 -3
- package/dist/backend/services/harness-service.js +72 -17
- package/dist/backend/services/session-service.js +34 -24
- package/dist/backend/services/translation-service.js +1 -0
- package/dist/backend/services/translation-worker-service.js +30 -3
- package/dist/backend/templates/harness/harness-engineer-agent.js +2 -0
- package/dist/backend/templates/harness/vcm-harness-bootstrap-skill.js +11 -1
- package/dist-frontend/assets/{index-12kW1cl6.css → index-CYmBA_er.css} +1 -1
- package/dist-frontend/assets/{index-Bck3Mfz8.js → index-CeiRFzg5.js} +42 -41
- package/dist-frontend/index.html +2 -2
- package/docs/product-design.md +4 -1
- package/docs/vcm-cc-best-practices.md +3 -2
- package/package.json +1 -1
package/dist-frontend/index.html
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>VibeCodingMaster</title>
|
|
7
|
-
<script type="module" crossorigin src="/assets/index-
|
|
8
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
7
|
+
<script type="module" crossorigin src="/assets/index-CeiRFzg5.js"></script>
|
|
8
|
+
<link rel="stylesheet" crossorigin href="/assets/index-CYmBA_er.css">
|
|
9
9
|
</head>
|
|
10
10
|
<body>
|
|
11
11
|
<div id="root"></div>
|
package/docs/product-design.md
CHANGED
|
@@ -502,7 +502,7 @@ For `.gitignore`, VCM uses hash comments:
|
|
|
502
502
|
|
|
503
503
|
VCM must preserve all user-authored content outside the managed block.
|
|
504
504
|
|
|
505
|
-
Harness changes are applied only in the active task worktree. VCM refuses to run
|
|
505
|
+
Harness changes are applied only in the active task worktree. For deterministic fixed-harness updates, VCM refuses to run when that worktree has Git-visible changes, writes the harness update, stages the changed harness files, and immediately creates a harness commit. For AI bootstrap work, Harness Engineer runs in the active task worktree and creates its own commit; VCM tracks status and shows the latest active task commit diff for review.
|
|
506
506
|
|
|
507
507
|
Role sessions get VCM behavior from `CLAUDE.md` and `.claude/agents/*.md`, not from a pasted startup context.
|
|
508
508
|
|
|
@@ -830,6 +830,9 @@ Project-scoped local files:
|
|
|
830
830
|
.ai/vcm/bootstrap/session.json
|
|
831
831
|
```
|
|
832
832
|
|
|
833
|
+
Project-scoped tool sessions keep their durable state in the base repository,
|
|
834
|
+
but their execution cwd is the active task worktree.
|
|
835
|
+
|
|
833
836
|
External Claude transcripts:
|
|
834
837
|
|
|
835
838
|
```text
|
|
@@ -405,10 +405,11 @@ VCM should run bootstrap through the project-scoped `harness-engineer` session,
|
|
|
405
405
|
not through a separate temporary terminal or invisible background task:
|
|
406
406
|
|
|
407
407
|
- run the deterministic fixed installer first
|
|
408
|
-
- start or resume the `harness-engineer` role
|
|
409
|
-
- send a prompt that explicitly requires using `vcm-harness-bootstrap`
|
|
408
|
+
- start or resume the project-scoped `harness-engineer` role with execution cwd set to the active task worktree
|
|
409
|
+
- send a prompt that explicitly requires using `vcm-harness-bootstrap` and creating the bootstrap commit
|
|
410
410
|
- persist the bootstrap run marker under `.ai/vcm/bootstrap/session.json`
|
|
411
411
|
- mark the bootstrap run complete when the `harness-engineer` Stop hook arrives
|
|
412
|
+
- do not create the bootstrap commit in VCM; Harness Engineer owns that commit
|
|
412
413
|
|
|
413
414
|
The UI should expose both stages: fixed install status and bootstrap completion
|
|
414
415
|
status. A failed or disconnected Harness Engineer session should be restartable
|