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 +4 -4
- data/CHANGELOG.md +19 -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: a20bff0b840571cae112114f3603747f6d66e7bc0adfcb20206b5d9e87e73452
|
|
4
|
+
data.tar.gz: 96c592faa94dcd5595c7baa438e5d9277e2b853d57f70d673dc338dc08242520
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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
|
|
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.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.
|
|
8
|
+
SUPPORTED_PI_VERSION = "0.80.7"
|
|
9
9
|
end
|