create-harness-vibe-coding 0.8.17 → 0.8.18
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/CHANGELOG.md +9 -0
- package/README-CN.md +2 -0
- package/README.md +2 -0
- package/package.json +1 -1
- package/src/generator.js +613 -97
- package/src/index.js +173 -42
- package/src/prompts.js +18 -0
- package/templates/common/.claude/commands/wf-command-create.md +58 -0
- package/templates/common/.claude/commands/wf-help.md +4 -0
- package/templates/common/.claude/commands/wf-task-archive.md +26 -0
- package/templates/common/.claude/commands/wf-task-list.md +24 -0
- package/templates/common/.claude/commands/wf-task-record.md +24 -0
- package/templates/common/.claude/rules/ecc/common.md +1 -1
- package/templates/common/.claude/skills/wf-agents-docs/SKILL.md +15 -30
- package/templates/common/.claude/skills/wf-command-create/SKILL.md +37 -0
- package/templates/common/.claude/skills/wf-max/SKILL.md +1 -1
- package/templates/common/.claude/skills/wf-review/SKILL.md +29 -2
- package/templates/common/.claude/skills/wf-task-archive/SKILL.md +28 -0
- package/templates/common/.claude/skills/wf-task-list/SKILL.md +28 -0
- package/templates/common/.claude/skills/wf-task-record/SKILL.md +28 -0
- package/templates/common/.harness-version +66 -32
- package/templates/common/.opencode/commands/wf-command-create.md +61 -0
- package/templates/common/.opencode/commands/wf-help.md +4 -0
- package/templates/common/.opencode/commands/wf-task-archive.md +29 -0
- package/templates/common/.opencode/commands/wf-task-list.md +27 -0
- package/templates/common/.opencode/commands/wf-task-record.md +27 -0
- package/templates/common/CLAUDE.md +8 -6
- package/templates/common/Harness/MEMORY.md +9 -0
- package/templates/common/Harness/README.md +17 -36
- package/templates/common/Harness/ownership.manifest.json +87 -2
- package/templates/common/Harness/scripts/task-state.mjs +395 -5
- package/templates/common/Harness/scripts/validate-harness.mjs +411 -46
- package/templates/common/Harness/scripts/wf-remove.mjs +34 -2
- package/templates/common/Harness/specs/guides/SETUP.md +8 -0
- package/templates/common/Harness/specs/protocols/MEMORY_PROTOCOL.md +15 -0
- package/templates/common/Harness/specs/protocols/TASK_ARCHIVE.md +9 -3
- package/templates/common/Harness/specs/runtime/command-surface.json +215 -0
- package/templates/common/Harness/specs/runtime/subagents.md +6 -0
- package/templates/common/Harness/specs/workflows/WF-MAX.md +5 -0
- package/templates/common/Harness/specs/workflows/WF-STATE.md +66 -0
- package/templates/common/Harness/tasks/_template/STATE.json +6 -0
|
@@ -44,6 +44,10 @@ Stack-specific agents can be added after the product shape is known.
|
|
|
44
44
|
- [wf-browser](../.claude/skills/wf-browser/SKILL.md) - built-in browser automation/E2E workflow with controllable UI contracts, Browser Use, Playwright, CDP/network evidence, screenshots, traces, and validation matrix.
|
|
45
45
|
- [tdd](../.claude/skills/tdd/SKILL.md) - acceptance-driven TDD: AC-linked RED tests, real UI clicks for browser-visible behavior, Playwright/CDP evidence, and configured coverage gate.
|
|
46
46
|
- [wf-remove](../.claude/skills/wf-remove/SKILL.md) - safely remove Harness framework files (SAFE/MODIFIED/USER classes), auto-prune empty directories, backup option.
|
|
47
|
+
- [wf-task-record](../.claude/skills/wf-task-record/SKILL.md) - Codex compatibility: use $wf-task-record or /skills wf-task-record to wrap task-state.mjs record.
|
|
48
|
+
- [wf-task-list](../.claude/skills/wf-task-list/SKILL.md) - Codex compatibility: use $wf-task-list or /skills wf-task-list to wrap task-state.mjs list.
|
|
49
|
+
- [wf-task-archive](../.claude/skills/wf-task-archive/SKILL.md) - Codex compatibility: use $wf-task-archive or /skills wf-task-archive to wrap task-state.mjs archive.
|
|
50
|
+
- [wf-command-create](../.claude/skills/wf-command-create/SKILL.md) - Codex compatibility: use $wf-command-create or /skills wf-command-create to update command surfaces from `command-surface.json`.
|
|
47
51
|
|
|
48
52
|
Codex repo-skill mirrors live under `../.agents/skills/` with the same skill names.
|
|
49
53
|
|
|
@@ -51,6 +55,10 @@ Codex repo-skill mirrors live under `../.agents/skills/` with the same skill nam
|
|
|
51
55
|
|
|
52
56
|
- [wf-help](../.claude/commands/wf-help.md) - direct `/wf-help` command that returns a WF command table; Codex mirror skill supports `$wf-help` without entering WF.
|
|
53
57
|
- [wf-update](../.claude/commands/wf-update.md) - direct `/wf-update` command for script-driven update checks, safe apply, conflict handling, and release highlights.
|
|
58
|
+
- [wf-task-record](../.claude/commands/wf-task-record.md) - direct `/wf-task-record` command that wraps `node Harness/scripts/task-state.mjs record`.
|
|
59
|
+
- [wf-task-list](../.claude/commands/wf-task-list.md) - direct `/wf-task-list` command that wraps `node Harness/scripts/task-state.mjs list`.
|
|
60
|
+
- [wf-task-archive](../.claude/commands/wf-task-archive.md) - direct `/wf-task-archive` command that wraps `node Harness/scripts/task-state.mjs archive`.
|
|
61
|
+
- [wf-command-create](../.claude/commands/wf-command-create.md) - direct `/wf-command-create` command for task-backed wf-* command surface changes.
|
|
54
62
|
|
|
55
63
|
Stack-specific skills can be added after the product shape is known.
|
|
56
64
|
|
|
@@ -79,6 +87,7 @@ Located under `.claude/rules/ecc/`, auto-loaded by the CC engine:
|
|
|
79
87
|
- [Context loading protocol](specs/runtime/context-loading.md)
|
|
80
88
|
- [Dispatch protocol](specs/runtime/dispatch.md)
|
|
81
89
|
- [Subagent orchestration](specs/runtime/subagents.md)
|
|
90
|
+
- [Command surface registry](specs/runtime/command-surface.json)
|
|
82
91
|
- [Extension contract](specs/guides/extension.md)
|
|
83
92
|
- [Architecture docs](project/architecture.md)
|
|
84
93
|
- [Agent workflow](specs/runtime/agent-workflow.md)
|
|
@@ -4,7 +4,7 @@ Purpose: route humans and agents to the smallest useful context. `CLAUDE.md` is
|
|
|
4
4
|
|
|
5
5
|
Default load: `CLAUDE.md`. For workflow commands (`/wf`, `/wf-max`, `/wf-auto`, `/wf-review`, `/wf-learn`, `/wf-readme`, `/wf-remove`, `/wf-browser`, `/wf-auto-spark`), also load `Harness/MEMORY.md` (index only per Memory Preflight), this file, and `Harness/PROGRESS.md` when work is active.
|
|
6
6
|
|
|
7
|
-
`/wf-help`, `$wf-help`, `/skills wf-help`, `/wf-update`, `$wf-update`, and `/skills wf-
|
|
7
|
+
`/wf-help`, `$wf-help`, `/skills wf-help`, `/wf-update`, `$wf-update`, `/skills wf-update`, `/wf-task-record`, `$wf-task-record`, `/skills wf-task-record`, `/wf-task-list`, `$wf-task-list`, `/skills wf-task-list`, `/wf-task-archive`, `$wf-task-archive`, `/skills wf-task-archive`, `/wf-command-create`, `$wf-command-create`, and `/skills wf-command-create` are **direct/compat commands**: skip the router, do NOT load `Harness/MEMORY.md`, do NOT enter WF. Claude Code and OpenCode execute direct command files; Codex uses the matching compatibility skill shim.
|
|
8
8
|
|
|
9
9
|
Do not read the whole `Harness/` tree.
|
|
10
10
|
|
|
@@ -23,9 +23,12 @@ On session start (new window, reopen, resume):
|
|
|
23
23
|
- blocked — what's blocking?
|
|
24
24
|
- nextAction — what to do next
|
|
25
25
|
4. Do NOT discover context by reading all task directories. Use the active pointer.
|
|
26
|
-
5.
|
|
26
|
+
5. Check `links.dependsOn` and `links.blocks` in STATE.json for cross-task
|
|
27
|
+
dependency resolution — read only the listed tasks' STATE.json, not all
|
|
28
|
+
task capsules.
|
|
29
|
+
6. Direct simple tasks may skip STATE/PLAN/PROGRESS unless the user says "continue"/"resume".
|
|
27
30
|
|
|
28
|
-
See `Harness/specs/workflows/WF-STATE.md` for the full state machine contract and enums.
|
|
31
|
+
See `Harness/specs/workflows/WF-STATE.md` for the full state machine contract and enums. `/wf-task-list` exposes dependencies and open tasks.
|
|
29
32
|
|
|
30
33
|
## Direct Mode (Degradation Path)
|
|
31
34
|
|
|
@@ -35,9 +38,9 @@ Complex work may use direct planning, task capsules, tests, and subagents withou
|
|
|
35
38
|
|
|
36
39
|
Escalate to the router (next section) only when:
|
|
37
40
|
- User explicitly invokes `/wf`, `/wf-max`, `$wf`, `$wf-max`, `/skills wf`, `/skills wf-max`, or says `wf` / `wf-max`
|
|
38
|
-
- User invokes another workflow `/wf-*`, `$wf-*`, or `/skills wf-*` command, excluding
|
|
41
|
+
- User invokes another workflow `/wf-*`, `$wf-*`, or `/skills wf-*` command, excluding direct/compat commands listed in `Harness/specs/runtime/command-surface.json`
|
|
39
42
|
|
|
40
|
-
|
|
43
|
+
Direct/compat commands are executed immediately without router load.
|
|
41
44
|
|
|
42
45
|
## 0-1 Flow
|
|
43
46
|
|
|
@@ -119,6 +122,10 @@ Routing priority: **direct mode is the default** when no explicit WF token is pr
|
|
|
119
122
|
| Harness readiness check | validate, readiness, placeholder, missing file, release gate | `Harness/scripts/validate-harness.mjs`, `Harness/scripts/validate-harness.mjs --strict` | structural install check; strict bootstrap/release placeholder check |
|
|
120
123
|
| Need harness update | /wf-update, $wf-update, update, check for updates, harness version | `.claude/commands/wf-update.md`, `.opencode/commands/wf-update.md`, `Harness/.harness-version`, `Harness/scripts/wf-update-check.mjs`; Codex fallback: `.claude/skills/wf-update/SKILL.md` | script-driven comparison, SAFE/CONFLICT/PRESERVE classification, changelog release highlights, user decides conflicts |
|
|
121
124
|
| Need harness removal | /wf-remove, $wf-remove, wf remove, remove harness, uninstall harness | `.claude/skills/wf-remove/SKILL.md`, `.agents/skills/wf-remove/SKILL.md`, `Harness/scripts/wf-remove.mjs` | safe removal plan: auto-remove SAFE, confirm MODIFIED, never touch USER DATA |
|
|
125
|
+
| Need task record | /wf-task-record, $wf-task-record, /skills wf-task-record, task record, record work, log progress | `tasks/<id>/PROGRESS.md`, `tasks/<id>/PLAN.md` | progress record, decision log, evidence pointer; direct/compat — do NOT load Harness/MEMORY.md |
|
|
126
|
+
| Need task list | /wf-task-list, $wf-task-list, /skills wf-task-list, list tasks, show tasks, task table, dependency view | `Harness/PROGRESS.md`, `Harness/specs/workflows/WF-STATE.md` | task index, dependency graph, open tasks list; direct/compat — do NOT load Harness/MEMORY.md |
|
|
127
|
+
| Need task archive | /wf-task-archive, $wf-task-archive, /skills wf-task-archive, archive task, cleanup tasks | `Harness/scripts/task-state.mjs`, `Harness/specs/protocols/TASK_ARCHIVE.md` | archive execution plan; direct/compat — do NOT load Harness/MEMORY.md |
|
|
128
|
+
| Need command surface change | /wf-command-create, $wf-command-create, /skills wf-command-create, add command, command surface | `.claude/commands/wf-command-create.md`, `Harness/specs/runtime/command-surface.json` | task-backed command creation checklist; direct/compat — do NOT load Harness/MEMORY.md |
|
|
122
129
|
|
|
123
130
|
## Gates
|
|
124
131
|
|
|
@@ -145,43 +152,17 @@ Routing priority: **direct mode is the default** when no explicit WF token is pr
|
|
|
145
152
|
- Run `node Harness/scripts/validate-harness.mjs` for install-complete scaffold structure; run `node Harness/scripts/validate-harness.mjs --strict` only after bootstrap resolves project-fact placeholders and before release.
|
|
146
153
|
- If a doc still has `{{...}}`, treat that section as a template, not project fact.
|
|
147
154
|
|
|
148
|
-
## Doc Map
|
|
149
|
-
|
|
150
|
-
| Category | Files |
|
|
151
|
-
|----------|-------|
|
|
152
|
-
| **Router + Index** | `README.md`, `MEMORY.md`, `PROGRESS.md` |
|
|
153
|
-
| **Task Capsule** | `tasks/<id>/PROGRESS.md`, `tasks/<id>/PLAN.md`, `tasks/<id>/STATE.json`, `tasks/_template/` |
|
|
154
|
-
| **Workflows** | `specs/workflows/WF.md`, `specs/workflows/WF-KERNEL.md`, `specs/workflows/WF-STATE.md`, `specs/workflows/WF-MAX.md`, `specs/workflows/WF-AUTO.md`, `specs/workflows/WF-AUTO-SPARK.md` |
|
|
155
|
-
| **Protocols** | `specs/protocols/ACCEPTANCE_PROTOCOL.md`, `specs/protocols/AGENT_ISOLATION.md`, `specs/protocols/HARNESS_BRIDGE.md`, `specs/protocols/DEBUG_PROTOCOL.md`, `specs/protocols/MEMORY_PROTOCOL.md` |
|
|
156
|
-
| **Guides** | `specs/guides/ECC-GUIDE.md`, `specs/guides/lifecycle.md`, `specs/guides/extension.md`, `project/architecture.md`, `specs/protocols/TDD-GUIDE.md`, `specs/protocols/TASK_ARCHIVE.md` |
|
|
157
|
-
| **Orchestration** | `specs/runtime/subagents.md`, `specs/runtime/context-loading.md`, `specs/runtime/dispatch.md`, `specs/runtime/agent-workflow.md`, `specs/workflows/WF-STATE.md` |
|
|
158
|
-
| **Research** | `research/README.md`, `research/PRD.md`, `research/research-results.md` |
|
|
159
|
-
| **Acceptance Templates** | `templates/PRD.template.md`, `templates/ACCEPTANCE.template.md`, `templates/UI_CONTRACT.template.md`, `templates/API_CONTRACT.template.md`, `templates/TEST_PLAN.template.md`, `templates/PLAYWRIGHT_SPEC.template.ts`, `templates/VALIDATION_REPORT.template.md` |
|
|
160
|
-
| **Memory** | `memory/tool-usage-reflections.md`, `memory/user-corrections-preferences.md`, `memory/agent-lessons-patterns.md` |
|
|
161
|
-
| **Scripts** | `scripts/validate-harness.mjs`, `scripts/context-budget.mjs`, `scripts/l2-cache-telemetry.mjs`, `scripts/wf-update-check.mjs`, `scripts/wf-remove.mjs`, `scripts/task-state.mjs`, `scripts/archive-tasks.mjs` |
|
|
162
|
-
| **Runtime + Config** | `.harness-version`, `ownership.manifest.json`, `settings.json` |
|
|
163
|
-
| **Agents + Skills** | `.claude/agents/*`, `.claude/skills/*`, `.agents/skills/*` |
|
|
164
|
-
| **Direct Commands** | `.claude/commands/wf-help.md`, `.claude/commands/wf-update.md`, `.opencode/commands/wf-help.md`, `.opencode/commands/wf-update.md` |
|
|
165
|
-
| **Workflow Command Wrappers** | `.claude/commands/wf*.md`, `.opencode/commands/wf*.md` |
|
|
166
|
-
|
|
167
155
|
## Direct Commands
|
|
168
156
|
|
|
169
157
|
| Command | Purpose |
|
|
170
158
|
|---|---|
|
|
171
159
|
| `/wf-help`, `$wf-help` | Returns a table of all Harness WF commands, usage, and purpose. Claude Code/OpenCode use direct command files; Codex uses the minimal `wf-help` skill shim. It never starts WF. |
|
|
172
160
|
| `/wf-update`, `$wf-update` | Script-driven harness update: fetch + compare + apply + report release highlights. Direct command for Claude Code and OpenCode; skill path available for Codex compatibility. |
|
|
161
|
+
| `/wf-task-record`, `$wf-task-record` | Record progress, decisions, and evidence to the active task capsule. Direct/compat — no Harness/MEMORY.md load. |
|
|
162
|
+
| `/wf-task-list`, `$wf-task-list` | List tasks with dependency view, open tasks filter, and archive summary. Direct/compat — no Harness/MEMORY.md load. |
|
|
163
|
+
| `/wf-task-archive`, `$wf-task-archive` | Archive completed/verified task capsules. Direct/compat — no Harness/MEMORY.md load. |
|
|
164
|
+
| `/wf-command-create`, `$wf-command-create` | Create or modify wf-* command surfaces from `command-surface.json`. Direct/compat — creates/resumes a task capsule, no Harness/MEMORY.md load. |
|
|
173
165
|
|
|
174
166
|
## Skill Commands
|
|
175
167
|
|
|
176
|
-
|
|
177
|
-
|---|---|---|
|
|
178
|
-
| `/wf <task>` | `$wf <task>` | Tiered WF: WF-Light (low-risk, planner/test/verifier), WF-Standard (multi-file, compact ACs), WF-Full (high-risk/cross-layer, full role chain) |
|
|
179
|
-
| `/wf-max [task]` | `$wf-max [task]` | WF-Max-Useful default (fan-out only where independent), WF-Max-Strict override (unconditional fan-out) |
|
|
180
|
-
| `/wf-auto` | `$wf-auto` | Perpetual adaptive auto-optimization: dynamic probes, risk obligations, evidence-based exhaustion |
|
|
181
|
-
| `/wf-auto-spark` | `$wf-auto-spark` | Perpetual inspiration: spark search, roadmap-anchored, <=50% deviation guard, never auto-stops |
|
|
182
|
-
| `/wf-review [focus]` | `$wf-review [focus]` | Peer CLI review via Claude/Codex/OpenCode, or installed reviewer subagent fallback |
|
|
183
|
-
| `/wf-learn` | `$wf-learn` | Force learning cycle: context-master -> memory-master |
|
|
184
|
-
| `/wf-browser [task]` | `$wf-browser [task]` | Built-in AI-driven browser automation for E2E testing |
|
|
185
|
-
| `/wf-readme [task]` | `$wf-readme [task]` | README preservation, merge, and documentation improvement workflow |
|
|
186
|
-
| `/wf-update` | `$wf-update` | Script-driven harness update: fetch + compare + apply + report release highlights |
|
|
187
|
-
| `/wf-remove` | `$wf-remove` | Safe harness removal: auto-delete SAFE, confirm MODIFIED, preserve USER DATA |
|
|
168
|
+
Workflow commands: `/wf`, `/wf-max`, `/wf-auto`, `/wf-auto-spark`, `/wf-review`, `/wf-learn`, `/wf-browser`, `/wf-readme`, `/wf-remove` with matching Codex `$...` and `/skills ...` forms. They load `Harness/MEMORY.md` and follow the registered task capsule policy. `/wf-update` remains direct.
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
|
-
"generator": "0.8.
|
|
3
|
+
"generator": "0.8.18",
|
|
4
4
|
"source": "https://raw.githubusercontent.com/LiWeny16/create-harness-vibe-coding/main/templates/common/",
|
|
5
|
-
"generated": "2026-07-
|
|
5
|
+
"generated": "2026-07-29T06:33:44.000Z",
|
|
6
6
|
"preserve": [
|
|
7
7
|
"Harness/PROGRESS.md",
|
|
8
8
|
"Harness/tasks/**",
|
|
@@ -196,6 +196,11 @@
|
|
|
196
196
|
"kind": "skill",
|
|
197
197
|
"overwrite": "safe"
|
|
198
198
|
},
|
|
199
|
+
{
|
|
200
|
+
"path": ".agents/skills/wf-command-create/SKILL.md",
|
|
201
|
+
"kind": "skill",
|
|
202
|
+
"overwrite": "safe"
|
|
203
|
+
},
|
|
199
204
|
{
|
|
200
205
|
"path": ".agents/skills/wf-help/SKILL.md",
|
|
201
206
|
"kind": "skill",
|
|
@@ -226,6 +231,21 @@
|
|
|
226
231
|
"kind": "skill",
|
|
227
232
|
"overwrite": "safe"
|
|
228
233
|
},
|
|
234
|
+
{
|
|
235
|
+
"path": ".agents/skills/wf-task-archive/SKILL.md",
|
|
236
|
+
"kind": "skill",
|
|
237
|
+
"overwrite": "safe"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"path": ".agents/skills/wf-task-list/SKILL.md",
|
|
241
|
+
"kind": "skill",
|
|
242
|
+
"overwrite": "safe"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"path": ".agents/skills/wf-task-record/SKILL.md",
|
|
246
|
+
"kind": "skill",
|
|
247
|
+
"overwrite": "safe"
|
|
248
|
+
},
|
|
229
249
|
{
|
|
230
250
|
"path": ".agents/skills/wf-update/SKILL.md",
|
|
231
251
|
"kind": "skill",
|
|
@@ -346,6 +366,11 @@
|
|
|
346
366
|
"kind": "command",
|
|
347
367
|
"overwrite": "safe"
|
|
348
368
|
},
|
|
369
|
+
{
|
|
370
|
+
"path": ".claude/commands/wf-command-create.md",
|
|
371
|
+
"kind": "command",
|
|
372
|
+
"overwrite": "safe"
|
|
373
|
+
},
|
|
349
374
|
{
|
|
350
375
|
"path": ".claude/commands/wf-help.md",
|
|
351
376
|
"kind": "command",
|
|
@@ -376,6 +401,21 @@
|
|
|
376
401
|
"kind": "command",
|
|
377
402
|
"overwrite": "safe"
|
|
378
403
|
},
|
|
404
|
+
{
|
|
405
|
+
"path": ".claude/commands/wf-task-archive.md",
|
|
406
|
+
"kind": "command",
|
|
407
|
+
"overwrite": "safe"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"path": ".claude/commands/wf-task-list.md",
|
|
411
|
+
"kind": "command",
|
|
412
|
+
"overwrite": "safe"
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"path": ".claude/commands/wf-task-record.md",
|
|
416
|
+
"kind": "command",
|
|
417
|
+
"overwrite": "safe"
|
|
418
|
+
},
|
|
379
419
|
{
|
|
380
420
|
"path": ".claude/commands/wf-update.md",
|
|
381
421
|
"kind": "command",
|
|
@@ -426,6 +466,11 @@
|
|
|
426
466
|
"kind": "skill",
|
|
427
467
|
"overwrite": "safe"
|
|
428
468
|
},
|
|
469
|
+
{
|
|
470
|
+
"path": ".claude/skills/wf-command-create/SKILL.md",
|
|
471
|
+
"kind": "skill",
|
|
472
|
+
"overwrite": "safe"
|
|
473
|
+
},
|
|
429
474
|
{
|
|
430
475
|
"path": ".claude/skills/wf-help/SKILL.md",
|
|
431
476
|
"kind": "skill",
|
|
@@ -456,6 +501,21 @@
|
|
|
456
501
|
"kind": "skill",
|
|
457
502
|
"overwrite": "safe"
|
|
458
503
|
},
|
|
504
|
+
{
|
|
505
|
+
"path": ".claude/skills/wf-task-archive/SKILL.md",
|
|
506
|
+
"kind": "skill",
|
|
507
|
+
"overwrite": "safe"
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
"path": ".claude/skills/wf-task-list/SKILL.md",
|
|
511
|
+
"kind": "skill",
|
|
512
|
+
"overwrite": "safe"
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"path": ".claude/skills/wf-task-record/SKILL.md",
|
|
516
|
+
"kind": "skill",
|
|
517
|
+
"overwrite": "safe"
|
|
518
|
+
},
|
|
459
519
|
{
|
|
460
520
|
"path": ".claude/skills/wf-update/SKILL.md",
|
|
461
521
|
"kind": "skill",
|
|
@@ -586,6 +646,11 @@
|
|
|
586
646
|
"kind": "command",
|
|
587
647
|
"overwrite": "safe"
|
|
588
648
|
},
|
|
649
|
+
{
|
|
650
|
+
"path": ".opencode/commands/wf-command-create.md",
|
|
651
|
+
"kind": "command",
|
|
652
|
+
"overwrite": "safe"
|
|
653
|
+
},
|
|
589
654
|
{
|
|
590
655
|
"path": ".opencode/commands/wf-help.md",
|
|
591
656
|
"kind": "command",
|
|
@@ -616,6 +681,21 @@
|
|
|
616
681
|
"kind": "command",
|
|
617
682
|
"overwrite": "safe"
|
|
618
683
|
},
|
|
684
|
+
{
|
|
685
|
+
"path": ".opencode/commands/wf-task-archive.md",
|
|
686
|
+
"kind": "command",
|
|
687
|
+
"overwrite": "safe"
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
"path": ".opencode/commands/wf-task-list.md",
|
|
691
|
+
"kind": "command",
|
|
692
|
+
"overwrite": "safe"
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
"path": ".opencode/commands/wf-task-record.md",
|
|
696
|
+
"kind": "command",
|
|
697
|
+
"overwrite": "safe"
|
|
698
|
+
},
|
|
619
699
|
{
|
|
620
700
|
"path": ".opencode/commands/wf-update.md",
|
|
621
701
|
"kind": "command",
|
|
@@ -746,6 +826,11 @@
|
|
|
746
826
|
"kind": "doc",
|
|
747
827
|
"overwrite": "safe"
|
|
748
828
|
},
|
|
829
|
+
{
|
|
830
|
+
"path": "Harness/specs/runtime/command-surface.json",
|
|
831
|
+
"kind": "config",
|
|
832
|
+
"overwrite": "safe"
|
|
833
|
+
},
|
|
749
834
|
{
|
|
750
835
|
"path": "Harness/specs/runtime/context-loading.md",
|
|
751
836
|
"kind": "doc",
|