pi-agent-rb 0.1.14 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a20bff0b840571cae112114f3603747f6d66e7bc0adfcb20206b5d9e87e73452
4
- data.tar.gz: 96c592faa94dcd5595c7baa438e5d9277e2b853d57f70d673dc338dc08242520
3
+ metadata.gz: 2c9ee93c9a0be8b3186fdfed49511db3d50c4c1a72c0f3058d5ba745d65f1cfa
4
+ data.tar.gz: 8c046616ce13be91c30e2d34ddcbf6b42badca576187bf65994e0084da71375b
5
5
  SHA512:
6
- metadata.gz: 2304d48297bae329564d241f42af153aec840ee4414a4d890dad13f67e5214907e1972a225db58beb759bac6c9313af6d5c48c241846843a1d1a6e0d22e603ed
7
- data.tar.gz: 01afd470c59f28812965fa602285c61ee3a516800e682e1a1c67f55ebfa41a9344f1c2ecbdc4c03f8d66e4230d52919ea37995ee8d359836ffd7ce37cc4e8af4
6
+ metadata.gz: 33a6418db510ba841bc2ed974592aba167fcdf44dcb86a54bcc1c046869c9e900caf510457933aea602abf0e647b053c157d5f350109d8613bb4c667c1ce1870
7
+ data.tar.gz: d742668832dc0ea144d690cfc766125fee9b017d4094339b7bf46164155e4d248fb05f787dd306fc39f2f1eba838b060d5d44cd31c7c3f5f3d0b00f36dcd924d
data/CHANGELOG.md CHANGED
@@ -7,6 +7,53 @@ 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
+
23
+ ## [0.1.16] - 2026-07-16
24
+
25
+ ### Changed
26
+ - Bumped pinned upstream `pi-coding-agent` version to `0.80.9` (from
27
+ `0.80.8`). Upstream adds Kimi K3 support across built-in providers (Kimi
28
+ Coding, Moonshot AI, Moonshot AI China, OpenRouter, Vercel AI Gateway)
29
+ with deferred tool loading for extension-driven tool activation, switches
30
+ xAI login to a prefilled device-authorization flow with Grok 4.5 as the
31
+ default model, and removes older Grok variants from the built-in xAI
32
+ catalog. All of these are provider/extension concerns; no new RPC
33
+ commands were added and the JSONL RPC surface this gem drives is
34
+ unchanged — this is a pin bump only.
35
+
36
+ ## [0.1.15] - 2026-07-16
37
+
38
+ ### Changed
39
+ - Bumped pinned upstream `pi-coding-agent` version to `0.80.8` (from
40
+ `0.80.7`). This release unifies model runtime and provider authentication:
41
+ a new `ModelRuntime` centralizes model configuration, provider-owned
42
+ `/login`, and dynamic provider catalogs; `/model` now refreshes configured
43
+ providers in the background (with `pi update --models` to force an
44
+ immediate catalog refresh); and xAI gains device-code OAuth login with
45
+ Grok 4.5 Responses support (low/medium/high thinking). Several SDK/
46
+ extension-facing breaking changes ship with it — the SDK's
47
+ `CreateAgentSessionOptions.authStorage`/`modelRegistry` options are
48
+ replaced by the async `modelRuntime` option, `AuthStorage` is no longer
49
+ exported, redundant `ModelRuntime` projections and
50
+ `ModelRegistry.getApiKeyAndHeaders()` are removed in favor of pi-ai
51
+ `Models` methods and `ModelRuntime.getAuth()`, and extension-facing
52
+ `ModelRegistry.refresh()` is now async. These are all SDK/extension
53
+ concerns and do not affect the RPC command surface this gem drives. No
54
+ new RPC commands were added, so the client API is unchanged — this is a
55
+ pin bump only.
56
+
10
57
  ## [0.1.14] - 2026-07-15
11
58
 
12
59
  ### 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.7`; other versions may work but are not verified.
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
 
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PiAgent
4
- VERSION = "0.1.14"
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.7"
8
+ SUPPORTED_PI_VERSION = "0.80.10"
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pi-agent-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.14
4
+ version: 0.1.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - chagel