@oas-framework/pi 0.9.1 → 0.11.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
@@ -1,27 +1,29 @@
1
1
  # @oas-framework/pi
2
2
 
3
- Minimal pi adapter for [OAS](https://github.com/OAS-Framework/oas).
3
+ Pi runtime bridge for [OAS](https://github.com/OAS-Framework/oas).
4
4
 
5
5
  The runtime-neutral kernel and universal `oas` CLI live in
6
- `@oas-framework/oas`. This adapter registers no operational tools. It only:
6
+ `@oas-framework/oas`. This bridge registers no operational tools. It only:
7
7
 
8
- - exposes `oas-getting-started` before an OAS workspace exists;
9
- - points spawned sessions at their exact instance-local `.agents/skills` set;
8
+ - exposes `oas-getting-started` before an OAS workspace exists (the
9
+ acquisition funnel);
10
+ - contributes the instance-local `.agents/skills` set inside a spawned
11
+ instance;
10
12
  - journals compaction summaries and sends resume nudges when the active
11
- knowledge capability created `STATE.md`/`log.md`.
13
+ knowledge capability created `STATE.md`/`log.md` — the OKF session
14
+ protocol enforced at runtime.
12
15
 
13
- The kernel launches pi with `--no-skills --skill <instance>/.agents/skills`,
14
- so user, project, settings, ancestor, and pi-package skill discovery cannot
15
- pollute one soul's selected runtime surface.
16
+ Skill resolution itself is owned by the kernel: spawn materializes the exact
17
+ kernel + soul + active-capability set into each instance's `.agents/skills`
18
+ and launches pi with that directory as an explicit skill path. Ambient
19
+ skills (user-level, packages, work tree) coexist with the OAS-composed set.
16
20
 
17
21
  ```bash
18
22
  npm install -g @oas-framework/oas
19
23
  pi install npm:@oas-framework/pi
20
24
  ```
21
25
 
22
- Install matching versions and upgrade both packages together. Exact isolation
23
- needs the new kernel launch flags and this adapter's instance-only discovery.
24
- An older adapter still contributes workspace and package skill roots. OAS
26
+ OAS
25
27
  publishes both packages from the same version tag. Reload pi after an adapter
26
28
  install or upgrade.
27
29
 
@@ -1,9 +1,10 @@
1
1
  /**
2
- * OAS pi adapter — minimal runtime glue.
2
+ * OAS pi runtime bridge — minimal glue.
3
3
  *
4
- * Skill visibility is deliberately instance-local. Outside an instance, only
5
- * oas-getting-started is contributed as pre-workspace bootstrap. The kernel
6
- * materializes every spawned instance's exact set in .agents/skills.
4
+ * The kernel materializes every spawned instance's exact set in
5
+ * .agents/skills; this bridge contributes it inside an instance, plus the
6
+ * pre-workspace oas-getting-started bootstrap outside one, and drives the
7
+ * memory session events. Ambient skills coexist with the OAS-composed set.
7
8
  */
8
9
  import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
9
10
  import { appendLogEntry, PACKAGED_SKILLS_DIR } from "./core-loader.mjs";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@oas-framework/pi",
3
- "version": "0.9.1",
4
- "description": "Minimal OAS pi adapterinstance-local skill discovery and memory session events over the runtime-neutral @oas-framework/oas kernel",
3
+ "version": "0.11.0",
4
+ "description": "OAS pi runtime bridge memory session events and pre-workspace bootstrap over the runtime-neutral @oas-framework/oas kernel",
5
5
  "keywords": [
6
6
  "pi-package",
7
7
  "agents",