pi-agent-rb 0.1.13 → 0.1.16

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: 4076ef16ce87036c60ca48df920ca241ed01326a7b3966c5d2c60bdd538bcd23
4
- data.tar.gz: 73767433139b20ab37c2e997df002fdcf8f052f03befbf3fa7cdf10b7e268a9d
3
+ metadata.gz: d793e6488ae98eed6a102443d15553b761d83b4682f0099fdcf14a5f9b7c376d
4
+ data.tar.gz: 433f772b9f82a1c001123340a0c98c9c2c13d42b4456476f2dfece76102e6031
5
5
  SHA512:
6
- metadata.gz: 004acee670b01968e5ecc554b160d70b98f935964276a07959e3affe410e7b7a7077680f38ed9354bd7499abfb1048432314f226c2a5918e9e6d7201925e11f4
7
- data.tar.gz: 6255697221ff0b0a372bab6db26877605a134059bc97f5a2dc57b0107a87f00be618dec285ed9b28a2b2628e4acfeeb41f69c6d7eb4bf02446a7813237d88276
6
+ metadata.gz: ebace74bbe76021696c294fbc40ae54f8dbeb77ddb66556f02b06b936904b3eee60af0d798bda9cce2f9e744e0f0a961aaecb2ae780fe9a359857e28633c6843
7
+ data.tar.gz: ff11c2ef0282b3fabcb9e00deb8392037d4677d04cdfcfe4205f00b2a01860326ba68c113689fef16e8e07ede114e3f6d2c95281cf32bed135691c57ab728107
data/CHANGELOG.md CHANGED
@@ -7,6 +7,59 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.16] - 2026-07-16
11
+
12
+ ### Changed
13
+ - Bumped pinned upstream `pi-coding-agent` version to `0.80.9` (from
14
+ `0.80.8`). Upstream adds Kimi K3 support across built-in providers (Kimi
15
+ Coding, Moonshot AI, Moonshot AI China, OpenRouter, Vercel AI Gateway)
16
+ with deferred tool loading for extension-driven tool activation, switches
17
+ xAI login to a prefilled device-authorization flow with Grok 4.5 as the
18
+ default model, and removes older Grok variants from the built-in xAI
19
+ catalog. All of these are provider/extension concerns; no new RPC
20
+ commands were added and the JSONL RPC surface this gem drives is
21
+ unchanged — this is a pin bump only.
22
+
23
+ ## [0.1.15] - 2026-07-16
24
+
25
+ ### Changed
26
+ - Bumped pinned upstream `pi-coding-agent` version to `0.80.8` (from
27
+ `0.80.7`). This release unifies model runtime and provider authentication:
28
+ a new `ModelRuntime` centralizes model configuration, provider-owned
29
+ `/login`, and dynamic provider catalogs; `/model` now refreshes configured
30
+ providers in the background (with `pi update --models` to force an
31
+ immediate catalog refresh); and xAI gains device-code OAuth login with
32
+ Grok 4.5 Responses support (low/medium/high thinking). Several SDK/
33
+ extension-facing breaking changes ship with it — the SDK's
34
+ `CreateAgentSessionOptions.authStorage`/`modelRegistry` options are
35
+ replaced by the async `modelRuntime` option, `AuthStorage` is no longer
36
+ exported, redundant `ModelRuntime` projections and
37
+ `ModelRegistry.getApiKeyAndHeaders()` are removed in favor of pi-ai
38
+ `Models` methods and `ModelRuntime.getAuth()`, and extension-facing
39
+ `ModelRegistry.refresh()` is now async. These are all SDK/extension
40
+ concerns and do not affect the RPC command surface this gem drives. No
41
+ new RPC commands were added, so the client API is unchanged — this is a
42
+ pin bump only.
43
+
44
+ ## [0.1.14] - 2026-07-15
45
+
46
+ ### Changed
47
+ - Bumped pinned upstream `pi-coding-agent` version to `0.80.7` (from
48
+ `0.80.6`). This is a CLI/SDK/library maintenance batch: cache-friendly
49
+ dynamic tool loading for extension tools (preserving prompt-cache
50
+ prefixes on supported Anthropic and OpenAI Responses models), a `Ctrl+X`
51
+ shortcut to copy the last/selected assistant message, native `xhigh` and
52
+ `max` thinking levels for Claude Fable 5 across generated provider
53
+ catalogs, inherited `toolChoice` support for OpenAI/Codex Responses, plus
54
+ numerous provider/streaming fixes (OpenRouter context windows and session
55
+ IDs, Bedrock auth, Cloudflare Workers AI credentials, Azure OpenAI
56
+ reasoning replay) and removal of the system prompt's current date to fix
57
+ cross-date cache invalidation. One SDK-level breaking change: the
58
+ `openai-responses` `compat.sendSessionIdHeader` flag in `models.json` was
59
+ removed in favor of `compat.sessionAffinityFormat`; this does not affect
60
+ the RPC command surface this gem drives. No new RPC commands were added,
61
+ so the client API is unchanged — this is a pin bump only.
62
+
10
63
  ## [0.1.13] - 2026-07-10
11
64
 
12
65
  ### 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.6`; other versions may work but are not verified.
17
+ - This gem is pinned against pi `0.80.9`; 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.13"
4
+ VERSION = "0.1.16"
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.6"
8
+ SUPPORTED_PI_VERSION = "0.80.9"
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.13
4
+ version: 0.1.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - chagel