pi-agent-rb 0.1.11 → 0.1.13
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 +27 -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: 4076ef16ce87036c60ca48df920ca241ed01326a7b3966c5d2c60bdd538bcd23
|
|
4
|
+
data.tar.gz: 73767433139b20ab37c2e997df002fdcf8f052f03befbf3fa7cdf10b7e268a9d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 004acee670b01968e5ecc554b160d70b98f935964276a07959e3affe410e7b7a7077680f38ed9354bd7499abfb1048432314f226c2a5918e9e6d7201925e11f4
|
|
7
|
+
data.tar.gz: 6255697221ff0b0a372bab6db26877605a134059bc97f5a2dc57b0107a87f00be618dec285ed9b28a2b2628e4acfeeb41f69c6d7eb4bf02446a7813237d88276
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.13] - 2026-07-10
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Bumped pinned upstream `pi-coding-agent` version to `0.80.6` (from
|
|
14
|
+
`0.80.5`). This is a CLI/SDK/library maintenance batch: an opt-in `max`
|
|
15
|
+
thinking level (above `xhigh`, exposed across CLI, SDK, RPC model
|
|
16
|
+
selection, and themes), request-wide input-token pricing tiers for
|
|
17
|
+
long-context cost accounting, `~` home-directory expansion for the
|
|
18
|
+
`shellPath` setting, plus fixes to post-compaction output-token
|
|
19
|
+
budgeting, GPT-5.4/5.5/5.6 long-context cost/metadata, and Anthropic
|
|
20
|
+
thinking-block preservation. No new RPC commands were added to the
|
|
21
|
+
protocol surface this gem drives, so the client API is unchanged — this
|
|
22
|
+
is a pin bump only.
|
|
23
|
+
|
|
24
|
+
## [0.1.12] - 2026-07-09
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
- Bumped pinned upstream `pi-coding-agent` version to `0.80.5` (from
|
|
28
|
+
`0.80.3`). This range is a library/SDK and provider maintenance batch:
|
|
29
|
+
Claude Sonnet 5 on Copilot and Bedrock prompt caching, GPT-5.6 metadata,
|
|
30
|
+
refreshed model catalogs, bash-timeout validation, extension hooks
|
|
31
|
+
(`before_provider_headers`, `InlineExtension`), session storage exports
|
|
32
|
+
(`InMemorySessionStorage`, `JsonlSessionStorage`), custom jsonl session
|
|
33
|
+
header metadata, and numerous provider/streaming fixes. No new RPC
|
|
34
|
+
commands were added to the protocol surface this gem drives, so the
|
|
35
|
+
client API is unchanged — this is a pin bump only.
|
|
36
|
+
|
|
10
37
|
## [0.1.11] - 2026-06-30
|
|
11
38
|
|
|
12
39
|
### 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.6`; 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.13"
|
|
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.6"
|
|
9
9
|
end
|