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 +4 -4
- data/CHANGELOG.md +53 -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: d793e6488ae98eed6a102443d15553b761d83b4682f0099fdcf14a5f9b7c376d
|
|
4
|
+
data.tar.gz: 433f772b9f82a1c001123340a0c98c9c2c13d42b4456476f2dfece76102e6031
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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
|
|
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.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.
|
|
8
|
+
SUPPORTED_PI_VERSION = "0.80.9"
|
|
9
9
|
end
|