@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.
- package/CHANGELOG.md +4 -0
- package/README.md +10 -10
- package/package.json +17 -10
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
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://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
|
|
|
19
|
-
|
|
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
|
|
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
|
-

|
|
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.
|
|
@@ -146,4 +146,4 @@ Mission state is stored locally under `~/.pi/missions/<mission-id>/`:
|
|
|
146
146
|
|
|
147
147
|
## License
|
|
148
148
|
|
|
149
|
-
MIT ©
|
|
149
|
+
MIT © GroepOnline
|
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,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": "
|
|
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",
|