pi-agent-rb 0.1.0 → 0.1.3

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: 9ea32a398a43c159c3e7afaad55542aaf726215675960c52da2dea2fe8e29675
4
- data.tar.gz: d8fe5e18907cea1da1ee0f8a0698be286ecd02792232b69bc419dd79e2c6de52
3
+ metadata.gz: abfc75fe529cc2c11a5d43ec6175f8cba76fb4ecbe78102ae8d46b2b47f53614
4
+ data.tar.gz: 30be51d153fb6eff05d6a02870d6bb57b50c2be844df92eaa7941029a6ce0d80
5
5
  SHA512:
6
- metadata.gz: 8cad377c04b0c45fd6eaa2dd29cdfff690e250431caaf479ca0819d8ab0682c689be9bdabc63e7a57a6bc395d0f9e1bc24b2a2847b946151af33727f7a539f26
7
- data.tar.gz: 1d6fa73ab6578a09cafea186979879ab501480b951a4ee3f5fe25113282068ce56ea5774911b66463ef9201d75c1a9cab107ffe95b0ec6af9de60e481fb82385
6
+ metadata.gz: 49e4b69ea520dd6c15287f13a48146f23e5b539ca0eb9fe4d845916985f484ab22ee14995d2fd8495cf85c63837163a09d857a80acd3e2c4276f0e56a30bf767
7
+ data.tar.gz: 2d5301302865ba492a62ac85da8b63b12b5ba68a3c9afe32f7705f81bc7d12f4c0114c4e82c197afa4ce831b30d9d632efde933fedf1a714ca3e5a9ea9f0e24a
data/CHANGELOG.md CHANGED
@@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.3] - 2026-05-29
11
+
12
+ ### Changed
13
+ - Bumped pinned upstream `pi-coding-agent` version to `0.77.0` (adds Claude
14
+ Opus 4.8 metadata, `--exclude-tools`, and Codex subscription device login;
15
+ no changes to the RPC protocol surface this gem drives).
16
+
17
+ ## [0.1.2] - 2026-05-27
18
+
19
+ ### Changed
20
+ - Minimum Ruby raised to `3.3.0` (Ruby 3.2 reached EOL 2026-04-01).
21
+
22
+ ### Added
23
+ - GitHub Actions CI: rspec across Ruby 3.3, 3.4, 4.0, head; rubocop on 4.0.
24
+ - README badges (CI status, Gem version, License) and installation section.
25
+
26
+ ## [0.1.1] - 2026-05-27
27
+
28
+ ### Changed
29
+ - Bumped pinned upstream `pi-coding-agent` version to `0.76.0`.
30
+
10
31
  ## [0.1.0] - 2026-05-27
11
32
 
12
33
  ### Added
data/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # pi-agent-rb
2
2
 
3
+ [![CI](https://github.com/chagel/pi-agent-rb/actions/workflows/ci.yml/badge.svg)](https://github.com/chagel/pi-agent-rb/actions/workflows/ci.yml)
4
+ [![Gem Version](https://img.shields.io/gem/v/pi-agent-rb.svg)](https://rubygems.org/gems/pi-agent-rb)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
6
+
3
7
  Ruby client for the [pi coding agent](https://github.com/earendil-works/pi).
4
8
  Spawns `pi --mode rpc` and speaks its JSONL protocol from Ruby. Designed for
5
9
  building interactive agent UIs (web, TUI) on top of pi.
@@ -8,9 +12,25 @@ building interactive agent UIs (web, TUI) on top of pi.
8
12
 
9
13
  ## Requirements
10
14
 
11
- - Ruby 3.2+
15
+ - Ruby 3.3+
12
16
  - `pi` on `PATH` (install via `npm i -g @earendil-works/pi-coding-agent`)
13
- - This gem is pinned against pi `0.75.3`; other versions may work but are not verified.
17
+ - This gem is pinned against pi `0.77.0`; other versions may work but are not verified.
18
+
19
+ ## Installation
20
+
21
+ Install the gem:
22
+
23
+ ```bash
24
+ gem install pi-agent-rb
25
+ ```
26
+
27
+ Or add it to your `Gemfile`:
28
+
29
+ ```ruby
30
+ gem "pi-agent-rb"
31
+ ```
32
+
33
+ then run `bundle install`.
14
34
 
15
35
  ## Quick start
16
36
 
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PiAgent
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.3"
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.75.3"
8
+ SUPPORTED_PI_VERSION = "0.77.0"
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.0
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - chagel
@@ -78,7 +78,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
78
78
  requirements:
79
79
  - - ">="
80
80
  - !ruby/object:Gem::Version
81
- version: 3.2.0
81
+ version: 3.3.0
82
82
  required_rubygems_version: !ruby/object:Gem::Requirement
83
83
  requirements:
84
84
  - - ">="