@groeponline/pi-missions 0.3.16 → 0.5.0
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 +8 -0
- package/README.md +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.5.0] - 2026-09-12
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- per-package preview container (#27)
|
|
14
|
+
## [0.4.0] - 2026-09-12
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
- peer-range check honors pinned * range; integration non-goals (#26)
|
|
10
18
|
## [0.3.16] - 2026-09-11
|
|
11
19
|
|
|
12
20
|
### Documentation
|
package/README.md
CHANGED
|
@@ -61,7 +61,7 @@ Pi Missions owns **durable work state**. Wishcraft captures lightweight ideas; M
|
|
|
61
61
|
- **pi-missions**: durable plan, queue, evidence and recovery state.
|
|
62
62
|
- [`pi-agent-orchestrator`](https://github.com/GroepOnline/pi-agent-orchestrator): agents, worktrees, swarms, schedules and execution handoffs.
|
|
63
63
|
|
|
64
|
-
GitHub, Slack
|
|
64
|
+
Explicit non-goal: pi-missions ships no GitHub, Slack or webhook integrations — there are no such integration classes in this package, no network calls to those providers, and no webhook listeners. Mission state stays local (SQLite/JSONL under `MISSIONS_ROOT`). If provider integrations are ever proposed, production-readiness gates are tracked in [#13](https://github.com/GroepOnline/pi-missions/issues/13).
|
|
65
65
|
|
|
66
66
|
## Runtime contract
|
|
67
67
|
|
|
@@ -162,7 +162,7 @@ src/
|
|
|
162
162
|
└── cli/ # pi-missions CLI
|
|
163
163
|
```
|
|
164
164
|
|
|
165
|
-
GitHub, Slack and webhook integration classes
|
|
165
|
+
Explicit non-goal: GitHub, Slack and webhook integrations are out of scope for this package (no integration classes, no provider network calls, no webhook listeners). They are not advertised as features; any future proposal must meet the gates tracked in [#13](https://github.com/GroepOnline/pi-missions/issues/13).
|
|
166
166
|
|
|
167
167
|
## Requirements
|
|
168
168
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@groeponline/pi-missions",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "Persistent mission orchestration for Pi: durable plans, task queues, evidence trails, SQLite state, resumable execution, and handoffs across agent sessions.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|