@davidorex/pi-project-workflows 0.10.5 → 0.11.3
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@davidorex/pi-project-workflows",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.3",
|
|
4
4
|
"description": "Pi extensions for structured project state, workflow orchestration, and behavior monitoring — single install for all three",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "David Ryan",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
]
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@davidorex/pi-project": "^0.
|
|
33
|
-
"@davidorex/pi-workflows": "^0.
|
|
34
|
-
"@davidorex/pi-behavior-monitors": "^0.
|
|
32
|
+
"@davidorex/pi-project": "^0.11.3",
|
|
33
|
+
"@davidorex/pi-workflows": "^0.11.3",
|
|
34
|
+
"@davidorex/pi-behavior-monitors": "^0.11.3"
|
|
35
35
|
}
|
|
36
36
|
}
|
|
@@ -75,6 +75,17 @@ Initialize .project/ directory with default schemas and empty block files.
|
|
|
75
75
|
|
|
76
76
|
</tool>
|
|
77
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
|
+
|
|
78
89
|
</tools_reference>
|
|
79
90
|
|
|
80
91
|
<commands_reference>
|
|
@@ -104,7 +115,7 @@ See references/bundled-resources.md for full inventory.
|
|
|
104
115
|
| `architecture` | Architecture | `modules` | name, file, responsibility, dependencies? (array), lines? (integer) |
|
|
105
116
|
| `audit` | Audit | `checks` | id, description, status (string (pass|fail|warn|skip)), category?, details? |
|
|
106
117
|
| `conformance-reference` | Conformance Reference | `principles` | id, name, description?, rules (array) |
|
|
107
|
-
| `decisions` | Decisions | `decisions` | id, decision, rationale, phase? (string|integer), status (string (decided|tentative|revisit|superseded)), context? |
|
|
118
|
+
| `decisions` | Decisions | `decisions` | id, decision, rationale, phase? (string|integer), status (string (decided|tentative|revisit|superseded)), context?, task? |
|
|
108
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) |
|
|
109
120
|
| `handoff` | Handoff | `current_tasks` | |
|
|
110
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? |
|
|
@@ -18,7 +18,7 @@ pi install npm:@davidorex/pi-project-workflows
|
|
|
18
18
|
<extension name="@davidorex/pi-project">
|
|
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`
|
|
21
|
+
**Tools:** `append-block-item`, `update-block-item`, `read-block`, `write-block`, `project-status`, `project-validate`, `project-init`, `complete-task`
|
|
22
22
|
**Commands:** `/project`
|
|
23
23
|
</extension>
|
|
24
24
|
|
|
@@ -78,7 +78,7 @@ Subcommands: `init`, `list`, `run`, `resume`, `validate`, `status`, `help`
|
|
|
78
78
|
</keyboard_shortcuts>
|
|
79
79
|
|
|
80
80
|
<bundled_resources>
|
|
81
|
-
|
|
81
|
+
26 agents, 15 schemas, 15 workflows, 33 templates bundled.
|
|
82
82
|
See references/bundled-resources.md for full inventory.
|
|
83
83
|
</bundled_resources>
|
|
84
84
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Bundled Resources
|
|
2
2
|
|
|
3
|
-
## agents/ (
|
|
3
|
+
## agents/ (26 files)
|
|
4
4
|
|
|
5
5
|
- `agents/architecture-designer.agent.yaml`
|
|
6
6
|
- `agents/architecture-inferrer.agent.yaml`
|
|
@@ -25,9 +25,11 @@
|
|
|
25
25
|
- `agents/spec-implementer.agent.yaml`
|
|
26
26
|
- `agents/structure-analyzer.agent.yaml`
|
|
27
27
|
- `agents/synthesizer.agent.yaml`
|
|
28
|
+
- `agents/task-verifier.agent.yaml`
|
|
29
|
+
- `agents/task-worker.agent.yaml`
|
|
28
30
|
- `agents/verifier.agent.yaml`
|
|
29
31
|
|
|
30
|
-
## schemas/ (
|
|
32
|
+
## schemas/ (15 files)
|
|
31
33
|
|
|
32
34
|
- `schemas/audit-routing-manifest.schema.json`
|
|
33
35
|
- `schemas/decomposition-specs.schema.json`
|
|
@@ -42,14 +44,16 @@
|
|
|
42
44
|
- `schemas/resolution-assessment.schema.json`
|
|
43
45
|
- `schemas/structure-analysis.schema.json`
|
|
44
46
|
- `schemas/synthesis.schema.json`
|
|
47
|
+
- `schemas/task-verification.schema.json`
|
|
45
48
|
- `schemas/verifier-output.schema.json`
|
|
46
49
|
|
|
47
|
-
## workflows/ (
|
|
50
|
+
## workflows/ (15 files)
|
|
48
51
|
|
|
49
52
|
- `workflows/analyze-existing-project.workflow.yaml`
|
|
50
53
|
- `workflows/create-handoff.workflow.yaml`
|
|
51
54
|
- `workflows/create-phase.workflow.yaml`
|
|
52
55
|
- `workflows/do-gap.workflow.yaml`
|
|
56
|
+
- `workflows/execute-task.workflow.yaml`
|
|
53
57
|
- `workflows/fix-audit.workflow.yaml`
|
|
54
58
|
- `workflows/gap-to-phase.workflow.yaml`
|
|
55
59
|
- `workflows/init-new-project.workflow.yaml`
|
|
@@ -61,7 +65,7 @@
|
|
|
61
65
|
- `workflows/self-implement.workflow.yaml`
|
|
62
66
|
- `workflows/typed-analysis.workflow.yaml`
|
|
63
67
|
|
|
64
|
-
## templates/ (
|
|
68
|
+
## templates/ (33 files)
|
|
65
69
|
|
|
66
70
|
- `templates/analyzers/base-analyzer.md`
|
|
67
71
|
- `templates/analyzers/macros.md`
|
|
@@ -93,4 +97,6 @@
|
|
|
93
97
|
- `templates/spec-implementer/task.md`
|
|
94
98
|
- `templates/synthesizer/system.md`
|
|
95
99
|
- `templates/synthesizer/task.md`
|
|
100
|
+
- `templates/task-verifier/task.md`
|
|
101
|
+
- `templates/task-worker/task.md`
|
|
96
102
|
- `templates/verifier/task.md`
|