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 +4 -4
- data/CHANGELOG.md +14 -0
- data/README.md +22 -2
- data/lib/pi_agent/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 68859fb3bd38c747db12473bc97697e32dcb50800cf3d6da2975c10143d14b2f
|
|
4
|
+
data.tar.gz: e6181cbce2437af988f159637b9fb702ee4953d83ba54dc088014e2004abf452
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
+
[](https://github.com/chagel/pi-agent-rb/actions/workflows/ci.yml)
|
|
4
|
+
[](https://rubygems.org/gems/pi-agent-rb)
|
|
5
|
+
[](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.
|
|
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.
|
|
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
|
|
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.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.
|
|
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.
|
|
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.
|
|
81
|
+
version: 3.3.0
|
|
82
82
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
83
|
requirements:
|
|
84
84
|
- - ">="
|