@davidorex/pi-project-workflows 0.14.4 → 0.26.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.
@@ -0,0 +1,47 @@
1
+ # Bundled Resources
2
+
3
+ ## schemas/ (9 files)
4
+
5
+ - `schemas/bootstrap.schema.json`
6
+ - `schemas/config.schema.json`
7
+ - `schemas/layer.schema.json`
8
+ - `schemas/priority.schema.json`
9
+ - `schemas/relations.schema.json`
10
+ - `schemas/severity.schema.json`
11
+ - `schemas/source.schema.json`
12
+ - `schemas/status.schema.json`
13
+ - `schemas/verification-method.schema.json`
14
+
15
+ ## samples/ (31 files)
16
+
17
+ - `samples/blocks/context-contracts.json`
18
+ - `samples/blocks/conventions.json`
19
+ - `samples/blocks/decisions.json`
20
+ - `samples/blocks/features.json`
21
+ - `samples/blocks/framework-gaps.json`
22
+ - `samples/blocks/issues.json`
23
+ - `samples/blocks/layer-plans.json`
24
+ - `samples/blocks/phase.json`
25
+ - `samples/blocks/rationale.json`
26
+ - `samples/blocks/requirements.json`
27
+ - `samples/blocks/research.json`
28
+ - `samples/blocks/spec-reviews.json`
29
+ - `samples/blocks/story.json`
30
+ - `samples/blocks/tasks.json`
31
+ - `samples/blocks/verification.json`
32
+ - `samples/conception.json`
33
+ - `samples/schemas/context-contracts.schema.json`
34
+ - `samples/schemas/conventions.schema.json`
35
+ - `samples/schemas/decisions.schema.json`
36
+ - `samples/schemas/features.schema.json`
37
+ - `samples/schemas/framework-gaps.schema.json`
38
+ - `samples/schemas/issues.schema.json`
39
+ - `samples/schemas/layer-plans.schema.json`
40
+ - `samples/schemas/phase.schema.json`
41
+ - `samples/schemas/rationale.schema.json`
42
+ - `samples/schemas/requirements.schema.json`
43
+ - `samples/schemas/research.schema.json`
44
+ - `samples/schemas/spec-reviews.schema.json`
45
+ - `samples/schemas/story.schema.json`
46
+ - `samples/schemas/tasks.schema.json`
47
+ - `samples/schemas/verification.schema.json`
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: pi-project-workflows
3
3
  description: >
4
- Meta-package re-exporting pi-project (schema-driven project state),
4
+ Meta-package re-exporting pi-context (schema-driven project state),
5
5
  pi-workflows (workflow orchestration), and pi-behavior-monitors (autonomous
6
6
  behavior monitoring). Install once to get all three extensions.
7
7
  ---
@@ -15,17 +15,17 @@ pi install npm:@davidorex/pi-project-workflows
15
15
  </objective>
16
16
 
17
17
  <included_extensions>
18
- <extension name="@davidorex/pi-project">
18
+ <extension name="@davidorex/pi-context">
19
19
  Schema-driven project state management for Pi
20
20
 
21
- **Tools:** `append-block-item`, `update-block-item`, `read-block`, `write-block`, `project-status`, `project-validate`, `project-init`, `complete-task`
22
- **Commands:** `/project`
21
+ **Tools:** `append-block-item`, `update-block-item`, `append-relation`, `append-block-nested-item`, `update-block-nested-item`, `remove-block-item`, `remove-block-nested-item`, `read-block-dir`, `read-block`, `write-block`, `context-status`, `context-validate`, `read-config`, `list-tools`, `read-samples-catalog`, `context-current-state`, `context-bootstrap-state`, `rename-canonical-id`, `amend-config`, `read-schema`, `write-schema`, `context-init`, `context-accept-all`, `filter-block-items`, `resolve-item-by-id`, `read-block-item`, `read-block-page`, `join-blocks`, `resolve-items-by-id`, `complete-task`, `context-validate-relations`, `context-edges-for-lens`, `context-walk-descendants`, `walk-ancestors`, `find-references`, `gather-execution-context`, `context-roadmap-load`, `context-roadmap-render`, `context-roadmap-validate`, `context-roadmap-list`
22
+ **Commands:** `/context`
23
23
  </extension>
24
24
 
25
25
  <extension name="@davidorex/pi-workflows">
26
26
  Workflow orchestration extension for Pi
27
27
 
28
- **Tools:** `workflow`, `workflow-list`, `workflow-agents`, `workflow-validate`, `workflow-status`, `workflow-init`
28
+ **Tools:** `workflow-execute`, `workflow-resume`, `workflow-list`, `workflow-agents`, `workflow-validate`, `workflow-status`, `workflow-init`, `render-item-by-id`, `enforce-budget`
29
29
  **Commands:** `/workflow`
30
30
  **Shortcuts:** ctrl+h (Pause running workflow), ctrl+j (Resume paused workflow)
31
31
  </extension>
@@ -8,10 +8,10 @@ description: >
8
8
  ---
9
9
 
10
10
  <tools_reference>
11
- <tool name="workflow">
12
- Run a named workflow with typed input. Discovers workflows from .workflows/ and ~/.pi/agent/workflows/.
11
+ <tool name="workflow-execute">
12
+ Execute a named workflow with typed input. Discovers workflows from .workflows/ and ~/.pi/agent/workflows/. Auto-resumes the most recent compatible incomplete run unless fresh='true'. Use workflow-resume for explicit-only resume by runId.
13
13
 
14
- *Run a multi-step workflow with typed data flow between agents*
14
+ *Execute a multi-step workflow with typed data flow (auto-resumes compatible incomplete runs)*
15
15
 
16
16
  | Parameter | Type | Required | Description |
17
17
  |-----------|------|----------|-------------|
@@ -20,6 +20,18 @@ Run a named workflow with typed input. Discovers workflows from .workflows/ and
20
20
  | `fresh` | string | no | Set to 'true' to start a fresh run, ignoring any incomplete prior runs |
21
21
  </tool>
22
22
 
23
+ <tool name="workflow-resume">
24
+ Explicitly resume an incomplete workflow run by name + runId. Rejects when no incomplete run exists for the workflow OR when runId does not match the most recent incomplete run. Use workflow-execute for default auto-resume; this surface is for explicit-only scenarios where the caller wants to fail loudly if the run is gone or has been superseded.
25
+
26
+ *Explicitly resume an incomplete workflow run by name + runId (rejects on no-match)*
27
+
28
+ | Parameter | Type | Required | Description |
29
+ |-----------|------|----------|-------------|
30
+ | `workflow` | string | yes | Workflow name |
31
+ | `runId` | string | yes | Incomplete run ID — required, no auto-detect |
32
+ | `input` | unknown | no | Optional input override; defaults to the original run's input |
33
+ </tool>
34
+
23
35
  <tool name="workflow-list">
24
36
  List available workflows with names, descriptions, and sources.
25
37
 
@@ -61,6 +73,29 @@ Initialize .workflows/ directory for workflow run state.
61
73
 
62
74
  </tool>
63
75
 
76
+ <tool name="render-item-by-id">
77
+ Render a project block item by ID through its registered per-item macro. Resolves the item via the cross-block resolver, looks up the macro via the renderer registry, and renders with the supplied depth and depth-aware cross-reference recursion. Returns `[not-found: <id>]` on resolver miss and `[unrendered: <kind>/<id>]` on registry miss — same fallback markers `render_recursive` emits inside agent prompts.
78
+
79
+ *Render a project block item as prompt text via its per-item macro (with depth-controlled cross-ref recursion)*
80
+
81
+ | Parameter | Type | Required | Description |
82
+ |-----------|------|----------|-------------|
83
+ | `id` | string | yes | Kind-prefixed ID, e.g., DEC-0001 / FEAT-001 |
84
+ | `depth` | number | no | 0 = bare-ID refs (default), 1 = inline direct cross-references, 2+ = recurse further |
85
+ </tool>
86
+
87
+ <tool name="enforce-budget">
88
+ Check rendered text against an `x-prompt-budget` annotation on a schema field. Returns `{ output, warning }` — `output` is the original text passed through when under budget, or tail-truncated text with `[…truncated to budget]` marker when over; `warning` is null when no truncation occurred or a structured BudgetWarning record otherwise. Annotation absence is pass-through (no error). Mirrors the behaviour of the `enforceBudget` Nunjucks global registered by compileAgent.
89
+
90
+ *Validate rendered text against a schema field's prompt budget — returns truncated output and warning*
91
+
92
+ | Parameter | Type | Required | Description |
93
+ |-----------|------|----------|-------------|
94
+ | `rendered` | string | yes | Rendered text to check against the field's prompt budget |
95
+ | `blockName` | string | yes | Block schema name (without .schema.json suffix), e.g. 'decisions' or 'features' |
96
+ | `fieldPath` | string | yes | JSON-pointer-style path to the field, e.g. '/properties/decisions/items/properties/context' |
97
+ </tool>
98
+
64
99
  </tools_reference>
65
100
 
66
101
  <commands_reference>
@@ -78,7 +113,7 @@ Subcommands: `init`, `list`, `run`, `resume`, `validate`, `status`, `help`
78
113
  </keyboard_shortcuts>
79
114
 
80
115
  <bundled_resources>
81
- 26 agents, 15 schemas, 15 workflows, 33 templates bundled.
116
+ 26 agents, 15 schemas, 15 workflows, 48 templates bundled.
82
117
  See references/bundled-resources.md for full inventory.
83
118
  </bundled_resources>
84
119
 
@@ -127,7 +162,7 @@ See references/bundled-resources.md for full inventory.
127
162
  </agent_input>
128
163
 
129
164
  <agent_input name="handoff-writer">
130
- - `project_state` [required] — Current project state (from projectState() or /project status — includes phases, blocks, gaps, decisions, recent commits)
165
+ - `project_state` [required] — Current project state (from contextState() or /context status — includes phases, blocks, gaps, decisions, recent commits)
131
166
  - `path` string [required] — Root path of the project
132
167
  </agent_input>
133
168
 
@@ -239,7 +274,9 @@ Workflows are discovered from three locations (first match wins):
239
274
  | loop | `loop: { maxAttempts, steps }` | Repeat sub-steps until gate breaks or max reached |
240
275
  | parallel | `parallel: { a: ..., b: ... }` | Run named sub-steps concurrently |
241
276
  | pause | `pause: true` or `pause: "message"` | Pause execution, resumable later |
242
- | forEach | `forEach: "${{ expr }}"` | Iterate over an array, executing the step per element |
277
+ | block | `block: { op: read\|write\|append\|update\|remove\|… }` | Validated in-process `.project` block I/O via the block API no LLM, no subprocess |
278
+
279
+ `forEach: "${{ expr }}"` (iterate the step per array element) and `as:` are step MODIFIERS, not step types — they combine with any type above.
243
280
  </step_types>
244
281
 
245
282
  <expression_syntax>
@@ -65,7 +65,7 @@
65
65
  - `workflows/self-implement.workflow.yaml`
66
66
  - `workflows/typed-analysis.workflow.yaml`
67
67
 
68
- ## templates/ (33 files)
68
+ ## templates/ (48 files)
69
69
 
70
70
  - `templates/analyzers/base-analyzer.md`
71
71
  - `templates/analyzers/patterns-task.md`
@@ -86,6 +86,20 @@
86
86
  - `templates/gap-resolution-assessor/task.md`
87
87
  - `templates/handoff-writer/task.md`
88
88
  - `templates/investigator/task.md`
89
+ - `templates/items/architecture.md`
90
+ - `templates/items/conformance.md`
91
+ - `templates/items/conventions.md`
92
+ - `templates/items/decisions.md`
93
+ - `templates/items/domain.md`
94
+ - `templates/items/features.md`
95
+ - `templates/items/framework-gaps.md`
96
+ - `templates/items/issues.md`
97
+ - `templates/items/layer-plans.md`
98
+ - `templates/items/project.md`
99
+ - `templates/items/requirements.md`
100
+ - `templates/items/research.md`
101
+ - `templates/items/spec-reviews.md`
102
+ - `templates/items/tasks.md`
89
103
  - `templates/phase-author/task.md`
90
104
  - `templates/plan-creator/task.md`
91
105
  - `templates/plan-decomposer/task.md`
@@ -94,6 +108,7 @@
94
108
  - `templates/requirements-gatherer/task.md`
95
109
  - `templates/researcher/task.md`
96
110
  - `templates/shared/macros.md`
111
+ - `templates/shared/render-helpers.md`
97
112
  - `templates/spec-implementer/task.md`
98
113
  - `templates/synthesizer/system.md`
99
114
  - `templates/synthesizer/task.md`
@@ -1,242 +0,0 @@
1
- ---
2
- name: pi-project
3
- description: >
4
- Schema-driven project state management with typed JSON blocks, schema
5
- validation, planning lifecycle, and cross-block referential integrity. Use when
6
- managing .project/ blocks, scaffolding project structure, validating project
7
- state, or adding work items.
8
- ---
9
-
10
- <tools_reference>
11
- <tool name="append-block-item">
12
- Append an item to an array in a project block file. Schema validation is automatic.
13
-
14
- *Append items to project blocks (issues, decisions, or any user-defined block)*
15
-
16
- | Parameter | Type | Required | Description |
17
- |-----------|------|----------|-------------|
18
- | `block` | string | yes | Block name (e.g., 'issues', 'decisions') |
19
- | `arrayKey` | string | yes | Array key in the block (e.g., 'issues', 'decisions') |
20
- | `item` | unknown | yes | Item object to append — must conform to block schema |
21
- </tool>
22
-
23
- <tool name="update-block-item">
24
- Update fields on an item in a project block array. Finds by predicate field match.
25
-
26
- *Update items in project blocks — change status, add details, mark resolved*
27
-
28
- | Parameter | Type | Required | Description |
29
- |-----------|------|----------|-------------|
30
- | `block` | string | yes | Block name (e.g., 'issues', 'decisions') |
31
- | `arrayKey` | string | yes | Array key in the block |
32
- | `match` | object | yes | Fields to match (e.g., { id: 'issue-123' }) |
33
- | `updates` | object | yes | Fields to update (e.g., { status: 'resolved' }) |
34
- </tool>
35
-
36
- <tool name="read-block">
37
- Read a project block file as structured JSON.
38
-
39
- *Read a project block as structured JSON*
40
-
41
- | Parameter | Type | Required | Description |
42
- |-----------|------|----------|-------------|
43
- | `block` | string | yes | Block name (e.g., 'issues', 'tasks', 'requirements') |
44
- </tool>
45
-
46
- <tool name="write-block">
47
- Write or replace an entire project block with schema validation.
48
-
49
- *Write or replace a project block with schema validation*
50
-
51
- | Parameter | Type | Required | Description |
52
- |-----------|------|----------|-------------|
53
- | `block` | string | yes | Block name (e.g., 'project', 'architecture') |
54
- | `data` | unknown | yes | Complete block data — must conform to block schema |
55
- </tool>
56
-
57
- <tool name="project-status">
58
- Get derived project state — source metrics, block summaries, planning lifecycle status.
59
-
60
- *Get project state — source metrics, block summaries, planning lifecycle status*
61
-
62
- </tool>
63
-
64
- <tool name="project-validate">
65
- Validate cross-block referential integrity — check that IDs referenced across blocks exist.
66
-
67
- *Validate cross-block referential integrity*
68
-
69
- </tool>
70
-
71
- <tool name="project-init">
72
- Initialize .project/ directory with default schemas and empty block files.
73
-
74
- *Initialize .project/ directory with default schemas and blocks*
75
-
76
- </tool>
77
-
78
- <tool name="complete-task">
79
- Complete a task with verification gate — requires a passing verification entry targeting the task.
80
-
81
- *Complete a task — gates on passing verification before updating status*
82
-
83
- | Parameter | Type | Required | Description |
84
- |-----------|------|----------|-------------|
85
- | `taskId` | string | yes | Task ID to complete |
86
- | `verificationId` | string | yes | Verification entry ID (must target this task with status 'passed') |
87
- </tool>
88
-
89
- </tools_reference>
90
-
91
- <commands_reference>
92
- <command name="/project">
93
- Project state management
94
-
95
- Subcommands: `init`, `status`, `add-work`, `validate`, `help`
96
- </command>
97
-
98
- </commands_reference>
99
-
100
- <events>
101
- `session_start`
102
- </events>
103
-
104
- <bundled_resources>
105
- 22 defaults bundled.
106
- See references/bundled-resources.md for full inventory.
107
- </bundled_resources>
108
-
109
- <planning_vocabulary>
110
-
111
- **Block Types:**
112
-
113
- | Block | Title | Array Key | Item Fields |
114
- |-------|-------|-----------|-------------|
115
- | `architecture` | Architecture | `modules` | name, file, responsibility, dependencies? (array), lines? (integer) |
116
- | `audit` | Audit | `checks` | id, description, status (string (pass|fail|warn|skip)), category?, details? |
117
- | `conformance-reference` | Conformance Reference | `principles` | id, name, description?, rules (array) |
118
- | `decisions` | Decisions | `decisions` | id, decision, rationale, phase? (string|integer), status (string (decided|tentative|revisit|superseded)), context?, task? |
119
- | `domain` | Domain Knowledge | `entries` | id, title, content, category (string (research|reference|domain-rule|prior-art|constraint)), source?, confidence? (string (high|medium|low)), related_requirements? (array), tags? (array) |
120
- | `handoff` | Handoff | `current_tasks` | |
121
- | `issues` | Issues | `issues` | id, title, body, location, status (string (open|resolved|deferred)), category (string (primitive|issue|cleanup|capability|composition)), priority (string (low|medium|high|critical)), package, source? (string (human|agent|monitor|workflow)), resolved_by? |
122
- | `phase` | Phase | `success_criteria` | criterion, verify_method (string (command|inspect|test)) |
123
- | `project` | Project Identity | `target_users` | |
124
- | `rationale` | Design Rationale | `rationales` | id, title, narrative, related_decisions? (array), phase? (string|integer), context? |
125
- | `requirements` | Requirements | `requirements` | id, description, type (string (functional|non-functional|constraint|integration)), status (string (proposed|accepted|deferred|implemented|verified)), priority (string (must|should|could|wont)), acceptance_criteria? (array), source? (string (human|agent|analysis)), traces_to? (array), depends_on? (array) |
126
- | `tasks` | Tasks | `tasks` | id, description, status (string (planned|in-progress|completed|blocked|cancelled)), phase? (string|integer), files? (array), acceptance_criteria? (array), depends_on? (array), assigned_agent?, verification?, notes? |
127
- | `verification` | Verification | `verifications` | id, target, target_type (string (task|phase|requirement)), status (string (passed|failed|partial|skipped)), method (string (command|inspect|test)), evidence?, timestamp?, criteria_results? (array) |
128
-
129
- **Status Enums:**
130
-
131
- | Block | Field | Values |
132
- |-------|-------|--------|
133
- | `audit` | `status` | pass, fail, warn, skip |
134
- | `audit` | `severity` | error, warning, info |
135
- | `decisions` | `status` | decided, tentative, revisit, superseded |
136
- | `domain` | `category` | research, reference, domain-rule, prior-art, constraint |
137
- | `domain` | `confidence` | high, medium, low |
138
- | `issues` | `status` | open, resolved, deferred |
139
- | `issues` | `category` | primitive, issue, cleanup, capability, composition |
140
- | `issues` | `priority` | low, medium, high, critical |
141
- | `issues` | `source` | human, agent, monitor, workflow |
142
- | `phase` | `status` | planned, in-progress, completed |
143
- | `phase` | `verify_method` | command, inspect, test |
144
- | `phase` | `status` | planned, in-progress, completed |
145
- | `project` | `status` | inception, planning, development, maintenance, complete |
146
- | `requirements` | `type` | functional, non-functional, constraint, integration |
147
- | `requirements` | `status` | proposed, accepted, deferred, implemented, verified |
148
- | `requirements` | `priority` | must, should, could, wont |
149
- | `requirements` | `source` | human, agent, analysis |
150
- | `tasks` | `status` | planned, in-progress, completed, blocked, cancelled |
151
- | `verification` | `target_type` | task, phase, requirement |
152
- | `verification` | `status` | passed, failed, partial, skipped |
153
- | `verification` | `method` | command, inspect, test |
154
-
155
- </planning_vocabulary>
156
-
157
- <objective>
158
- pi-project manages structured project state in `.project/` — a directory of JSON block files validated against schemas.
159
- </objective>
160
-
161
- <block_files>
162
- Blocks are JSON files in `.project/` (e.g., `gaps.json`, `decisions.json`). Each block has a corresponding schema in `.project/schemas/`. When you write to a block via the tools, the data is validated against its schema before persisting. Writes are atomic (tmp file + rename).
163
- </block_files>
164
-
165
- <schema_validation>
166
- Every block write validates against `.project/schemas/<blockname>.schema.json`. If the schema file doesn't exist, writes proceed without validation. Validation errors include the specific JSON Schema violations.
167
- </schema_validation>
168
-
169
- <project_init>
170
- `/project init` scaffolds the `.project/` directory with default schemas and empty block files from the package's `defaults/` directory. Idempotent — skips files that already exist.
171
- </project_init>
172
-
173
- <project_status>
174
- `/project status` derives project state dynamically from the filesystem:
175
- - Source file count and line count (`.ts` files excluding tests)
176
- - Test count and test file count
177
- - Schema count, block count, phase count
178
- - Block summaries with array item counts and status distributions
179
- - Requirements summary (total, by status, by priority) — from requirements.json
180
- - Tasks summary (total, by status) — from tasks.json
181
- - Domain entry count — from domain.json
182
- - Verification summary (total, passed, failed) — from verification.json
183
- - Handoff presence — whether handoff.json exists
184
- - Recent git commits
185
- - Current phase detection
186
- </project_status>
187
-
188
- <project_add_work>
189
- `/project add-work` discovers appendable blocks (blocks with array schemas), reads their schemas, and sends a structured instruction to the LLM to extract items from the conversation into the typed blocks. This is a follow-up message that triggers the LLM to use the `append-block-item` tool.
190
- </project_add_work>
191
-
192
- <duplicate_detection>
193
- `append-block-item` checks for duplicate items by `id` field before appending. If an item with the same `id` already exists in the target array, it returns a message instead of appending.
194
- </duplicate_detection>
195
-
196
- <project_validate>
197
- `/project validate` checks cross-block referential integrity:
198
- - task.phase references a valid phase
199
- - task.depends_on references valid task IDs
200
- - decision.phase references a valid phase
201
- - gap.resolved_by references a valid ID
202
- - requirement.traces_to references valid phase/task IDs
203
- - requirement.depends_on references valid requirement IDs
204
- - verification.target references a valid target ID
205
- - rationale.related_decisions references valid decision IDs
206
-
207
- Returns errors (broken dependency references) and warnings (unresolved cross-references).
208
- </project_validate>
209
-
210
- <planning_lifecycle>
211
- The default schemas support a full planning lifecycle:
212
- - **project.json** — identity, vision, goals, constraints, scope, status
213
- - **domain.json** — research findings, reference material, domain rules
214
- - **requirements.json** — functional/non-functional requirements with MoSCoW priority and lifecycle states
215
- - **architecture.json** — modules, patterns, boundaries
216
- - **phases/** — ordered delivery units with goals, success criteria, inputs/outputs
217
- - **tasks.json** — standalone task registry with status lifecycle and phase linkage
218
- - **decisions.json** — choices with rationale and phase association
219
- - **gaps.json** — open items with priority, category, and resolution tracking
220
- - **rationale.json** — design rationale with decision cross-references
221
- - **handoff.json** — session context snapshot (created on-demand, not by /project init)
222
- - **verification.json** — completion evidence per task/phase/requirement
223
- - **conformance-reference.json** — executable code conventions with principles, rules, check methods (grep/command/ast/inspect), and check patterns. Ships empty, populated per-project by agents or users.
224
- - **audit** (schema only, no default block) — structured audit results produced by running conformance checks.
225
-
226
- All schemas are user-customizable. Edit `.project/schemas/*.schema.json` to add fields, change enums, or restructure blocks without modifying code.
227
- </planning_lifecycle>
228
-
229
- <update_check>
230
- On `session_start`, checks npm registry for newer versions of `@davidorex/pi-project-workflows` and notifies via UI if an update is available. Non-blocking — failures are silently ignored.
231
- </update_check>
232
-
233
- <success_criteria>
234
- - `.project/` directory exists with schemas and block files after `/project init`
235
- - Block writes validate against schemas — invalid data rejected with specific error
236
- - `/project status` returns current derived state without errors
237
- - `/project validate` returns no errors for well-formed cross-block references
238
- - `append-block-item` rejects duplicate IDs
239
- - Schema customizations (field additions, enum changes) take effect on next write
240
- </success_criteria>
241
-
242
- *Generated from source by `scripts/generate-skills.js` — do not edit by hand.*
@@ -1,26 +0,0 @@
1
- # Bundled Resources
2
-
3
- ## defaults/ (22 files)
4
-
5
- - `defaults/blocks/conformance-reference.json`
6
- - `defaults/blocks/decisions.json`
7
- - `defaults/blocks/domain.json`
8
- - `defaults/blocks/issues.json`
9
- - `defaults/blocks/project.json`
10
- - `defaults/blocks/rationale.json`
11
- - `defaults/blocks/requirements.json`
12
- - `defaults/blocks/tasks.json`
13
- - `defaults/blocks/verification.json`
14
- - `defaults/schemas/architecture.schema.json`
15
- - `defaults/schemas/audit.schema.json`
16
- - `defaults/schemas/conformance-reference.schema.json`
17
- - `defaults/schemas/decisions.schema.json`
18
- - `defaults/schemas/domain.schema.json`
19
- - `defaults/schemas/handoff.schema.json`
20
- - `defaults/schemas/issues.schema.json`
21
- - `defaults/schemas/phase.schema.json`
22
- - `defaults/schemas/project.schema.json`
23
- - `defaults/schemas/rationale.schema.json`
24
- - `defaults/schemas/requirements.schema.json`
25
- - `defaults/schemas/tasks.schema.json`
26
- - `defaults/schemas/verification.schema.json`