@mediadatafusion/pi-workflow-suite 0.0.22 → 0.0.23
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 +7 -0
- package/README.md +8 -7
- package/VERSION +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable public releases will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.0.23] - 2026-06-19
|
|
6
|
+
|
|
7
|
+
### Improved
|
|
8
|
+
|
|
9
|
+
- Updated install guidance for Pi's self-only `pi update` behavior and `pi update --all` package updates.
|
|
10
|
+
- Documented planned sub-agent model routing for lower-cost worker configuration.
|
|
11
|
+
|
|
5
12
|
## [0.0.22] - 2026-06-14
|
|
6
13
|
|
|
7
14
|
### 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.23`
|
|
8
8
|
|
|
9
9
|
## Overview
|
|
10
10
|
|
|
@@ -1087,11 +1087,11 @@ pi install -l npm:@mediadatafusion/pi-workflow-suite
|
|
|
1087
1087
|
### Installing specific versions
|
|
1088
1088
|
|
|
1089
1089
|
```bash
|
|
1090
|
-
pi install npm:@mediadatafusion/pi-workflow-suite@0.0.
|
|
1091
|
-
pi install -l npm:@mediadatafusion/pi-workflow-suite@0.0.
|
|
1090
|
+
pi install npm:@mediadatafusion/pi-workflow-suite@0.0.23
|
|
1091
|
+
pi install -l npm:@mediadatafusion/pi-workflow-suite@0.0.23
|
|
1092
1092
|
```
|
|
1093
1093
|
|
|
1094
|
-
An unversioned install follows normal update behavior
|
|
1094
|
+
An unversioned install follows normal package update behavior through `pi update --all`, which updates Pi and installed packages/extensions together. Bare `pi update` updates Pi itself only. 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>`.
|
|
1095
1095
|
|
|
1096
1096
|
### Source install
|
|
1097
1097
|
|
|
@@ -1296,10 +1296,10 @@ See `docs/TROUBLESHOOTING.md` for detailed diagnostics.
|
|
|
1296
1296
|
|
|
1297
1297
|
## Versioning
|
|
1298
1298
|
|
|
1299
|
-
The current preparation version is `v0.0.
|
|
1299
|
+
The current preparation version is `v0.0.23`. Version information is intentionally aligned across:
|
|
1300
1300
|
|
|
1301
|
-
- `VERSION` (`v0.0.
|
|
1302
|
-
- `package.json` (`0.0.
|
|
1301
|
+
- `VERSION` (`v0.0.23`),
|
|
1302
|
+
- `package.json` (`0.0.23`),
|
|
1303
1303
|
- `package-lock.json`,
|
|
1304
1304
|
- this README,
|
|
1305
1305
|
- Workflow Suite settings/about output.
|
|
@@ -1343,4 +1343,5 @@ pi install npm:@mediadatafusion/pi-workflow-suite@<version>
|
|
|
1343
1343
|
- Optional timed checkpoint scheduling.
|
|
1344
1344
|
- User-supervised recovery helpers.
|
|
1345
1345
|
- Agent-routed compaction after Custom agent mode is implemented.
|
|
1346
|
+
- Sub-agent model routing so support workers can use lower-cost provider/model/thinking settings while parent workflow roles keep stronger models where needed.
|
|
1346
1347
|
- Session-local workflow profiles if the Pi runtime supports them cleanly.
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
v0.0.
|
|
1
|
+
v0.0.23
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mediadatafusion/pi-workflow-suite",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.23",
|
|
4
4
|
"description": "Multi-agent workflow suite for Pi with Idle, Standard, Plan, Mission, approval gates, reviewer/validator roles, sub-agents, model routing, web search/fetch, browser checks, diagrams, compaction, presets, settings, themes, widgets, and Repo Lock.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|