@groeponline/pi-missions 0.3.15 → 0.3.16

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 CHANGED
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.3.16] - 2026-09-11
11
+
12
+ ### Documentation
13
+ - add durable mission lifecycle visual (#24)
10
14
  ## [0.3.15] - 2026-09-11
11
15
 
12
16
  ### 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.
@@ -57,22 +63,9 @@ Pi Missions owns **durable work state**. Wishcraft captures lightweight ideas; M
57
63
 
58
64
  GitHub, Slack and webhook integration classes remain lightweight scaffolding; production-readiness is tracked in [#13](https://github.com/GroepOnline/pi-missions/issues/13).
59
65
 
60
- ## Execution loop
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
- ```
66
+ ## Runtime contract
74
67
 
75
- The agent is expected to work only on the active feature. Completion is explicit: `/mission done` or `mission_feature_done` records evidence before the queue advances.
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groeponline/pi-missions",
3
- "version": "0.3.15",
3
+ "version": "0.3.16",
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,