vibe-coding-master 0.4.0 → 0.4.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.
- package/README.md +1 -1
- package/dist/backend/server.js +8 -8
- package/dist/backend/services/claude-hook-service.js +5 -0
- package/dist/backend/services/harness-service.js +119 -174
- package/dist-frontend/assets/{index-CMuJhDdX.js → index-uYhgIwNK.js} +22 -22
- package/dist-frontend/index.html +1 -1
- package/docs/full-harness-baseline.md +1 -1
- package/docs/product-design.md +1 -1
- package/docs/vcm-cc-best-practices.md +7 -12
- package/package.json +1 -1
package/dist-frontend/index.html
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
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-
|
|
7
|
+
<script type="module" crossorigin src="/assets/index-uYhgIwNK.js"></script>
|
|
8
8
|
<link rel="stylesheet" crossorigin href="/assets/index-kJDZAzjD.css">
|
|
9
9
|
</head>
|
|
10
10
|
<body>
|
|
@@ -130,9 +130,9 @@ Project-scoped runtime state lives in the base repository:
|
|
|
130
130
|
|
|
131
131
|
```text
|
|
132
132
|
<baseRepoRoot>/.ai/vcm/gate-reviewer/session.json
|
|
133
|
+
<baseRepoRoot>/.ai/vcm/harness-engineer/session.json
|
|
133
134
|
<baseRepoRoot>/.ai/vcm/translations/
|
|
134
135
|
<baseRepoRoot>/.ai/vcm/bootstrap/session.json
|
|
135
|
-
<baseRepoRoot>/.ai/vcm/bootstrap/bootstrap.log
|
|
136
136
|
```
|
|
137
137
|
|
|
138
138
|
App-local state lives under `vcmDataDir`:
|
package/docs/product-design.md
CHANGED
|
@@ -825,9 +825,9 @@ Project-scoped local files:
|
|
|
825
825
|
|
|
826
826
|
```text
|
|
827
827
|
.ai/vcm/gate-reviewer/session.json
|
|
828
|
+
.ai/vcm/harness-engineer/session.json
|
|
828
829
|
.ai/vcm/translations/
|
|
829
830
|
.ai/vcm/bootstrap/session.json
|
|
830
|
-
.ai/vcm/bootstrap/bootstrap.log
|
|
831
831
|
```
|
|
832
832
|
|
|
833
833
|
External Claude transcripts:
|
|
@@ -171,8 +171,8 @@ Current runtime files and directories:
|
|
|
171
171
|
.ai/vcm/handoffs/known-issues.md
|
|
172
172
|
.ai/vcm/gate-reviews/
|
|
173
173
|
.ai/vcm/jobs/<job-id>/
|
|
174
|
+
.ai/vcm/harness-engineer/session.json
|
|
174
175
|
.ai/vcm/bootstrap/session.json
|
|
175
|
-
.ai/vcm/bootstrap/bootstrap.log
|
|
176
176
|
```
|
|
177
177
|
|
|
178
178
|
App-local VCM task records live outside the connected repository:
|
|
@@ -402,22 +402,17 @@ during bootstrap.
|
|
|
402
402
|
Important claims should be marked as verified, inferred, unknown, or needing
|
|
403
403
|
human confirmation.
|
|
404
404
|
|
|
405
|
-
VCM should
|
|
406
|
-
|
|
405
|
+
VCM should run bootstrap through the project-scoped `harness-engineer` session,
|
|
406
|
+
not through a separate temporary terminal or invisible background task:
|
|
407
407
|
|
|
408
408
|
- run the deterministic fixed installer first
|
|
409
|
-
- start
|
|
410
|
-
- set `VCM_TASK_REPO_ROOT`, `VCM_HARNESS_BOOTSTRAP=1`, `VCM_SESSION_ID`, and
|
|
411
|
-
`VCM_API_URL`
|
|
409
|
+
- start or resume the `harness-engineer` role in the connected repository root
|
|
412
410
|
- send a prompt that explicitly requires using `vcm-harness-bootstrap`
|
|
413
|
-
-
|
|
414
|
-
-
|
|
415
|
-
- mark bootstrap complete only when project context, generated context,
|
|
416
|
-
project architecture docs, module architecture docs, and testing docs are
|
|
417
|
-
present and non-empty
|
|
411
|
+
- persist the bootstrap run marker under `.ai/vcm/bootstrap/session.json`
|
|
412
|
+
- mark the bootstrap run complete when the `harness-engineer` Stop hook arrives
|
|
418
413
|
|
|
419
414
|
The UI should expose both stages: fixed install status and bootstrap completion
|
|
420
|
-
status. A failed or disconnected
|
|
415
|
+
status. A failed or disconnected Harness Engineer session should be restartable
|
|
421
416
|
without treating project-owned durable docs as VCM-owned harness files.
|
|
422
417
|
|
|
423
418
|
## 12. Final Acceptance
|