pi-agent-rb 0.3.0 → 0.3.1

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: ec081bcb7d1b2bac67301f37239e002e9b32d0eeb065d80a36b4d217896e1485
4
- data.tar.gz: f19a72e0adb62fb42a49e3a21f2bcdffe3d46b3b546752c66e36427469c04c6e
3
+ metadata.gz: 50b2e74842e7ea8c7d0ff8f84ebd37a83430a6eb560183030ffe608473352910
4
+ data.tar.gz: 47d36a467b310841094ed6ceb2412caca3d23523a88591957872de510c27ce17
5
5
  SHA512:
6
- metadata.gz: 1493e49939b44a45ff13fa7652b855ff48e25c611ad59bb6ac00c725bec549e76297156a455b20668bc5641a7fb0d8bcadd3eb535227e4e988c06c004a34dd92
7
- data.tar.gz: 9cbd030aa9ae76199aa5730aab067bfd447a15416e9845d17fa3632f8baffd341586d0ca11b423eb4b66da6baa837c92511ec2ad7a6703a85c40e8d5996396d4
6
+ metadata.gz: 47034cb6829fdbfab2996d80a68ef89b68a9229add36e824fe635119475952702112e79f987c604cd9bf8b6b1aa47e6a86bcc87adec23de2acf59597a85502c8
7
+ data.tar.gz: 29ef8a8e9ed3f85a704a239e5eb6dd95f8f6d9118fd6804e6fb3492755b6fb0450b0b811658b4f46f217365cdbfb092279ae4f31cb9557641d79f8f5cc6a5422
data/CHANGELOG.md CHANGED
@@ -7,6 +7,39 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.3.1] - 2026-08-07
11
+
12
+ ### Changed
13
+ - Bumped pinned upstream `pi-coding-agent` version to `0.84.1` (from
14
+ `0.83.0`). This is a CLI/TUI/auth/provider/extension batch; none of the
15
+ changes alter the JSONL RPC command/response shapes this gem drives, so
16
+ no gem API change is required.
17
+ - v0.84.1 adds the Qwen Token Plan Individual built-in provider, a
18
+ `pi auth check` credential preflight command, fullscreen selection /
19
+ scrolling improvements, and `terminate` support on blocked extension
20
+ `tool_call` events, plus assorted fixes (Bun standalone startup, LaTeX
21
+ spacing, fullscreen mouse volume, `Agent.reset()` during active runs).
22
+ All are CLI/TUI/auth/provider or TypeScript extension-API concerns,
23
+ outside the JSONL RPC surface this Ruby client speaks.
24
+ - v0.84.0 (folded into this bump) is a CLI/TUI/provider/extension batch;
25
+ none of the changes alter the JSONL RPC command/response shapes this
26
+ gem drives, so no gem API change is required.
27
+ - v0.84.0 changes the JSON/RPC `message_update` events to emit only
28
+ `assistantMessageEvent` deltas, removing the cumulative `message` and
29
+ `assistantMessageEvent.partial` fields (upstream #7290). This gem
30
+ already assembles output from `text_delta` deltas
31
+ (`Event#delta` reads `assistantMessageEvent["delta"]`) and never relied
32
+ on the removed cumulative/partial fields, so it is compatible as-is.
33
+ - Other headline changes — fullscreen TUI mode, Mermaid/LaTeX rendering,
34
+ per-directory `AGENTS.override.md` context overrides, advanced custom
35
+ model sampling, and the Baseten provider — are TUI/context/provider
36
+ concerns outside the RPC surface this gem speaks.
37
+ - The remaining breaking changes (renamed `ModelsRequestTransforms`, the
38
+ v4 lane-based `Session`/`SessionRepo` harness APIs, remote-session
39
+ client APIs, `ModelRegistry`/`ModelRuntime` signatures) are TypeScript
40
+ library APIs consumed by native pi extensions, not the RPC protocol
41
+ this Ruby client drives.
42
+
10
43
  ## [0.3.0] - 2026-07-31
11
44
 
12
45
  ### Added
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` 0.80.4+ on `PATH` (install via `npm i -g @earendil-works/pi-coding-agent`)
17
- - This gem is pinned against pi `0.83.0`; other versions may work but are not verified.
17
+ - This gem is pinned against pi `0.84.1`; other versions may work but are not verified.
18
18
 
19
19
  ## Installation
20
20
 
@@ -105,7 +105,7 @@ Pi emits `agent_end` after each low-level agent run, but may then retry,
105
105
  compact and retry, or process queued continuations. It emits
106
106
  `agent_settled` only when no automatic work remains, so high-level streams
107
107
  use that as their completion boundary. Upstream added the RPC event in pi
108
- 0.80.4; it is available in this gem's pinned pi 0.83.0.
108
+ 0.80.4; it is available in this gem's pinned pi 0.84.1.
109
109
 
110
110
  `events` is a lower-level, prompt-less drain of the same stream. Because it
111
111
  subscribes lazily when iteration begins, it only works when you subscribe
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PiAgent
4
- VERSION = "0.3.0"
4
+ VERSION = "0.3.1"
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.83.0"
8
+ SUPPORTED_PI_VERSION = "0.84.1"
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.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - chagel