@mediadatafusion/pi-workflow-suite 0.0.16 → 0.0.17
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 +6 -0
- package/README.md +6 -6
- package/VERSION +1 -1
- package/package.json +13 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
All notable public releases will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.0.17] - 2026-06-10
|
|
6
|
+
|
|
7
|
+
### Improved
|
|
8
|
+
|
|
9
|
+
- Improved package metadata to better reflect the suite's workflow modes, configuration surfaces, and orchestration features.
|
|
10
|
+
|
|
5
11
|
## [0.0.16] - 2026-06-09
|
|
6
12
|
|
|
7
13
|
### Fixed
|
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.17`
|
|
8
8
|
|
|
9
9
|
## Overview
|
|
10
10
|
|
|
@@ -1007,8 +1007,8 @@ pi install -l npm:@mediadatafusion/pi-workflow-suite
|
|
|
1007
1007
|
### Installing specific versions
|
|
1008
1008
|
|
|
1009
1009
|
```bash
|
|
1010
|
-
pi install npm:@mediadatafusion/pi-workflow-suite@0.0.
|
|
1011
|
-
pi install -l npm:@mediadatafusion/pi-workflow-suite@0.0.
|
|
1010
|
+
pi install npm:@mediadatafusion/pi-workflow-suite@0.0.17
|
|
1011
|
+
pi install -l npm:@mediadatafusion/pi-workflow-suite@0.0.17
|
|
1012
1012
|
```
|
|
1013
1013
|
|
|
1014
1014
|
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>`.
|
|
@@ -1214,10 +1214,10 @@ See `docs/TROUBLESHOOTING.md` for detailed diagnostics.
|
|
|
1214
1214
|
|
|
1215
1215
|
## Versioning
|
|
1216
1216
|
|
|
1217
|
-
The current preparation version is `v0.0.
|
|
1217
|
+
The current preparation version is `v0.0.17`. Version information is intentionally aligned across:
|
|
1218
1218
|
|
|
1219
|
-
- `VERSION` (`v0.0.
|
|
1220
|
-
- `package.json` (`0.0.
|
|
1219
|
+
- `VERSION` (`v0.0.17`),
|
|
1220
|
+
- `package.json` (`0.0.17`),
|
|
1221
1221
|
- `package-lock.json`,
|
|
1222
1222
|
- this README,
|
|
1223
1223
|
- Workflow Suite settings/about output.
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
v0.0.
|
|
1
|
+
v0.0.17
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mediadatafusion/pi-workflow-suite",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.0.17",
|
|
4
|
+
"description": "Multi-agent workflow suite for Pi with Idle, Standard, Plan, and Mission modes; approval gates; reviewer and validator roles; configurable sub-agent orchestration; model routing; web search/fetch; browser checks; diagrams; compaction; settings, presets, themes, widgets, Repo Lock, repair/retry loops, checkpoints, and live-safe install tooling.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -24,9 +24,20 @@
|
|
|
24
24
|
"workflow-suite",
|
|
25
25
|
"workflow-orchestration",
|
|
26
26
|
"agent-workflow",
|
|
27
|
+
"idle-mode",
|
|
27
28
|
"plan-mode",
|
|
28
29
|
"mission-mode",
|
|
29
30
|
"standard-mode",
|
|
31
|
+
"multi-agent",
|
|
32
|
+
"approval-gates",
|
|
33
|
+
"review-validation",
|
|
34
|
+
"sub-agent-orchestration",
|
|
35
|
+
"model-routing",
|
|
36
|
+
"web-search",
|
|
37
|
+
"browser-verification",
|
|
38
|
+
"repo-lock",
|
|
39
|
+
"workflow-settings",
|
|
40
|
+
"workflow-widgets",
|
|
30
41
|
"subagents",
|
|
31
42
|
"skills",
|
|
32
43
|
"prompts",
|