create-harness-vibe-coding 0.1.8 → 0.1.10

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 (29) hide show
  1. package/README.md +95 -1
  2. package/package.json +5 -2
  3. package/src/generator.js +347 -53
  4. package/src/index.js +212 -17
  5. package/templates/common/.claude/rules/ecc/common.md +9 -0
  6. package/templates/common/CLAUDE.md +5 -3
  7. package/templates/common/MEMORY.md +12 -8
  8. package/templates/common/SETUP.md +87 -2
  9. package/templates/common/docs/README.md +8 -0
  10. package/templates/common/docs/features/_template.md +24 -1
  11. package/templates/common/docs/harness/agent-workflow.md +3 -7
  12. package/templates/common/docs/harness/context-loading.md +3 -0
  13. package/templates/common/docs/harness/dispatch.md +3 -0
  14. package/templates/common/docs/harness/extension.md +12 -0
  15. package/templates/common/memory/agent-lessons-patterns.md +21 -0
  16. package/templates/common/memory/tool-usage-reflections.md +21 -0
  17. package/templates/common/memory/user-corrections-preferences.md +21 -0
  18. package/templates/common/scripts/validate-harness.mjs +99 -3
  19. package/templates/optional/catalog.json +43 -0
  20. package/templates/optional/skills/browser-e2e/.claude/skills/browser-e2e/SKILL.md +42 -0
  21. package/templates/optional/skills/browser-e2e/docs/workflows/browser-e2e.md +42 -0
  22. package/templates/optional/skills/github-pr-review/.claude/skills/github-pr-review/SKILL.md +40 -0
  23. package/templates/optional/skills/github-pr-review/docs/workflows/github-pr-review.md +28 -0
  24. package/templates/optional/skills/python-backend/.claude/skills/python-backend/SKILL.md +40 -0
  25. package/templates/optional/skills/python-backend/docs/workflows/python-backend.md +34 -0
  26. package/templates/optional/skills/ts-react-frontend/.claude/skills/ts-react-frontend/SKILL.md +43 -0
  27. package/templates/optional/skills/ts-react-frontend/docs/workflows/ts-react-frontend.md +35 -0
  28. package/templates/optional/skills/ui-ux-review/.claude/skills/ui-ux-review/SKILL.md +40 -0
  29. package/templates/optional/skills/ui-ux-review/docs/workflows/ui-ux-review.md +26 -0
@@ -0,0 +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.