@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.
- package/CHANGELOG.md +2 -0
- package/README.md +7 -7
- package/package.json +18 -11
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
|
-
|
|
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
|
-
#
|
|
5
|
+
# @groeponline/pi-missions
|
|
6
6
|
|
|
7
|
-
**
|
|
7
|
+
**Turn short-lived agent sessions into durable execution tracks.**
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
|
11
11
|
</div>
|
|
12
12
|
|
|
13
|
-
`pi-missions`
|
|
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
|
-
[](https://www.npmjs.com/package/@groeponline/pi-missions) [](https://github.com/GroepOnline/pi-missions/actions/workflows/ci.yml) [](https://pi.dev/packages/@groeponline/pi-missions) 
|
|
15
|
+
[](https://www.npmjs.com/package/@groeponline/pi-missions) [](https://www.npmjs.com/package/@groeponline/pi-missions) [](https://github.com/GroepOnline/pi-missions/actions/workflows/ci.yml) [](https://pi.dev/packages/@groeponline/pi-missions) 
|
|
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
|
-

|
|
128
|
+

|
|
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
|
-

|
|
139
|
+

|
|
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
|
-
"description": "
|
|
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://
|
|
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": "
|
|
65
|
-
"@earendil-works/pi-coding-agent": "
|
|
66
|
-
"@earendil-works/pi-tui": "
|
|
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",
|