@groeponline/pi-missions 0.3.3 → 0.3.4
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 +4 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -12,16 +12,16 @@
|
|
|
12
12
|
|
|
13
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.
|
|
14
14
|
|
|
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
|
|
|
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`.
|
|
@@ -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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@groeponline/pi-missions",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"description": "Durable mission orchestration for the Pi coding agent: mission plans, feature queues, evidence trails, and session handoffs that survive restarts.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"type": "git",
|
|
21
21
|
"url": "https://github.com/GroepOnline/pi-missions.git"
|
|
22
22
|
},
|
|
23
|
-
"homepage": "https://
|
|
23
|
+
"homepage": "https://pi.dev/packages/@groeponline/pi-missions",
|
|
24
24
|
"bugs": {
|
|
25
25
|
"url": "https://github.com/GroepOnline/pi-missions/issues"
|
|
26
26
|
},
|