@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 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.4] - 2026-08-22
11
+
10
12
  ## [0.3.3] - 2026-08-22
11
13
 
12
14
  ## [0.3.2] - 2026-08-22
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
- [![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) [![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`.
@@ -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,6 +1,6 @@
1
1
  {
2
2
  "name": "@groeponline/pi-missions",
3
- "version": "0.3.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://github.com/GroepOnline/pi-missions#readme",
23
+ "homepage": "https://pi.dev/packages/@groeponline/pi-missions",
24
24
  "bugs": {
25
25
  "url": "https://github.com/GroepOnline/pi-missions/issues"
26
26
  },