@llblab/pi-kit 0.1.3 → 0.1.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 +4 -0
- package/README.md +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@llblab/pi-kit` are documented here.
|
|
4
4
|
|
|
5
|
+
## 0.1.4 - 2026-08-20
|
|
6
|
+
|
|
7
|
+
- `Installation`: Updates the npm example to the current kit version and replaces the local-path example with direct installation from the GitHub repository.
|
|
8
|
+
|
|
5
9
|
## 0.1.3 - 2026-08-20
|
|
6
10
|
|
|
7
11
|
- `Extension Releases`: Advances `@llblab/pi-codex-usage` to `0.9.3` for current Pi header-type compatibility and Trusted Publisher releases, and `@llblab/pi-grow-loop` to `0.7.2` for audited Trusted Publisher releases.
|
package/README.md
CHANGED
|
@@ -18,13 +18,13 @@ Versions are exact by design. Updating an extension does not change an installed
|
|
|
18
18
|
From npm after publication:
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
|
-
pi install npm:@llblab/pi-kit@0.1.
|
|
21
|
+
pi install npm:@llblab/pi-kit@0.1.4
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
-
|
|
24
|
+
From GitHub:
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
|
-
pi install
|
|
27
|
+
pi install git:github.com/llblab/pi-kit
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
Pi loads the bundled extension entrypoints and Skills declared by this package. The kit itself does not register an extension or introduce runtime behavior.
|