create-harness-vibe-coding 0.1.10 → 0.2.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-CN.md +94 -0
- package/README.md +86 -35
- package/package.json +3 -2
- package/src/generator.js +72 -12
- package/src/index.js +30 -11
- package/templates/common/.claude/agents/architect.md +4 -4
- package/templates/common/.claude/agents/debugger.md +1 -1
- package/templates/common/.claude/agents/docs-researcher.md +4 -4
- package/templates/common/.claude/agents/implementer.md +1 -1
- package/templates/common/.claude/agents/planner.md +3 -3
- package/templates/common/.claude/agents/researcher.md +4 -4
- package/templates/common/.claude/agents/reviewer.md +1 -1
- package/templates/common/.claude/agents/test-writer.md +2 -2
- package/templates/common/.claude/agents/verifier.md +1 -1
- package/templates/common/.claude/commands/wf.md +18 -0
- package/templates/common/.claude/rules/ecc/common.md +11 -10
- package/templates/common/.claude/skills/harness-build-loop/SKILL.md +4 -3
- package/templates/common/.claude/skills/harness-context/SKILL.md +4 -3
- package/templates/common/.claude/skills/harness-lifecycle/SKILL.md +3 -3
- package/templates/common/.claude/skills/harness-research/SKILL.md +4 -4
- package/templates/common/.claude/skills/harness-router/SKILL.md +7 -5
- package/templates/common/.claude/skills/readme-optimizer/SKILL.md +48 -0
- package/templates/common/.claude/skills/subagent-orchestrator/SKILL.md +39 -0
- package/templates/common/.claude/skills/wf-mode/SKILL.md +50 -0
- package/templates/common/AGENTS.md +2 -2
- package/templates/common/CLAUDE.md +40 -73
- package/templates/common/MEMORY.md +32 -27
- package/templates/common/README.md +41 -0
- package/templates/common/SETUP.md +101 -74
- package/templates/common/docs/README.md +71 -54
- package/templates/common/docs/domain/ports.md +4 -1
- package/templates/common/docs/features/_template.md +10 -10
- package/templates/common/docs/harness/PLAN.md +25 -2
- package/templates/common/docs/harness/WF.md +146 -0
- package/templates/common/docs/harness/agent-workflow.md +8 -8
- package/templates/common/docs/harness/architecture.md +31 -7
- package/templates/common/docs/harness/context-loading.md +16 -16
- package/templates/common/docs/harness/data-flow.md +1 -1
- package/templates/common/docs/harness/dispatch.md +5 -2
- package/templates/common/docs/harness/extension.md +14 -14
- package/templates/common/docs/harness/lifecycle.md +2 -2
- package/templates/common/docs/harness/state-machines.md +8 -0
- package/templates/common/docs/harness/subagents.md +176 -0
- package/templates/common/docs/research/PRD.md +1 -1
- package/templates/common/docs/research/README.md +5 -5
- package/templates/common/scripts/validate-harness.mjs +150 -56
- package/templates/optional/skills/browser-e2e/.claude/skills/browser-e2e/SKILL.md +5 -5
- package/templates/optional/skills/browser-e2e/docs/workflows/browser-e2e.md +1 -1
- package/templates/optional/skills/github-pr-review/.claude/skills/github-pr-review/SKILL.md +5 -5
- package/templates/optional/skills/python-backend/.claude/skills/python-backend/SKILL.md +5 -5
- package/templates/optional/skills/ts-react-frontend/.claude/skills/ts-react-frontend/SKILL.md +5 -5
- package/templates/optional/skills/ui-ux-review/.claude/skills/ui-ux-review/SKILL.md +5 -5
package/templates/optional/skills/ts-react-frontend/.claude/skills/ts-react-frontend/SKILL.md
CHANGED
|
@@ -12,8 +12,8 @@ For user-visible changes, typecheck, build, and unit tests are not enough; inclu
|
|
|
12
12
|
|
|
13
13
|
## Docs To Load
|
|
14
14
|
|
|
15
|
-
- `
|
|
16
|
-
- `
|
|
15
|
+
- `Harness/workflows/ts-react-frontend.md`
|
|
16
|
+
- `Harness/PLAN.md`
|
|
17
17
|
- Existing frontend README, package scripts, design system, and test setup.
|
|
18
18
|
|
|
19
19
|
## Required Inputs
|
|
@@ -27,7 +27,7 @@ For user-visible changes, typecheck, build, and unit tests are not enough; inclu
|
|
|
27
27
|
|
|
28
28
|
- Frontend source, styles, tests, and focused docs in task scope.
|
|
29
29
|
- Generated evidence such as screenshots or test reports in existing artifact paths.
|
|
30
|
-
- `
|
|
30
|
+
- `Harness/PLAN.md` when tracking a plan item.
|
|
31
31
|
|
|
32
32
|
## Output Format
|
|
33
33
|
|
|
@@ -36,8 +36,8 @@ Include selectors added or verified for CDP/Playwright/manual checks.
|
|
|
36
36
|
|
|
37
37
|
## PLAN.md Updates
|
|
38
38
|
|
|
39
|
-
Update `
|
|
39
|
+
Update `Harness/PLAN.md` only when executing a tracked task or recording required validation evidence.
|
|
40
40
|
|
|
41
41
|
## dispatch.md Usage
|
|
42
42
|
|
|
43
|
-
Use `
|
|
43
|
+
Use `Harness/dispatch.md` when independent frontend tasks can run in parallel, such as components, tests, and browser checks.
|
|
@@ -11,8 +11,8 @@ Use this skill when reviewing or changing user-facing screens, layouts, visual h
|
|
|
11
11
|
|
|
12
12
|
## Docs To Load
|
|
13
13
|
|
|
14
|
-
- `
|
|
15
|
-
- `
|
|
14
|
+
- `Harness/workflows/ui-ux-review.md`
|
|
15
|
+
- `Harness/PLAN.md`
|
|
16
16
|
- Existing design system, component, or style documentation.
|
|
17
17
|
|
|
18
18
|
## Required Inputs
|
|
@@ -25,7 +25,7 @@ Use this skill when reviewing or changing user-facing screens, layouts, visual h
|
|
|
25
25
|
|
|
26
26
|
- UI code and style files already in scope for the task.
|
|
27
27
|
- Screenshot or audit artifacts in existing evidence folders.
|
|
28
|
-
- `
|
|
28
|
+
- `Harness/PLAN.md` when the review is part of a tracked plan.
|
|
29
29
|
|
|
30
30
|
## Output Format
|
|
31
31
|
|
|
@@ -33,8 +33,8 @@ Return prioritized findings with file or screen references, evidence, recommende
|
|
|
33
33
|
|
|
34
34
|
## PLAN.md Updates
|
|
35
35
|
|
|
36
|
-
Update `
|
|
36
|
+
Update `Harness/PLAN.md` only for tracked review tasks or when recording required evidence.
|
|
37
37
|
|
|
38
38
|
## dispatch.md Usage
|
|
39
39
|
|
|
40
|
-
Use `
|
|
40
|
+
Use `Harness/dispatch.md` only for independent review streams such as separate routes or breakpoints.
|