@mediadatafusion/pi-workflow-suite 0.0.20 → 0.0.21
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/CHANGELOG.md +11 -0
- package/README.md +6 -6
- package/VERSION +1 -1
- package/config/prompts/mission-repair.md +1 -0
- package/config/prompts/mission-run.md +1 -0
- package/extensions/workflow-modes.ts +1036 -187
- package/extensions/workflow-state.ts +20 -0
- package/extensions/workflow-subagent-policy.ts +236 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
All notable public releases will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.0.21] - 2026-06-13
|
|
6
|
+
|
|
7
|
+
### Hardened
|
|
8
|
+
|
|
9
|
+
- Hardened Mission Mode clarification and execution handoff behavior.
|
|
10
|
+
- Hardened sub-agent policy handling across workflow phases.
|
|
11
|
+
- Refined forced sub-agent exceptions and validation handoff timing.
|
|
12
|
+
- Refined Mission validation repair routing for safer continued progress.
|
|
13
|
+
- Hardened project-aware Plan/Mission resume selection.
|
|
14
|
+
- Hardened Plan Mode continuation behavior for multi-step plans.
|
|
15
|
+
|
|
5
16
|
## [0.0.20] - 2026-06-12
|
|
6
17
|
|
|
7
18
|
### Improved
|
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
[](#installation) [](#quick-start) [](#core-commands) [](#settings-reference)
|
|
6
6
|
|
|
7
|
-
**Workflow Suite Version:** `v0.0.
|
|
7
|
+
**Workflow Suite Version:** `v0.0.21`
|
|
8
8
|
|
|
9
9
|
## Overview
|
|
10
10
|
|
|
@@ -1055,8 +1055,8 @@ pi install -l npm:@mediadatafusion/pi-workflow-suite
|
|
|
1055
1055
|
### Installing specific versions
|
|
1056
1056
|
|
|
1057
1057
|
```bash
|
|
1058
|
-
pi install npm:@mediadatafusion/pi-workflow-suite@0.0.
|
|
1059
|
-
pi install -l npm:@mediadatafusion/pi-workflow-suite@0.0.
|
|
1058
|
+
pi install npm:@mediadatafusion/pi-workflow-suite@0.0.21
|
|
1059
|
+
pi install -l npm:@mediadatafusion/pi-workflow-suite@0.0.21
|
|
1060
1060
|
```
|
|
1061
1061
|
|
|
1062
1062
|
An unversioned install follows normal update behavior: `pi update` and `pi update --extensions` will pick up new package releases. A versioned install pins the package to that version. Pinned package specs are intentionally skipped by Pi's normal package update commands. To move a pinned install to a newer version, reinstall with the desired version. To switch back to latest tracking, use the unversioned install command without `@<version>`.
|
|
@@ -1262,10 +1262,10 @@ See `docs/TROUBLESHOOTING.md` for detailed diagnostics.
|
|
|
1262
1262
|
|
|
1263
1263
|
## Versioning
|
|
1264
1264
|
|
|
1265
|
-
The current preparation version is `v0.0.
|
|
1265
|
+
The current preparation version is `v0.0.21`. Version information is intentionally aligned across:
|
|
1266
1266
|
|
|
1267
|
-
- `VERSION` (`v0.0.
|
|
1268
|
-
- `package.json` (`0.0.
|
|
1267
|
+
- `VERSION` (`v0.0.21`),
|
|
1268
|
+
- `package.json` (`0.0.21`),
|
|
1269
1269
|
- `package-lock.json`,
|
|
1270
1270
|
- this README,
|
|
1271
1271
|
- Workflow Suite settings/about output.
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
v0.0.
|
|
1
|
+
v0.0.21
|
|
@@ -5,6 +5,7 @@ MANDATORY STRUCTURED HANDOFF: call workflow_repair_result before final response
|
|
|
5
5
|
You are PI MISSION MODE REPAIR EXECUTOR.
|
|
6
6
|
|
|
7
7
|
Repair concrete validator-identified failures for the current mission milestone and keep going while fixes are in-scope and non-destructive. Do not re-grade validation; only Mission validation can pass repaired work.
|
|
8
|
+
Do not call `workflow_progress` in Mission Mode. Mission repair completion is tracked only by `workflow_repair_result`.
|
|
8
9
|
|
|
9
10
|
Rules:
|
|
10
11
|
- Only fix concrete issues directly related to the failed milestone validation.
|
|
@@ -5,6 +5,7 @@ MANDATORY STRUCTURED HANDOFF: call mission_milestone_result before final respons
|
|
|
5
5
|
You are PI MISSION MODE EXECUTOR.
|
|
6
6
|
|
|
7
7
|
Run only the approved current mission milestone. Do not continue to later milestones unless Mission Mode explicitly starts the next milestone.
|
|
8
|
+
Do not call `workflow_progress` in Mission Mode. Mission milestone progress is tracked only by `mission_milestone_result`.
|
|
8
9
|
|
|
9
10
|
Milestone loop expectation:
|
|
10
11
|
1. Restate the current mission and milestone.
|