@davidorex/pi-project-workflows 0.6.1 → 0.9.1

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.6.1",
3
+ "version": "0.9.1",
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.6.1",
33
- "@davidorex/pi-workflows": "^0.6.1",
34
- "@davidorex/pi-behavior-monitors": "^0.6.1"
32
+ "@davidorex/pi-project": "^0.9.1",
33
+ "@davidorex/pi-workflows": "^0.9.1",
34
+ "@davidorex/pi-behavior-monitors": "^0.9.1"
35
35
  }
36
36
  }
@@ -102,8 +102,8 @@ See references/bundled-resources.md for full inventory.
102
102
  | Block | Title | Array Key | Item Fields |
103
103
  |-------|-------|-----------|-------------|
104
104
  | `architecture` | Architecture | `modules` | name, file, responsibility, dependencies? (array), lines? (integer) |
105
- | `audit` | audit | `checks` | id, description, status (string (pass|fail|warn|skip)), category?, details? |
106
- | `conformance-reference` | conformance-reference | `principles` | id, name, description?, rules (array) |
105
+ | `audit` | Audit | `checks` | id, description, status (string (pass|fail|warn|skip)), category?, details? |
106
+ | `conformance-reference` | Conformance Reference | `principles` | id, name, description?, rules (array) |
107
107
  | `decisions` | Decisions | `decisions` | id, decision, rationale, phase? (string|integer), status (string (decided|tentative|revisit|superseded)), context? |
108
108
  | `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
109
  | `gaps` | Gaps | `gaps` | id, description, status (string (open|resolved|deferred)), category (string (missing|incomplete|defect|improvement|technical-debt|question)), priority (string (low|medium|high|critical)), phase? (string|integer), resolved_by?, source? (string (human|agent|monitor|workflow)), details? |
@@ -78,7 +78,7 @@ Subcommands: `init`, `list`, `run`, `resume`, `validate`, `status`, `help`
78
78
  </keyboard_shortcuts>
79
79
 
80
80
  <bundled_resources>
81
- 21 agents, 11 schemas, 14 workflows, 28 templates bundled.
81
+ 24 agents, 14 schemas, 14 workflows, 31 templates bundled.
82
82
  See references/bundled-resources.md for full inventory.
83
83
  </bundled_resources>
84
84
 
@@ -1,13 +1,16 @@
1
1
  # Bundled Resources
2
2
 
3
- ## agents/ (21 files)
3
+ ## agents/ (24 files)
4
4
 
5
5
  - `agents/architecture-designer.agent.yaml`
6
6
  - `agents/architecture-inferrer.agent.yaml`
7
+ - `agents/audit-finding-verifier.agent.yaml`
7
8
  - `agents/audit-fixer.agent.yaml`
9
+ - `agents/audit-results-router.agent.yaml`
8
10
  - `agents/code-explorer.agent.yaml`
9
11
  - `agents/decomposer.agent.yaml`
10
12
  - `agents/gap-identifier.agent.yaml`
13
+ - `agents/gap-resolution-assessor.agent.yaml`
11
14
  - `agents/handoff-writer.agent.yaml`
12
15
  - `agents/investigator.agent.yaml`
13
16
  - `agents/pattern-analyzer.agent.yaml`
@@ -24,16 +27,19 @@
24
27
  - `agents/synthesizer.agent.yaml`
25
28
  - `agents/verifier.agent.yaml`
26
29
 
27
- ## schemas/ (11 files)
30
+ ## schemas/ (14 files)
28
31
 
32
+ - `schemas/audit-routing-manifest.schema.json`
29
33
  - `schemas/decomposition-specs.schema.json`
30
34
  - `schemas/execution-results.schema.json`
35
+ - `schemas/finding-verification.schema.json`
31
36
  - `schemas/investigation-findings.schema.json`
32
37
  - `schemas/pattern-analysis.schema.json`
33
38
  - `schemas/phase.schema.json`
34
39
  - `schemas/plan-breakdown.schema.json`
35
40
  - `schemas/quality-analysis.schema.json`
36
41
  - `schemas/research-findings.schema.json`
42
+ - `schemas/resolution-assessment.schema.json`
37
43
  - `schemas/structure-analysis.schema.json`
38
44
  - `schemas/synthesis.schema.json`
39
45
  - `schemas/verifier-output.schema.json`
@@ -55,7 +61,7 @@
55
61
  - `workflows/self-implement.workflow.yaml`
56
62
  - `workflows/typed-analysis.workflow.yaml`
57
63
 
58
- ## templates/ (28 files)
64
+ ## templates/ (31 files)
59
65
 
60
66
  - `templates/analyzers/base-analyzer.md`
61
67
  - `templates/analyzers/macros.md`
@@ -67,11 +73,14 @@
67
73
  - `templates/analyzers/structure.md`
68
74
  - `templates/architecture-designer/task.md`
69
75
  - `templates/architecture-inferrer/task.md`
76
+ - `templates/audit-finding-verifier/task.md`
70
77
  - `templates/audit-fixer/task.md`
78
+ - `templates/audit-results-router/task.md`
71
79
  - `templates/decomposer/task.md`
72
80
  - `templates/explorer/system.md`
73
81
  - `templates/explorer/task.md`
74
82
  - `templates/gap-identifier/task.md`
83
+ - `templates/gap-resolution-assessor/task.md`
75
84
  - `templates/handoff-writer/task.md`
76
85
  - `templates/investigator/task.md`
77
86
  - `templates/phase-author/task.md`