create-harness-vibe-coding 0.8.7 → 0.8.8
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 +157 -105
- package/README.md +160 -244
- package/bin/create-harness-vibe-coding.js +2 -2
- package/docs/images/harness-architecture-light.png +0 -0
- package/docs/images/harness-architecture.drawio +164 -0
- package/package.json +46 -44
- package/src/generator.js +5 -5
- package/src/index.js +14 -9
- package/src/prompts.js +37 -37
- package/templates/common/.claude/agents/architect-manager.md +45 -45
- package/templates/common/.claude/agents/context-master.md +75 -75
- package/templates/common/.claude/agents/debugger.md +41 -41
- package/templates/common/.claude/agents/explore-manager.md +41 -41
- package/templates/common/.claude/agents/implement-manager.md +49 -49
- package/templates/common/.claude/agents/implementer.md +40 -40
- package/templates/common/.claude/agents/memory-master.md +64 -64
- package/templates/common/.claude/agents/planner.md +34 -34
- package/templates/common/.claude/agents/researcher.md +41 -41
- package/templates/common/.claude/agents/review-manager.md +56 -56
- package/templates/common/.claude/agents/verifier.md +29 -29
- package/templates/common/.claude/commands/wf-help.md +1 -1
- package/templates/common/.claude/rules/ecc/common.md +44 -44
- package/templates/common/.claude/skills/wf-auto/SKILL.md +8 -6
- package/templates/common/.claude/skills/wf-readme/SKILL.md +49 -49
- package/templates/common/.claude/skills/wf-remove/SKILL.md +7 -7
- package/templates/common/.harness-version +54 -14
- package/templates/common/.opencode/agents/architect-manager.md +52 -0
- package/templates/common/.opencode/agents/architect.md +35 -0
- package/templates/common/.opencode/agents/context-master.md +81 -0
- package/templates/common/.opencode/agents/debugger.md +43 -0
- package/templates/common/.opencode/agents/docs-researcher.md +42 -0
- package/templates/common/.opencode/agents/explore-manager.md +49 -0
- package/templates/common/.opencode/agents/implement-manager.md +56 -0
- package/templates/common/.opencode/agents/implementer.md +42 -0
- package/templates/common/.opencode/agents/memory-master.md +70 -0
- package/templates/common/.opencode/agents/planner.md +38 -0
- package/templates/common/.opencode/agents/reflector.md +39 -0
- package/templates/common/.opencode/agents/researcher.md +42 -0
- package/templates/common/.opencode/agents/review-manager.md +63 -0
- package/templates/common/.opencode/agents/reviewer.md +37 -0
- package/templates/common/.opencode/agents/tdd-guide.md +83 -0
- package/templates/common/.opencode/agents/test-writer.md +54 -0
- package/templates/common/.opencode/agents/verifier.md +37 -0
- package/templates/common/.opencode/commands/wf-help.md +23 -0
- package/templates/common/CLAUDE.md +85 -88
- package/templates/common/Harness/PROGRESS.md +17 -17
- package/templates/common/Harness/README.md +16 -5
- package/templates/common/Harness/WF-AUTO-ANGLES.md +170 -0
- package/templates/common/Harness/WF-AUTO-SPARK.md +5 -5
- package/templates/common/Harness/WF-AUTO.md +85 -96
- package/templates/common/Harness/architecture.md +124 -124
- package/templates/common/Harness/context-loading.md +111 -111
- package/templates/common/Harness/extension.md +66 -66
- package/templates/common/Harness/lifecycle.md +20 -20
- package/templates/common/Harness/research/PRD.md +56 -56
- package/templates/common/Harness/research/README.md +169 -169
- package/templates/common/Harness/research/research-results.md +66 -66
- package/templates/common/Harness/subagents.md +208 -208
- package/templates/common/Harness/tasks/_template/ARTIFACTS.md +2 -2
- package/templates/common/Harness/tasks/_template/NOTES.md +2 -2
- package/templates/common/MEMORY.md +1 -1
- package/templates/common/README.md +36 -36
- package/templates/common/memory/agent-lessons-patterns.md +21 -21
- package/templates/common/memory/tool-usage-reflections.md +21 -21
- package/templates/common/memory/user-corrections-preferences.md +21 -21
- package/templates/common/opencode.json +19 -0
- package/templates/common/scripts/scan-clean.mjs +415 -415
- package/templates/common/scripts/validate-harness.mjs +274 -245
- package/templates/common/scripts/wf-remove.mjs +56 -39
- package/templates/common/scripts/wf-update-check.mjs +599 -599
- package/templates/optional/catalog.json +41 -33
- package/templates/optional/skills/browser-e2e/.claude/skills/wf-browser/SKILL.md +193 -193
- package/templates/optional/skills/browser-e2e/Harness/workflows/browser-e2e.md +48 -48
- package/templates/optional/skills/github-pr-review/Harness/workflows/github-pr-review.md +28 -28
- package/templates/optional/skills/python-backend/Harness/workflows/python-backend.md +34 -34
- package/templates/optional/skills/ts-react-frontend/Harness/workflows/ts-react-frontend.md +34 -34
- package/templates/optional/skills/ui-ux-review/Harness/workflows/ui-ux-review.md +26 -26
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
# Python Backend Workflow
|
|
2
|
-
|
|
3
|
-
## Required Evidence
|
|
4
|
-
|
|
5
|
-
- Python executable, version, and dependency manager detected.
|
|
6
|
-
- Unit/integration test command and result.
|
|
7
|
-
- API smoke evidence for changed endpoints when applicable.
|
|
8
|
-
- Migration, fixture, or environment assumptions.
|
|
9
|
-
|
|
10
|
-
## Common Commands
|
|
11
|
-
|
|
12
|
-
```powershell
|
|
13
|
-
python --version
|
|
14
|
-
py --version
|
|
15
|
-
python3 --version
|
|
16
|
-
python -m unittest discover -s tests
|
|
17
|
-
py -m unittest discover -s tests
|
|
18
|
-
python3 -m unittest discover -s tests
|
|
19
|
-
python -m pytest
|
|
20
|
-
python -m pytest tests
|
|
21
|
-
uv run pytest
|
|
22
|
-
poetry run pytest
|
|
23
|
-
python -m uvicorn app.main:app --reload
|
|
24
|
-
```
|
|
25
|
-
|
|
26
|
-
Prefer commands already documented by the project. When no project-specific command is documented, detect an available Python executable in the current shell (`python`, then `py`, then `python3`) and run the matching `-m unittest discover -s tests` or pytest command. `unittest` is first-class for standard-library test suites; do not require pytest when the project already uses unittest.
|
|
27
|
-
|
|
28
|
-
## Fallback
|
|
29
|
-
|
|
30
|
-
If unittest, pytest, or the app runner is unavailable, run targeted Python modules, import checks, or framework-specific tests that already exist. Do not create or install a new backend stack without approval.
|
|
31
|
-
|
|
32
|
-
## Windows Notes
|
|
33
|
-
|
|
34
|
-
Virtual environment activation is usually `.\\.venv\\Scripts\\Activate.ps1`. If script execution is blocked, use the environment's Python executable directly, for example `.\\.venv\\Scripts\\python.exe -m unittest discover -s tests` or `.\\.venv\\Scripts\\python.exe -m pytest`.
|
|
1
|
+
# Python Backend Workflow
|
|
2
|
+
|
|
3
|
+
## Required Evidence
|
|
4
|
+
|
|
5
|
+
- Python executable, version, and dependency manager detected.
|
|
6
|
+
- Unit/integration test command and result.
|
|
7
|
+
- API smoke evidence for changed endpoints when applicable.
|
|
8
|
+
- Migration, fixture, or environment assumptions.
|
|
9
|
+
|
|
10
|
+
## Common Commands
|
|
11
|
+
|
|
12
|
+
```powershell
|
|
13
|
+
python --version
|
|
14
|
+
py --version
|
|
15
|
+
python3 --version
|
|
16
|
+
python -m unittest discover -s tests
|
|
17
|
+
py -m unittest discover -s tests
|
|
18
|
+
python3 -m unittest discover -s tests
|
|
19
|
+
python -m pytest
|
|
20
|
+
python -m pytest tests
|
|
21
|
+
uv run pytest
|
|
22
|
+
poetry run pytest
|
|
23
|
+
python -m uvicorn app.main:app --reload
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Prefer commands already documented by the project. When no project-specific command is documented, detect an available Python executable in the current shell (`python`, then `py`, then `python3`) and run the matching `-m unittest discover -s tests` or pytest command. `unittest` is first-class for standard-library test suites; do not require pytest when the project already uses unittest.
|
|
27
|
+
|
|
28
|
+
## Fallback
|
|
29
|
+
|
|
30
|
+
If unittest, pytest, or the app runner is unavailable, run targeted Python modules, import checks, or framework-specific tests that already exist. Do not create or install a new backend stack without approval.
|
|
31
|
+
|
|
32
|
+
## Windows Notes
|
|
33
|
+
|
|
34
|
+
Virtual environment activation is usually `.\\.venv\\Scripts\\Activate.ps1`. If script execution is blocked, use the environment's Python executable directly, for example `.\\.venv\\Scripts\\python.exe -m unittest discover -s tests` or `.\\.venv\\Scripts\\python.exe -m pytest`.
|
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
# TypeScript React Frontend Workflow
|
|
2
|
-
|
|
3
|
-
## Required Evidence
|
|
4
|
-
|
|
5
|
-
- Package manager and scripts detected.
|
|
6
|
-
- Typecheck, lint, test, or build results according to project conventions.
|
|
7
|
-
- Real-browser smoke or screenshot evidence for user-visible changes.
|
|
8
|
-
- Console/runtime error check result for the changed screen or flow.
|
|
9
|
-
- Notes on responsive behavior and important interaction states.
|
|
1
|
+
# TypeScript React Frontend Workflow
|
|
2
|
+
|
|
3
|
+
## Required Evidence
|
|
4
|
+
|
|
5
|
+
- Package manager and scripts detected.
|
|
6
|
+
- Typecheck, lint, test, or build results according to project conventions.
|
|
7
|
+
- Real-browser smoke or screenshot evidence for user-visible changes.
|
|
8
|
+
- Console/runtime error check result for the changed screen or flow.
|
|
9
|
+
- Notes on responsive behavior and important interaction states.
|
|
10
10
|
- Stable accessible labels/roles and stable test selectors such as `data-testid` are required for critical UI controls and states: inputs, buttons, filters, rows, empty/error/loading states.
|
|
11
|
-
|
|
12
|
-
Typecheck, build, and unit tests are necessary signals but are not enough for user-visible React changes. Before claiming UI acceptance, load the app in a real browser by Playwright, Chrome DevTools/CDP, or a documented manual run and capture screenshot/trace/console evidence.
|
|
13
|
-
For TS/React UI work, capture the selector contract in the feature doc before implementation so tests and manual checks can target stable selectors instead of component internals or brittle DOM paths.
|
|
14
|
-
|
|
15
|
-
## Common Commands
|
|
16
|
-
|
|
17
|
-
```powershell
|
|
18
|
-
npm run typecheck
|
|
19
|
-
npm run lint
|
|
20
|
-
npm test
|
|
21
|
-
npm run build
|
|
22
|
-
npm run dev
|
|
23
|
-
pnpm test
|
|
24
|
-
yarn test
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
Use the package manager and scripts already present in the repository.
|
|
28
|
-
|
|
29
|
-
## Fallback
|
|
30
|
-
|
|
31
|
-
If no formal checks exist, run the closest available build or dev command, inspect the changed UI manually, and document the missing automation. Do not add dependencies unless the task requires it and the user approves.
|
|
32
|
-
|
|
33
|
-
## Windows Notes
|
|
34
|
-
|
|
35
|
-
Use PowerShell syntax for environment variables: `$env:VITE_API_URL='http://localhost:8000'; npm run dev`. Quote paths and prefer package scripts over shell-specific command chains.
|
|
11
|
+
|
|
12
|
+
Typecheck, build, and unit tests are necessary signals but are not enough for user-visible React changes. Before claiming UI acceptance, load the app in a real browser by Playwright, Chrome DevTools/CDP, or a documented manual run and capture screenshot/trace/console evidence.
|
|
13
|
+
For TS/React UI work, capture the selector contract in the feature doc before implementation so tests and manual checks can target stable selectors instead of component internals or brittle DOM paths.
|
|
14
|
+
|
|
15
|
+
## Common Commands
|
|
16
|
+
|
|
17
|
+
```powershell
|
|
18
|
+
npm run typecheck
|
|
19
|
+
npm run lint
|
|
20
|
+
npm test
|
|
21
|
+
npm run build
|
|
22
|
+
npm run dev
|
|
23
|
+
pnpm test
|
|
24
|
+
yarn test
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Use the package manager and scripts already present in the repository.
|
|
28
|
+
|
|
29
|
+
## Fallback
|
|
30
|
+
|
|
31
|
+
If no formal checks exist, run the closest available build or dev command, inspect the changed UI manually, and document the missing automation. Do not add dependencies unless the task requires it and the user approves.
|
|
32
|
+
|
|
33
|
+
## Windows Notes
|
|
34
|
+
|
|
35
|
+
Use PowerShell syntax for environment variables: `$env:VITE_API_URL='http://localhost:8000'; npm run dev`. Quote paths and prefer package scripts over shell-specific command chains.
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
# UI/UX Review Workflow
|
|
2
|
-
|
|
3
|
-
## Required Evidence
|
|
4
|
-
|
|
5
|
-
- Screenshots for desktop and mobile views.
|
|
6
|
-
- Notes on layout, typography, interaction states, accessibility, and empty/loading/error states.
|
|
7
|
-
- Any automated accessibility, lint, or visual test output available in the project.
|
|
8
|
-
|
|
9
|
-
## Common Commands
|
|
10
|
-
|
|
11
|
-
```powershell
|
|
12
|
-
npm run dev
|
|
13
|
-
npm run lint
|
|
14
|
-
npm run test
|
|
15
|
-
npx playwright test
|
|
16
|
-
```
|
|
17
|
-
|
|
18
|
-
Use the project's existing commands first. Browser screenshots may come from Playwright, CDP, framework tooling, or manual capture.
|
|
19
|
-
|
|
20
|
-
## Fallback
|
|
21
|
-
|
|
22
|
-
When automation is unavailable, inspect the running UI manually at representative viewport sizes and document findings with screenshots. Avoid adding design or test dependencies without approval.
|
|
23
|
-
|
|
24
|
-
## Windows Notes
|
|
25
|
-
|
|
26
|
-
PowerShell does not support POSIX inline environment variables. Use `$env:NAME='value'; command` and quote screenshot paths with spaces.
|
|
1
|
+
# UI/UX Review Workflow
|
|
2
|
+
|
|
3
|
+
## Required Evidence
|
|
4
|
+
|
|
5
|
+
- Screenshots for desktop and mobile views.
|
|
6
|
+
- Notes on layout, typography, interaction states, accessibility, and empty/loading/error states.
|
|
7
|
+
- Any automated accessibility, lint, or visual test output available in the project.
|
|
8
|
+
|
|
9
|
+
## Common Commands
|
|
10
|
+
|
|
11
|
+
```powershell
|
|
12
|
+
npm run dev
|
|
13
|
+
npm run lint
|
|
14
|
+
npm run test
|
|
15
|
+
npx playwright test
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Use the project's existing commands first. Browser screenshots may come from Playwright, CDP, framework tooling, or manual capture.
|
|
19
|
+
|
|
20
|
+
## Fallback
|
|
21
|
+
|
|
22
|
+
When automation is unavailable, inspect the running UI manually at representative viewport sizes and document findings with screenshots. Avoid adding design or test dependencies without approval.
|
|
23
|
+
|
|
24
|
+
## Windows Notes
|
|
25
|
+
|
|
26
|
+
PowerShell does not support POSIX inline environment variables. Use `$env:NAME='value'; command` and quote screenshot paths with spaces.
|