pi-agent-rb 0.1.6 → 0.1.8
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +22 -0
- data/README.md +1 -1
- data/lib/pi_agent/version.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fb169e68da7780dbbb7ee0d36515f965deaaf45da978fc0f52f70f9aa5ab4631
|
|
4
|
+
data.tar.gz: 667b55de12cb234ac60dcf905a1ee1e1773ed5789990b2fa01d22f1a94b4d91b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 208558dffa6df733e9cc48c4773ab6cf75fb669f95ac762fd5a51d47545cf19f605e17f54de613934677d860610d9b7b5d5c8076567c43656b440085e4067216
|
|
7
|
+
data.tar.gz: 6dfb1ffea9552d1ee1c2205336850587a0cedaef4fe1e2c3e9401564d7fb6376fa228b128b6ca17ade614f1b5881155685af3c2dd4302442f705667a4570be29
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.8] - 2026-06-20
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Bumped pinned upstream `pi-coding-agent` version to `0.79.9` (rolls up
|
|
14
|
+
0.79.7–0.79.9: automatic light/dark theme mode, selective provider base
|
|
15
|
+
entry points, Mistral prompt caching, chat-template thinking for
|
|
16
|
+
OpenAI-compatible providers, and assorted provider/streaming/edit fixes).
|
|
17
|
+
RPC-adjacent changes are additive only: compact results and compaction
|
|
18
|
+
events now carry estimated post-compaction token counts, and RPC
|
|
19
|
+
unknown-command errors now include the request id. No changes to the RPC
|
|
20
|
+
protocol surface or the `--approve`/`--no-approve` flags this gem drives.
|
|
21
|
+
|
|
22
|
+
## [0.1.7] - 2026-06-16
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
- Bumped pinned upstream `pi-coding-agent` version to `0.79.6` (rolls up
|
|
26
|
+
0.79.5–0.79.6: provider-scoped API key `env` overrides in `auth.json`, a
|
|
27
|
+
global `httpProxy` setting, HTTP dispatcher respecting caller-provided
|
|
28
|
+
`fetch` overrides, and assorted provider/streaming fixes; no changes to the
|
|
29
|
+
RPC protocol surface or the `--approve`/`--no-approve` flags this gem
|
|
30
|
+
drives).
|
|
31
|
+
|
|
10
32
|
## [0.1.6] - 2026-06-15
|
|
11
33
|
|
|
12
34
|
### Changed
|
data/README.md
CHANGED
|
@@ -14,7 +14,7 @@ building interactive agent UIs (web, TUI) on top of pi.
|
|
|
14
14
|
|
|
15
15
|
- Ruby 3.3+
|
|
16
16
|
- `pi` on `PATH` (install via `npm i -g @earendil-works/pi-coding-agent`)
|
|
17
|
-
- This gem is pinned against pi `0.79.
|
|
17
|
+
- This gem is pinned against pi `0.79.9`; other versions may work but are not verified.
|
|
18
18
|
|
|
19
19
|
## Installation
|
|
20
20
|
|
data/lib/pi_agent/version.rb
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
module PiAgent
|
|
4
|
-
VERSION = "0.1.
|
|
4
|
+
VERSION = "0.1.8"
|
|
5
5
|
|
|
6
6
|
# Pinned upstream pi-coding-agent version this gem is verified against.
|
|
7
7
|
# See: https://www.npmjs.com/package/@earendil-works/pi-coding-agent
|
|
8
|
-
SUPPORTED_PI_VERSION = "0.79.
|
|
8
|
+
SUPPORTED_PI_VERSION = "0.79.9"
|
|
9
9
|
end
|