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.
Files changed (52) hide show
  1. package/README-CN.md +94 -0
  2. package/README.md +86 -35
  3. package/package.json +3 -2
  4. package/src/generator.js +72 -12
  5. package/src/index.js +30 -11
  6. package/templates/common/.claude/agents/architect.md +4 -4
  7. package/templates/common/.claude/agents/debugger.md +1 -1
  8. package/templates/common/.claude/agents/docs-researcher.md +4 -4
  9. package/templates/common/.claude/agents/implementer.md +1 -1
  10. package/templates/common/.claude/agents/planner.md +3 -3
  11. package/templates/common/.claude/agents/researcher.md +4 -4
  12. package/templates/common/.claude/agents/reviewer.md +1 -1
  13. package/templates/common/.claude/agents/test-writer.md +2 -2
  14. package/templates/common/.claude/agents/verifier.md +1 -1
  15. package/templates/common/.claude/commands/wf.md +18 -0
  16. package/templates/common/.claude/rules/ecc/common.md +11 -10
  17. package/templates/common/.claude/skills/harness-build-loop/SKILL.md +4 -3
  18. package/templates/common/.claude/skills/harness-context/SKILL.md +4 -3
  19. package/templates/common/.claude/skills/harness-lifecycle/SKILL.md +3 -3
  20. package/templates/common/.claude/skills/harness-research/SKILL.md +4 -4
  21. package/templates/common/.claude/skills/harness-router/SKILL.md +7 -5
  22. package/templates/common/.claude/skills/readme-optimizer/SKILL.md +48 -0
  23. package/templates/common/.claude/skills/subagent-orchestrator/SKILL.md +39 -0
  24. package/templates/common/.claude/skills/wf-mode/SKILL.md +50 -0
  25. package/templates/common/AGENTS.md +2 -2
  26. package/templates/common/CLAUDE.md +40 -73
  27. package/templates/common/MEMORY.md +32 -27
  28. package/templates/common/README.md +41 -0
  29. package/templates/common/SETUP.md +101 -74
  30. package/templates/common/docs/README.md +71 -54
  31. package/templates/common/docs/domain/ports.md +4 -1
  32. package/templates/common/docs/features/_template.md +10 -10
  33. package/templates/common/docs/harness/PLAN.md +25 -2
  34. package/templates/common/docs/harness/WF.md +146 -0
  35. package/templates/common/docs/harness/agent-workflow.md +8 -8
  36. package/templates/common/docs/harness/architecture.md +31 -7
  37. package/templates/common/docs/harness/context-loading.md +16 -16
  38. package/templates/common/docs/harness/data-flow.md +1 -1
  39. package/templates/common/docs/harness/dispatch.md +5 -2
  40. package/templates/common/docs/harness/extension.md +14 -14
  41. package/templates/common/docs/harness/lifecycle.md +2 -2
  42. package/templates/common/docs/harness/state-machines.md +8 -0
  43. package/templates/common/docs/harness/subagents.md +176 -0
  44. package/templates/common/docs/research/PRD.md +1 -1
  45. package/templates/common/docs/research/README.md +5 -5
  46. package/templates/common/scripts/validate-harness.mjs +150 -56
  47. package/templates/optional/skills/browser-e2e/.claude/skills/browser-e2e/SKILL.md +5 -5
  48. package/templates/optional/skills/browser-e2e/docs/workflows/browser-e2e.md +1 -1
  49. package/templates/optional/skills/github-pr-review/.claude/skills/github-pr-review/SKILL.md +5 -5
  50. package/templates/optional/skills/python-backend/.claude/skills/python-backend/SKILL.md +5 -5
  51. package/templates/optional/skills/ts-react-frontend/.claude/skills/ts-react-frontend/SKILL.md +5 -5
  52. package/templates/optional/skills/ui-ux-review/.claude/skills/ui-ux-review/SKILL.md +5 -5
@@ -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
- - `docs/workflows/ts-react-frontend.md`
16
- - `docs/harness/PLAN.md`
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
- - `docs/harness/PLAN.md` when tracking a plan item.
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 `docs/harness/PLAN.md` only when executing a tracked task or recording required validation evidence.
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 `docs/harness/dispatch.md` when independent frontend tasks can run in parallel, such as components, tests, and browser checks.
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
- - `docs/workflows/ui-ux-review.md`
15
- - `docs/harness/PLAN.md`
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
- - `docs/harness/PLAN.md` when the review is part of a tracked plan.
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 `docs/harness/PLAN.md` only for tracked review tasks or when recording required evidence.
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 `docs/harness/dispatch.md` only for independent review streams such as separate routes or breakpoints.
40
+ Use `Harness/dispatch.md` only for independent review streams such as separate routes or breakpoints.