pi-agent-rb 0.1.13 → 0.1.14

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: a20bff0b840571cae112114f3603747f6d66e7bc0adfcb20206b5d9e87e73452
4
+ data.tar.gz: 96c592faa94dcd5595c7baa438e5d9277e2b853d57f70d673dc338dc08242520
5
5
  SHA512:
6
- metadata.gz: 004acee670b01968e5ecc554b160d70b98f935964276a07959e3affe410e7b7a7077680f38ed9354bd7499abfb1048432314f226c2a5918e9e6d7201925e11f4
7
- data.tar.gz: 6255697221ff0b0a372bab6db26877605a134059bc97f5a2dc57b0107a87f00be618dec285ed9b28a2b2628e4acfeeb41f69c6d7eb4bf02446a7813237d88276
6
+ metadata.gz: 2304d48297bae329564d241f42af153aec840ee4414a4d890dad13f67e5214907e1972a225db58beb759bac6c9313af6d5c48c241846843a1d1a6e0d22e603ed
7
+ data.tar.gz: 01afd470c59f28812965fa602285c61ee3a516800e682e1a1c67f55ebfa41a9344f1c2ecbdc4c03f8d66e4230d52919ea37995ee8d359836ffd7ce37cc4e8af4
data/CHANGELOG.md CHANGED
@@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.14] - 2026-07-15
11
+
12
+ ### Changed
13
+ - Bumped pinned upstream `pi-coding-agent` version to `0.80.7` (from
14
+ `0.80.6`). This is a CLI/SDK/library maintenance batch: cache-friendly
15
+ dynamic tool loading for extension tools (preserving prompt-cache
16
+ prefixes on supported Anthropic and OpenAI Responses models), a `Ctrl+X`
17
+ shortcut to copy the last/selected assistant message, native `xhigh` and
18
+ `max` thinking levels for Claude Fable 5 across generated provider
19
+ catalogs, inherited `toolChoice` support for OpenAI/Codex Responses, plus
20
+ numerous provider/streaming fixes (OpenRouter context windows and session
21
+ IDs, Bedrock auth, Cloudflare Workers AI credentials, Azure OpenAI
22
+ reasoning replay) and removal of the system prompt's current date to fix
23
+ cross-date cache invalidation. One SDK-level breaking change: the
24
+ `openai-responses` `compat.sendSessionIdHeader` flag in `models.json` was
25
+ removed in favor of `compat.sessionAffinityFormat`; this does not affect
26
+ the RPC command surface this gem drives. No new RPC commands were added,
27
+ so the client API is unchanged — this is a pin bump only.
28
+
10
29
  ## [0.1.13] - 2026-07-10
11
30
 
12
31
  ### 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.7`; 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.14"
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.7"
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.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - chagel