vibe-coding-master 0.2.10 → 0.2.11
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 +5 -4
- package/dist/backend/cli/install-vcm-harness.js +708 -0
- package/dist/backend/services/harness-service.js +1 -1
- package/dist/backend/templates/harness/architect-agent.js +32 -4
- package/dist/backend/templates/harness/claude-root.js +2 -2
- package/dist/backend/templates/harness/coder-agent.js +19 -0
- package/dist/backend/templates/harness/project-manager-agent.js +1 -1
- package/dist/backend/templates/harness/reviewer-agent.js +10 -1
- package/dist/backend/templates/harness/vcm-harness-bootstrap-skill.js +3 -1
- package/dist-frontend/assets/{index-DDrcJLOG.js → index-CT20u9Fk.js} +38 -38
- package/dist-frontend/index.html +1 -1
- package/docs/full-harness-baseline.md +5 -5
- package/docs/product-design.md +14 -7
- package/docs/vcm-cc-best-practices.md +54 -8
- package/package.json +1 -1
- package/scripts/install-vcm-harness.mjs +37 -1418
package/README.md
CHANGED
|
@@ -151,9 +151,9 @@ The recommended flow is:
|
|
|
151
151
|
|
|
152
152
|
```text
|
|
153
153
|
project-manager
|
|
154
|
-
-> architect architecture plan
|
|
155
|
-
-> coder implementation and
|
|
156
|
-
-> reviewer independent
|
|
154
|
+
-> architect architecture plan and code scaffolding
|
|
155
|
+
-> coder implementation and baseline unit checks
|
|
156
|
+
-> reviewer independent validation
|
|
157
157
|
-> architect docs sync / architecture drift check
|
|
158
158
|
-> project-manager final acceptance, commit, and PR
|
|
159
159
|
```
|
|
@@ -215,7 +215,7 @@ The left sidebar is intentionally compact and collapsible:
|
|
|
215
215
|
- `New Task`: one `task name` input.
|
|
216
216
|
- `Tasks`: task list and task status.
|
|
217
217
|
|
|
218
|
-
All sidebar sections are collapsed by default. When no task is selected, `Repository Path` opens by default.
|
|
218
|
+
All sidebar sections are collapsed by default. When no task is selected, `Repository Path` opens by default. The sidebar behaves as a single-open accordion: opening one section closes the previously open section, and clicking the open section collapses it.
|
|
219
219
|
|
|
220
220
|
Opening `Connected Repository` refreshes the base repo status through the
|
|
221
221
|
backend. VCM does not poll it continuously. The `Pull` button runs
|
|
@@ -393,6 +393,7 @@ Translation behavior:
|
|
|
393
393
|
- Translation events are cached under the task runtime repo at `.ai/vcm/translation/<task>/<role>/<session-id>.jsonl` and delivered to the frontend through HTTP polling.
|
|
394
394
|
- The polling cursor is the next expected seq: `after=18` acknowledges seq `1..17` and returns seq `18+`; there is no snapshot mismatch error.
|
|
395
395
|
- The translation panel retains the most recent 500 entries per role session in frontend/backend memory. Older entries are pruned from the live panel state and event cache to keep long sessions responsive.
|
|
396
|
+
- When new translation events arrive, the active translation panel automatically scrolls to the bottom so the latest output, retry result, or conversation boundary is visible.
|
|
396
397
|
- Failed output translations are tracked in a backend failure list. When failures exist, the panel shows `Ignore N` and `Retry N`; retry reuses the original entry id so the failed row is replaced by the normal translating/translated flow. If an old failed entry is pruned by the 500-entry cap, its failure-list item is removed too.
|
|
397
398
|
- Assistant prose is shown as English source while translating, then replaced by the translated Chinese result.
|
|
398
399
|
- Assistant prose renders Markdown in the panel, including headings, lists, code fences, tables, and links.
|