yam-harness 0.1.0

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 (43) hide show
  1. package/AGENTS.md +18 -0
  2. package/COMMANDS.md +144 -0
  3. package/DECISIONS.md +70 -0
  4. package/LICENSE +21 -0
  5. package/README.md +159 -0
  6. package/ROADMAP.md +308 -0
  7. package/bin/yam.js +1966 -0
  8. package/package.json +74 -0
  9. package/references/context-reuse.md +59 -0
  10. package/references/current-docs.md +45 -0
  11. package/references/db-supabase-safety-lite.md +40 -0
  12. package/references/doctor-scan.md +56 -0
  13. package/references/eye.md +30 -0
  14. package/references/final-report.md +61 -0
  15. package/references/honest-completion.md +61 -0
  16. package/references/hook-lite.md +55 -0
  17. package/references/markdown-management.md +56 -0
  18. package/references/memory.md +59 -0
  19. package/references/mission.md +86 -0
  20. package/references/question.md +25 -0
  21. package/references/quick.md +70 -0
  22. package/references/risk-escalation.md +27 -0
  23. package/references/runtime-orchestration.md +57 -0
  24. package/references/scout.md +38 -0
  25. package/references/token-budget-reporter.md +44 -0
  26. package/references/token-economy.md +61 -0
  27. package/references/tool-trust-layer.md +113 -0
  28. package/references/truth-matrix.md +44 -0
  29. package/references/ueye.md +83 -0
  30. package/references/ui-quality.md +23 -0
  31. package/references/verification-levels.md +53 -0
  32. package/skills/deep/SKILL.md +76 -0
  33. package/skills/mission/SKILL.md +105 -0
  34. package/skills/question/SKILL.md +45 -0
  35. package/skills/quick/SKILL.md +81 -0
  36. package/skills/scout/SKILL.md +71 -0
  37. package/skills/ueye/SKILL.md +90 -0
  38. package/templates/mission-plan.md +46 -0
  39. package/templates/runtime-proof.md +54 -0
  40. package/templates/tuning-log.md +39 -0
  41. package/templates/ueye-review.md +62 -0
  42. package/templates/yam.project.md +71 -0
  43. package/yam.manifest.json +48 -0
@@ -0,0 +1,71 @@
1
+ # yam Project Pack
2
+
3
+ ## Product Direction
4
+
5
+ - What this product is:
6
+ - Primary user:
7
+ - Primary workflow:
8
+ - What should feel fast/easy:
9
+
10
+ ## UI Direction
11
+
12
+ - Visual tone:
13
+ - Existing design system or tokens:
14
+ - Components to follow:
15
+ - Things to avoid:
16
+
17
+ ## Tech Stack
18
+
19
+ - Framework:
20
+ - Language:
21
+ - Styling:
22
+ - State/data:
23
+ - Auth/payment/DB:
24
+
25
+ ## Commands
26
+
27
+ - Dev:
28
+ - Typecheck:
29
+ - Lint:
30
+ - Test:
31
+ - Build:
32
+
33
+ ## Key Paths
34
+
35
+ - App/routes:
36
+ - Components:
37
+ - Styles:
38
+ - Tests:
39
+ - Config:
40
+
41
+ ## Verification Policy
42
+
43
+ - Tiny changes:
44
+ - UI changes:
45
+ - Feature changes:
46
+ - Risky changes:
47
+
48
+ ## Known Risks
49
+
50
+ - Auth/payment/DB/security:
51
+ - Fragile areas:
52
+ - Slow commands:
53
+
54
+ ## Recent Decisions
55
+
56
+ - Decision:
57
+ - Reason:
58
+ - Date:
59
+
60
+ ## No-Go Rules
61
+
62
+ - Do not:
63
+ - Avoid:
64
+
65
+ ## MD Management
66
+
67
+ - Owner: user-maintained project pack
68
+ - Target size: 500-1200 words
69
+ - Update rule: narrow edits only; do not rewrite the whole pack
70
+ - Generated sections: keep clearly marked
71
+ - Competing instruction files:
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "yam",
3
+ "version": "0.1.0",
4
+ "principles": [
5
+ "Direction before execution.",
6
+ "Start fast.",
7
+ "Deepen deliberately.",
8
+ "Basic direction fit and honest verification always.",
9
+ "Honest by design.",
10
+ "Heavy proof when risk or user intent calls for it.",
11
+ "Token-aware by default.",
12
+ "Context-reuse first.",
13
+ "End with remaining tasks and fix-first items."
14
+ ],
15
+ "defaultHooks": false,
16
+ "routes": [
17
+ {
18
+ "id": "quick",
19
+ "stage": "v0.3",
20
+ "purpose": "Fast scoped implementation, small fixes, and quick error scans with focused verification."
21
+ },
22
+ {
23
+ "id": "ueye",
24
+ "stage": "v0.3",
25
+ "purpose": "Design-heavy UI/UX implementation and screenshot-led visual review with P0-P3 issue tracking."
26
+ },
27
+ {
28
+ "id": "question",
29
+ "stage": "v0.1",
30
+ "purpose": "Very-light direct Q&A for stable or local questions without implementation."
31
+ },
32
+ {
33
+ "id": "scout",
34
+ "stage": "v0.1",
35
+ "purpose": "Lightweight investigation and recommendation without code changes by default."
36
+ },
37
+ {
38
+ "id": "deep",
39
+ "stage": "v0",
40
+ "purpose": "Single-agent heavy verification by explicit request, including runtime/tmux/browser/process proof when needed."
41
+ },
42
+ {
43
+ "id": "mission",
44
+ "stage": "v0.2",
45
+ "purpose": "Explicit real-subagent/team execution route for approved plans, cross-verification, doctor scan, and final proof."
46
+ }
47
+ ]
48
+ }