pi-agent-rb 0.1.0 → 0.1.2

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: 68859fb3bd38c747db12473bc97697e32dcb50800cf3d6da2975c10143d14b2f
4
+ data.tar.gz: e6181cbce2437af988f159637b9fb702ee4953d83ba54dc088014e2004abf452
5
5
  SHA512:
6
- metadata.gz: 8cad377c04b0c45fd6eaa2dd29cdfff690e250431caaf479ca0819d8ab0682c689be9bdabc63e7a57a6bc395d0f9e1bc24b2a2847b946151af33727f7a539f26
7
- data.tar.gz: 1d6fa73ab6578a09cafea186979879ab501480b951a4ee3f5fe25113282068ce56ea5774911b66463ef9201d75c1a9cab107ffe95b0ec6af9de60e481fb82385
6
+ metadata.gz: 6b42d9093fbe094392546dfe8abc4ec7c3f03299a1e347f07de9faa4d089e65a0da2682c4c66a4f4f88bf30ba2ac8187f740ab7180b840440e376c056b57ad4f
7
+ data.tar.gz: 383b7d2d3f403a20112f556994eb7306222ca837163e82207151839b58bc24536c890c2c254ac635150132724ac994a37c864c1d23d7c8ab73b2b867fdf6de1a
data/CHANGELOG.md CHANGED
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.2] - 2026-05-27
11
+
12
+ ### Changed
13
+ - Minimum Ruby raised to `3.3.0` (Ruby 3.2 reached EOL 2026-04-01).
14
+
15
+ ### Added
16
+ - GitHub Actions CI: rspec across Ruby 3.3, 3.4, 4.0, head; rubocop on 4.0.
17
+ - README badges (CI status, Gem version, License) and installation section.
18
+
19
+ ## [0.1.1] - 2026-05-27
20
+
21
+ ### Changed
22
+ - Bumped pinned upstream `pi-coding-agent` version to `0.76.0`.
23
+
10
24
  ## [0.1.0] - 2026-05-27
11
25
 
12
26
  ### 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.76.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.2"
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.76.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.2
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
  - - ">="