@oas-framework/pi 0.9.1 → 0.10.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 +13 -11
- package/extension/index.ts +5 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,27 +1,29 @@
|
|
|
1
1
|
# @oas-framework/pi
|
|
2
2
|
|
|
3
|
-
|
|
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
|
|
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
|
-
|
|
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
|
-
|
|
14
|
-
|
|
15
|
-
|
|
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
|
-
|
|
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
|
|
package/extension/index.ts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* OAS pi
|
|
2
|
+
* OAS pi runtime bridge — minimal glue.
|
|
3
3
|
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
*
|
|
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.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.10.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",
|