@naxodev/pi-apnea 0.1.0 → 0.2.0

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/README.md CHANGED
@@ -29,7 +29,7 @@ Run these commands inside Pi:
29
29
  /apnea status
30
30
  ```
31
31
 
32
- `setup` creates global profiles in `~/.config/apnea/config.json` and links the Herdr plugin when Herdr is available. `start` begins one workflow against the current working copy. `status` reports the current step and next legal operation.
32
+ `setup` creates global profiles in `~/.config/apnea/config.json`. `start` begins one workflow against the current working copy. `status` reports the current step and next legal operation.
33
33
 
34
34
  The shorter `/apnea-start` and `/apnea-status` aliases are also available. See the [Apnea CLI and operation reference](../apnea/README.md#cli-reference) for the shared command surface and exit behavior.
35
35
 
@@ -41,7 +41,7 @@ Apnea executes repository-controlled text through configured agent CLIs and can
41
41
 
42
42
  ## Versioning
43
43
 
44
- Compatible core patch releases flow through the `^0.1.0` dependency range. Incompatible host interface changes require coordinated minor releases of both packages.
44
+ This incompatible adapter line requires core `^0.2.0`. Compatible core patch releases flow through that range. Future incompatible host interface changes require coordinated minor releases of both packages.
45
45
 
46
46
  ## Contributing
47
47
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naxodev/pi-apnea",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Pi adapter for the Apnea multi-role workflow",
5
5
  "license": "MIT",
6
6
  "author": "Nacho Vazquez",
@@ -60,7 +60,7 @@
60
60
  "smoke:package": "bun scripts/package-smoke.ts"
61
61
  },
62
62
  "dependencies": {
63
- "@naxodev/apnea": "^0.1.0"
63
+ "@naxodev/apnea": "^0.2.0"
64
64
  },
65
65
  "peerDependencies": {
66
66
  "@earendil-works/pi-coding-agent": ">=0.83.0 <0.85.0"
@@ -15,6 +15,5 @@ If tools/commands are unavailable, run the apnea-setup skill steps:
15
15
  2. Create or update `~/.config/apnea/config.json` with **profiles** only (no project cmds).
16
16
  3. Optional: `.apnea/config.json` with role→profile names only.
17
17
  4. Point at `@naxodev/apnea/docs/protocol/config.md`.
18
- 5. Note `pane_style` (`regular` default / `floating` opt-in, needs herdr ≥ 0.7.4) — setup never writes it.
19
18
 
20
19
  Do not invent binaries. Do not write `cmd` into project config.
@@ -30,11 +30,9 @@ Leave the user with a valid **global** profile config and optional **project** r
30
30
  - Define profiles only for binaries that exist.
31
31
  - Include both `cmd_oneshot` and `cmd_interactive` where the harness supports them.
32
32
  - Bind default roles: orchestrator+coder → pi profile; planner+reviewer → claude or codex if present, else pi.
33
- - Preserve an existing `pane_style` (`regular`|`floating`) if present; **never write/flip `pane_style`** it is user opt-in only.
34
- 5. When herdr is on PATH, provision the herdr `apnea` plugin: copy `herdr-plugin/` from the installed `@naxodev/apnea` package to `~/.config/apnea/herdr-plugin/` (refresh on every run) and, if herdr ≥ 0.7.4 and the plugin is not already linked, run `herdr plugin link ~/.config/apnea/herdr-plugin`. On herdr < 0.7.4, skip link and note the upgrade requirement.
35
- 6. Optionally write `.apnea/config.json` with **only** `{ "roles": { "...": { "profile": "..." } } }`.
36
- 7. Validate against trust rules: no project `cmd_*`, no unknown isolation modes.
37
- 8. Next: `/apnea start <goal>` inside Herdr.
33
+ 5. Optionally write `.apnea/config.json` with **only** `{ "roles": { "...": { "profile": "..." } } }`.
34
+ 6. Validate against trust rules: no project `cmd_*`, no unknown isolation modes.
35
+ 7. Next: `/apnea start <goal>` inside Herdr.
38
36
 
39
37
  ## Refuse
40
38