pi-agent-rb 0.1.16 → 0.1.17
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 +13 -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: 2c9ee93c9a0be8b3186fdfed49511db3d50c4c1a72c0f3058d5ba745d65f1cfa
|
|
4
|
+
data.tar.gz: 8c046616ce13be91c30e2d34ddcbf6b42badca576187bf65994e0084da71375b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 33a6418db510ba841bc2ed974592aba167fcdf44dcb86a54bcc1c046869c9e900caf510457933aea602abf0e647b053c157d5f350109d8613bb4c667c1ce1870
|
|
7
|
+
data.tar.gz: d742668832dc0ea144d690cfc766125fee9b017d4094339b7bf46164155e4d248fb05f787dd306fc39f2f1eba838b060d5d44cd31c7c3f5f3d0b00f36dcd924d
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.17] - 2026-07-17
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Bumped pinned upstream `pi-coding-agent` version to `0.80.10` (from
|
|
14
|
+
`0.80.9`). Upstream is a Kimi Coding maintenance patch: K3 now uses
|
|
15
|
+
adaptive thinking correctly (exposing its supported max level and
|
|
16
|
+
replaying empty-signature thinking blocks), inherited Kimi Coding
|
|
17
|
+
requests use Anthropic adaptive thinking effort without token budgets,
|
|
18
|
+
and inherited Kimi K3 pricing/thinking-level metadata plus catalog
|
|
19
|
+
generation for xAI models are fixed. All of these are provider/model
|
|
20
|
+
metadata concerns; no new RPC commands were added and the JSONL RPC
|
|
21
|
+
surface this gem drives is unchanged — this is a pin bump only.
|
|
22
|
+
|
|
10
23
|
## [0.1.16] - 2026-07-16
|
|
11
24
|
|
|
12
25
|
### 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.80.
|
|
17
|
+
- This gem is pinned against pi `0.80.10`; 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.17"
|
|
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.80.
|
|
8
|
+
SUPPORTED_PI_VERSION = "0.80.10"
|
|
9
9
|
end
|