@groeponline/pi-missions 0.3.4 → 0.3.5

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +2 -0
  2. package/README.md +7 -7
  3. package/package.json +18 -11
package/CHANGELOG.md CHANGED
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.3.5] - 2026-08-23
11
+
10
12
  ## [0.3.4] - 2026-08-22
11
13
 
12
14
  ## [0.3.3] - 2026-08-22
package/README.md CHANGED
@@ -1,18 +1,18 @@
1
1
  <div align="center">
2
2
 
3
- ![Pi Missions Banner](docs/images/missions_banner.png)
3
+ <img src="https://raw.githubusercontent.com/GroepOnline/pi-missions/main/docs/images/missions_banner.png" alt="Pi Missions — durable execution tracks for Pi" width="100%">
4
4
 
5
- # 🚀 @groeponline/pi-missions
5
+ # @groeponline/pi-missions
6
6
 
7
- **Durable mission orchestration + task queues + state handoffs for the Pi coding agent**
7
+ **Turn short-lived agent sessions into durable execution tracks.**
8
8
 
9
9
  ---
10
10
 
11
11
  </div>
12
12
 
13
- `pi-missions` turns short-lived Pi sessions into long-running execution tracks. It gives an agent a durable mission plan, feature queue, history log, evidence folder, and session handoff layer so multi-step work can survive restarts, context resets, forks, and interruptions.
13
+ `pi-missions` keeps the work alive when a Pi session ends. A mission carries its plan, task queue, state, history, evidence, and handoff context forward, so multi-step implementation can survive restarts, compaction, forks, and interruptions without rebuilding the plan from memory.
14
14
 
15
- [![npm](https://img.shields.io/npm/v/@groeponline/pi-missions.svg)](https://www.npmjs.com/package/@groeponline/pi-missions) [![CI](https://github.com/GroepOnline/pi-missions/actions/workflows/ci.yml/badge.svg)](https://github.com/GroepOnline/pi-missions/actions/workflows/ci.yml) [![Pi package](https://img.shields.io/badge/Pi-package-9b59b6.svg)](https://pi.dev/packages/@groeponline/pi-missions) ![License](https://img.shields.io/badge/license-MIT-green.svg)
15
+ [![npm](https://img.shields.io/npm/v/@groeponline/pi-missions.svg)](https://www.npmjs.com/package/@groeponline/pi-missions) [![downloads](https://img.shields.io/npm/dm/@groeponline/pi-missions.svg?label=downloads)](https://www.npmjs.com/package/@groeponline/pi-missions) [![CI](https://github.com/GroepOnline/pi-missions/actions/workflows/ci.yml/badge.svg)](https://github.com/GroepOnline/pi-missions/actions/workflows/ci.yml) [![Pi package](https://img.shields.io/badge/Pi-package-9b59b6.svg)](https://pi.dev/packages/@groeponline/pi-missions) ![License](https://img.shields.io/badge/license-MIT-green.svg)
16
16
 
17
17
  ## Status
18
18
 
@@ -125,7 +125,7 @@ The original native `better-sqlite3` hard dependency was removed from the defaul
125
125
 
126
126
  ## State Model
127
127
 
128
- ![Pi Missions State Model](docs/images/missions_state_model.png)
128
+ ![Pi Missions State Model](https://raw.githubusercontent.com/GroepOnline/pi-missions/main/docs/images/missions_state_model.png)
129
129
 
130
130
  Mission state is stored locally under `~/.pi/missions/<mission-id>/`:
131
131
  - `plan.json`: Current mission plan, feature list, and active pointer.
@@ -136,7 +136,7 @@ Mission state is stored locally under `~/.pi/missions/<mission-id>/`:
136
136
 
137
137
  ## Typical Workflow
138
138
 
139
- ![Pi Missions Typical Workflow](docs/images/missions_workflow.png)
139
+ ![Pi Missions Typical Workflow](https://raw.githubusercontent.com/GroepOnline/pi-missions/main/docs/images/missions_workflow.png)
140
140
 
141
141
  1. Create a mission with `/mission new <title>`.
142
142
  2. Break the mission into features or load an existing plan.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@groeponline/pi-missions",
3
- "version": "0.3.4",
4
- "description": "Durable mission orchestration for the Pi coding agent: mission plans, feature queues, evidence trails, and session handoffs that survive restarts.",
3
+ "version": "0.3.5",
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,
7
7
  "keywords": [
@@ -14,13 +14,20 @@
14
14
  "orchestration",
15
15
  "task-management",
16
16
  "sqlite",
17
- "cli"
17
+ "cli",
18
+ "persistent-agent",
19
+ "workflow",
20
+ "state-management",
21
+ "task-queue",
22
+ "resumable",
23
+ "evidence",
24
+ "agent-state"
18
25
  ],
19
26
  "repository": {
20
27
  "type": "git",
21
28
  "url": "https://github.com/GroepOnline/pi-missions.git"
22
29
  },
23
- "homepage": "https://pi.dev/packages/@groeponline/pi-missions",
30
+ "homepage": "https://github.com/GroepOnline/pi-missions#readme",
24
31
  "bugs": {
25
32
  "url": "https://github.com/GroepOnline/pi-missions/issues"
26
33
  },
@@ -52,19 +59,19 @@
52
59
  "lint": "cross-env NODE_OPTIONS=--max-old-space-size=4096 tsc --noEmit",
53
60
  "test": "cross-env NODE_OPTIONS=--max-old-space-size=4096 vitest run",
54
61
  "bench": "vitest bench",
55
- "prepublishOnly": "npm run build",
62
+ "prepublishOnly": "npm run build && npm run verify:pi-package",
56
63
  "db:init": "node dist/cli/index.js doctor",
57
64
  "test:coverage": "cross-env NODE_OPTIONS=--max-old-space-size=4096 vitest run --coverage",
58
65
  "smoke:ci": "node scripts/ci-smoke.mjs",
59
66
  "release": "node scripts/release.mjs",
60
- "verify:package": "node scripts/verify-package.mjs",
61
- "verify:release": "node scripts/release.mjs auto --dry-run"
67
+ "verify:package": "node scripts/verify-package.mjs && node scripts/verify-pi-package-contract.mjs",
68
+ "verify:release": "node scripts/release.mjs auto --dry-run",
69
+ "verify:pi-package": "node scripts/verify-pi-package-contract.mjs"
62
70
  },
63
71
  "peerDependencies": {
64
- "@earendil-works/pi-ai": ">=0.77.0 <0.86.0",
65
- "@earendil-works/pi-coding-agent": ">=0.74.0 <0.86.0",
66
- "@earendil-works/pi-tui": ">=0.74.0 <0.86.0",
67
- "typebox": "^1.1.38"
72
+ "@earendil-works/pi-ai": "*",
73
+ "@earendil-works/pi-coding-agent": "*",
74
+ "@earendil-works/pi-tui": "*"
68
75
  },
69
76
  "dependencies": {
70
77
  "@sinclair/typebox": "^0.31.28",