@groeponline/pi-missions 0.3.15 → 0.4.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 +11 -18
- 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.4.0] - 2026-09-12
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- peer-range check honors pinned * range; integration non-goals (#26)
|
|
14
|
+
## [0.3.16] - 2026-09-11
|
|
15
|
+
|
|
16
|
+
### Documentation
|
|
17
|
+
- add durable mission lifecycle visual (#24)
|
|
10
18
|
## [0.3.15] - 2026-09-11
|
|
11
19
|
|
|
12
20
|
### Documentation
|
package/README.md
CHANGED
|
@@ -45,6 +45,12 @@ Agent sessions are temporary. Real implementation work is not. Pi Missions store
|
|
|
45
45
|
|
|
46
46
|
Use it when a job is too large for one prompt, one context window or one uninterrupted coding session.
|
|
47
47
|
|
|
48
|
+
<p align="center">
|
|
49
|
+
<img src="https://raw.githubusercontent.com/GroepOnline/pi-missions/main/docs/images/mission-lifecycle.svg" alt="Pi Missions durable lifecycle: create or load, advance features, persist state and resume later" width="100%">
|
|
50
|
+
</p>
|
|
51
|
+
|
|
52
|
+
The important bit is not the queue UI. It is that the active pointer, transition history and completion evidence survive the session that created them.
|
|
53
|
+
|
|
48
54
|
## Where it fits
|
|
49
55
|
|
|
50
56
|
Pi Missions owns **durable work state**. Wishcraft captures lightweight ideas; Missions turns serious work into a resumable track; Agent Orchestrator executes parallel or isolated work when that becomes useful.
|
|
@@ -55,24 +61,11 @@ Pi Missions owns **durable work state**. Wishcraft captures lightweight ideas; M
|
|
|
55
61
|
- **pi-missions**: durable plan, queue, evidence and recovery state.
|
|
56
62
|
- [`pi-agent-orchestrator`](https://github.com/GroepOnline/pi-agent-orchestrator): agents, worktrees, swarms, schedules and execution handoffs.
|
|
57
63
|
|
|
58
|
-
GitHub, Slack
|
|
59
|
-
|
|
60
|
-
##
|
|
61
|
-
|
|
62
|
-
```mermaid
|
|
63
|
-
flowchart LR
|
|
64
|
-
A[Create or load mission] --> B[Pending feature]
|
|
65
|
-
B -->|/mission next| C[Active feature]
|
|
66
|
-
C -->|evidence accepted| D[Done]
|
|
67
|
-
C -->|cannot proceed| E[Blocked]
|
|
68
|
-
D -->|more ready work| B
|
|
69
|
-
D -->|all features complete| F[Mission complete]
|
|
70
|
-
E -->|another feature is ready| B
|
|
71
|
-
C --> G[history.jsonl]
|
|
72
|
-
D --> H[evidence/Fxxx.md]
|
|
73
|
-
```
|
|
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
|
+
|
|
66
|
+
## Runtime contract
|
|
74
67
|
|
|
75
|
-
The agent
|
|
68
|
+
The agent works only on the active feature. Completion is explicit: `/mission done` or `mission_feature_done` records evidence before the queue advances. A blocked feature records its reason instead of being silently skipped.
|
|
76
69
|
|
|
77
70
|
## What persists
|
|
78
71
|
|
|
@@ -169,7 +162,7 @@ src/
|
|
|
169
162
|
└── cli/ # pi-missions CLI
|
|
170
163
|
```
|
|
171
164
|
|
|
172
|
-
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).
|
|
173
166
|
|
|
174
167
|
## Requirements
|
|
175
168
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@groeponline/pi-missions",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.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,
|