@forwardimpact/schema 0.9.2 → 0.10.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.
@@ -18,15 +18,19 @@
18
18
  label: Create Plan
19
19
  prompt: Create plan.md based on spec.md.
20
20
  constraints:
21
- - Do not make code edits or execute commands
21
+ - Do not write implementation code or execute system commands
22
22
  - Focus on WHAT users need and WHY, not HOW to implement
23
23
  - Write specifications as markdown files under specs/[feature-name]/spec.md
24
- - Mark ambiguities with [NEEDS CLARIFICATION]; ask the user; do not guess
24
+ - Before writing the spec, conduct an interactive Q&A session with the user
25
+ - Ask each critical question one at a time and WAIT for answers
26
+ - You MUST ask questions interactively — do NOT embed unanswered questions
27
+ - Only after the user has answered your critical questions should you write
28
+ the spec document
25
29
  - No technology choices, APIs, or code structure in specifications
26
30
  readChecklist: []
27
31
  confirmChecklist:
28
32
  - spec.md exists with user stories and acceptance criteria
29
- - No unresolved [NEEDS CLARIFICATION] markers in spec.md
33
+ - No unresolved or open questions in spec.md
30
34
 
31
35
  - id: plan
32
36
  name: Plan
@@ -46,7 +50,7 @@
46
50
  label: Set Up Environment
47
51
  prompt: Prepare the development environment based on plan.md requirements.
48
52
  constraints:
49
- - Do not make code edits or execute commands
53
+ - Do not write implementation code or execute system commands
50
54
  - Every technology choice must trace back to a specific requirement
51
55
  - Write plans as markdown files under specs/[feature-name]/plan.md
52
56
  - Define contracts and data models before implementation details
@@ -54,10 +58,10 @@
54
58
  readChecklist: []
55
59
  confirmChecklist:
56
60
  - spec.md exists with user stories and acceptance criteria
57
- - No unresolved [NEEDS CLARIFICATION] markers in spec.md
61
+ - No unresolved or open questions in spec.md
58
62
  - plan.md exists with technology choices and architecture
59
63
  - Contracts and data models defined where applicable
60
- - No unresolved [NEEDS CLARIFICATION] markers in plan.md
64
+ - No unresolved or open questions in plan.md
61
65
 
62
66
  - id: onboard
63
67
  name: Onboard
@@ -88,7 +92,9 @@
88
92
  readChecklist: []
89
93
  confirmChecklist:
90
94
  - plan.md exists with technology choices and architecture
91
- - No unresolved [NEEDS CLARIFICATION] markers in plan.md
95
+ - No unresolved or open questions in plan.md
96
+ - Install scripts (scripts/install.sh) executed for all skills that provide
97
+ them
92
98
  - All dependencies installed and versions verified
93
99
  - Environment variables and secrets configured (.env files, tokens)
94
100
  - Linter and formatter configured and passing on existing code
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forwardimpact/schema",
3
- "version": "0.9.2",
3
+ "version": "0.10.0",
4
4
  "description": "Schema definitions and data loading for skills, behaviours, and role frameworks",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {