ask-acp 0.1.2 → 0.1.4
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 +23 -0
- data/lib/ask/acp/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bf87b2732e560c05465a8736015402531ab5d62b8cb6fe59dfa312fa4cc9bbe5
|
|
4
|
+
data.tar.gz: ec393d18e69c7302b4e929169f200791c9b2cc87e39451d148c750bb12c910a4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dbd714cdf7f74706e713e076daf2cefda74852ae56cbdca2a0626c84b511f3e223232a2dda9e52d96909ef8e0dd176c4531403ef437d87c0d030c2c90c9da714
|
|
7
|
+
data.tar.gz: c6f506d83227c23978df1107762ca46076d69ad415f830af17195f554e9efea0f86a31a91103806924b4f633a81319c480c430ed9e617f7d2257a9c44bbe1950
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to ask-acp are documented here, following
|
|
4
|
+
the keep-a-changelog format.
|
|
5
|
+
|
|
6
|
+
## [Unreleased]
|
|
7
|
+
|
|
8
|
+
## [0.1.2] - 2026-09-04
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Repository hygiene: added CI workflow (Ruby 3.2–3.4 matrix) and
|
|
13
|
+
release docs to match the other ask-rb gems.
|
|
14
|
+
|
|
15
|
+
## [0.1.0] - 2026-08-11
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
|
|
19
|
+
- Ruby implementation of the Agent Client Protocol (ACP): JSON-RPC 2.0
|
|
20
|
+
over stdio, following the v0.11.3 protocol schema.
|
|
21
|
+
- Client that drives an ACP-compliant coding agent as a subprocess.
|
|
22
|
+
- Server base class for making a Ruby agent speak ACP.
|
|
23
|
+
- Replay client for deterministic testing.
|
data/lib/ask/acp/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ask-acp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kaka Ruto
|
|
@@ -89,6 +89,7 @@ executables:
|
|
|
89
89
|
extensions: []
|
|
90
90
|
extra_rdoc_files: []
|
|
91
91
|
files:
|
|
92
|
+
- CHANGELOG.md
|
|
92
93
|
- LICENSE
|
|
93
94
|
- README.md
|
|
94
95
|
- exe/record_acp
|
|
@@ -117,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
117
118
|
- !ruby/object:Gem::Version
|
|
118
119
|
version: '0'
|
|
119
120
|
requirements: []
|
|
120
|
-
rubygems_version: 4.0.
|
|
121
|
+
rubygems_version: 4.0.18
|
|
121
122
|
specification_version: 4
|
|
122
123
|
summary: Agent Client Protocol for Ruby
|
|
123
124
|
test_files: []
|