@groeponline/pi-missions 0.3.3 → 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 +4 -0
  2. package/README.md +10 -10
  3. package/package.json +17 -10
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.5] - 2026-08-23
11
+
12
+ ## [0.3.4] - 2026-08-22
13
+
10
14
  ## [0.3.3] - 2026-08-22
11
15
 
12
16
  ## [0.3.2] - 2026-08-22
package/README.md CHANGED
@@ -1,27 +1,27 @@
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) ![Tests](https://img.shields.io/badge/tests-892%20passing-brightgreen.svg) ![Pi Extension](https://img.shields.io/badge/Pi-Extension-9b59b6.svg) ![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
 
19
- This repository is a hardened `0.1.x` release candidate, not a finished marketplace platform. The extension entrypoint, state management, mission commands, tools, analytics dashboard, CLI, database repositories, and tests are wired. Integration classes for GitHub/Slack/webhooks are still lightweight scaffolding and should not be advertised as production integrations yet.
19
+ The public package is on the `0.3.x` line and is actively maintained as a durable local mission/runtime layer for Pi. The extension entrypoint, state management, mission commands, tools, analytics dashboard, CLI, database repositories, and tests are wired. Integration classes for GitHub/Slack/webhooks are still lightweight scaffolding and should not be advertised as production integrations yet.
20
20
 
21
21
  Verified in this snapshot:
22
22
 
23
23
  - `npm run check` passes.
24
- - `npm test` passes: 31 test files, 892 tests.
24
+ - `npm test` passes in the current CI matrix.
25
25
  - `npm run build` produces `dist/index.js`, `dist/index.d.ts`, `dist/cli/index.js`, and copied database schema assets.
26
26
  - `./scripts/smoke-test.sh` confirms the Pi extension exports the default `piMissions` function.
27
27
  - `node dist/cli/index.js doctor` works on Node.js 22 using `node:sqlite`.
@@ -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.
@@ -146,4 +146,4 @@ Mission state is stored locally under `~/.pi/missions/<mission-id>/`:
146
146
 
147
147
  ## License
148
148
 
149
- MIT © OnlineChef
149
+ MIT © GroepOnline
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@groeponline/pi-missions",
3
- "version": "0.3.3",
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,7 +14,14 @@
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",
@@ -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",