@kulapard/pi-caveman 0.4.0 → 0.4.1
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 +16 -1
- package/README.md +15 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.4.1] - 2026-06-29
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- README install instructions now recommend `pi install
|
|
15
|
+
https://github.com/kulapard/pi-caveman` as the primary direct-load method,
|
|
16
|
+
keeping `pi -e` documented as a per-session fallback.
|
|
17
|
+
|
|
18
|
+
### Added
|
|
19
|
+
|
|
20
|
+
- Guard tests for `caveman-compress` backup rules, the GitHub install URL in
|
|
21
|
+
the root README, and the `caveman` skill's delegation to `caveman-commit` /
|
|
22
|
+
`caveman-review`.
|
|
23
|
+
|
|
10
24
|
## [0.4.0] - 2026-06-29
|
|
11
25
|
|
|
12
26
|
### Fixed
|
|
@@ -90,7 +104,8 @@ port of [caveman](https://github.com/JuliusBrussee/caveman).
|
|
|
90
104
|
token, automatic provenance, a tag-equals-version guard, and a concurrency
|
|
91
105
|
group).
|
|
92
106
|
|
|
93
|
-
[Unreleased]: https://github.com/kulapard/pi-caveman/compare/v0.4.
|
|
107
|
+
[Unreleased]: https://github.com/kulapard/pi-caveman/compare/v0.4.1...HEAD
|
|
108
|
+
[0.4.1]: https://github.com/kulapard/pi-caveman/compare/v0.4.0...v0.4.1
|
|
94
109
|
[0.4.0]: https://github.com/kulapard/pi-caveman/compare/v0.3.0...v0.4.0
|
|
95
110
|
[0.3.0]: https://github.com/kulapard/pi-caveman/compare/v0.2.0...v0.3.0
|
|
96
111
|
[0.2.0]: https://github.com/kulapard/pi-caveman/compare/v0.1.0...v0.2.0
|
package/README.md
CHANGED
|
@@ -20,13 +20,23 @@ Install it into a Pi setup with:
|
|
|
20
20
|
pi install npm:@kulapard/pi-caveman
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
-
You can also load it straight from a checkout on disk
|
|
24
|
-
|
|
23
|
+
You can also load it straight from a checkout on disk — see the `pi -e`
|
|
24
|
+
mechanism below.
|
|
25
25
|
|
|
26
|
-
###
|
|
26
|
+
### Install from GitHub
|
|
27
27
|
|
|
28
|
-
The simplest
|
|
29
|
-
|
|
28
|
+
The simplest way to load the latest version directly from the repository is:
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
pi install https://github.com/kulapard/pi-caveman
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Pi resolves the `pi` block in `package.json` and loads both the extension and
|
|
35
|
+
all skills from the cloned directory.
|
|
36
|
+
|
|
37
|
+
### Load the extension directly (per-session)
|
|
38
|
+
|
|
39
|
+
For quick testing without installing, use Pi's `-e` flag for a single session:
|
|
30
40
|
|
|
31
41
|
```bash
|
|
32
42
|
pi -e /path/to/pi-caveman/extensions/caveman.ts --skill /path/to/pi-caveman/skills
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kulapard/pi-caveman",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Caveman for Pi: ultra-compressed agent output that preserves technical substance. Six intensity modes, slash commands, natural-language activation, and a session statusline.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|