agent-client-protocol 0.1.0
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 +7 -0
- data/LICENSE +190 -0
- data/README.md +126 -0
- data/lib/agent_client_protocol/codec.rb +111 -0
- data/lib/agent_client_protocol/constants.rb +78 -0
- data/lib/agent_client_protocol/decoder.rb +134 -0
- data/lib/agent_client_protocol/error.rb +104 -0
- data/lib/agent_client_protocol/methods.rb +19 -0
- data/lib/agent_client_protocol/protocol_version.rb +56 -0
- data/lib/agent_client_protocol/rpc.rb +160 -0
- data/lib/agent_client_protocol/schema_registry.rb +112 -0
- data/lib/agent_client_protocol/type_registry.rb +99 -0
- data/lib/agent_client_protocol/types/base.rb +314 -0
- data/lib/agent_client_protocol/types.rb +8 -0
- data/lib/agent_client_protocol/validator.rb +300 -0
- data/lib/agent_client_protocol/version.rb +5 -0
- data/lib/agent_client_protocol.rb +41 -0
- data/schema/meta.json +24 -0
- data/schema/meta.unstable.json +31 -0
- data/schema/schema.json +3430 -0
- data/schema/schema.unstable.json +4125 -0
- metadata +64 -0
metadata
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: agent-client-protocol
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- ya-luotao
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 2026-02-15 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: JSON-RPC message models, method constants, protocol version handling,
|
|
13
|
+
and side-aware decode helpers for ACP. Community implementation.
|
|
14
|
+
email:
|
|
15
|
+
- luotao@hey.com
|
|
16
|
+
executables: []
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files: []
|
|
19
|
+
files:
|
|
20
|
+
- LICENSE
|
|
21
|
+
- README.md
|
|
22
|
+
- lib/agent_client_protocol.rb
|
|
23
|
+
- lib/agent_client_protocol/codec.rb
|
|
24
|
+
- lib/agent_client_protocol/constants.rb
|
|
25
|
+
- lib/agent_client_protocol/decoder.rb
|
|
26
|
+
- lib/agent_client_protocol/error.rb
|
|
27
|
+
- lib/agent_client_protocol/methods.rb
|
|
28
|
+
- lib/agent_client_protocol/protocol_version.rb
|
|
29
|
+
- lib/agent_client_protocol/rpc.rb
|
|
30
|
+
- lib/agent_client_protocol/schema_registry.rb
|
|
31
|
+
- lib/agent_client_protocol/type_registry.rb
|
|
32
|
+
- lib/agent_client_protocol/types.rb
|
|
33
|
+
- lib/agent_client_protocol/types/base.rb
|
|
34
|
+
- lib/agent_client_protocol/validator.rb
|
|
35
|
+
- lib/agent_client_protocol/version.rb
|
|
36
|
+
- schema/meta.json
|
|
37
|
+
- schema/meta.unstable.json
|
|
38
|
+
- schema/schema.json
|
|
39
|
+
- schema/schema.unstable.json
|
|
40
|
+
homepage: https://github.com/ya-luotao/agent-client-protocol-ruby
|
|
41
|
+
licenses:
|
|
42
|
+
- Apache-2.0
|
|
43
|
+
metadata:
|
|
44
|
+
source_code_uri: https://github.com/ya-luotao/agent-client-protocol-ruby
|
|
45
|
+
changelog_uri: https://github.com/ya-luotao/agent-client-protocol-ruby/commits/main
|
|
46
|
+
homepage_uri: https://agentclientprotocol.com
|
|
47
|
+
rdoc_options: []
|
|
48
|
+
require_paths:
|
|
49
|
+
- lib
|
|
50
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - ">="
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '3.1'
|
|
55
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
56
|
+
requirements:
|
|
57
|
+
- - ">="
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: '0'
|
|
60
|
+
requirements: []
|
|
61
|
+
rubygems_version: 3.6.2
|
|
62
|
+
specification_version: 4
|
|
63
|
+
summary: Ruby schema/runtime helpers for the Agent Client Protocol (ACP)
|
|
64
|
+
test_files: []
|