agent-cli-runtime 0.1.1 → 0.2.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 +4 -4
- data/CHANGELOG.md +20 -0
- data/README.md +139 -7
- data/agent-cli-runtime.gemspec +3 -2
- data/lib/agent_cli_runtime/errors.rb +7 -0
- data/lib/agent_cli_runtime/opencode/inspection.rb +32 -0
- data/lib/agent_cli_runtime/opencode/overlay.rb +573 -0
- data/lib/agent_cli_runtime/opencode/probe.rb +280 -0
- data/lib/agent_cli_runtime/opencode/result_parser.rb +402 -0
- data/lib/agent_cli_runtime/profile.rb +36 -2
- data/lib/agent_cli_runtime/profiles.rb +70 -1
- data/lib/agent_cli_runtime/runtime.rb +16 -2
- data/lib/agent_cli_runtime/values.rb +432 -0
- data/lib/agent_cli_runtime/version.rb +1 -1
- data/lib/agent_cli_runtime.rb +23 -3
- metadata +8 -3
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: agent-cli-runtime
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ivan Kuznetsov
|
|
@@ -66,8 +66,9 @@ dependencies:
|
|
|
66
66
|
description: |
|
|
67
67
|
Agent CLI Runtime provides immutable profiles, invocation compilation,
|
|
68
68
|
local prerequisite probes, capability evidence, usage extraction, and
|
|
69
|
-
result normalization for Claude Code, Codex CLI, Pi,
|
|
70
|
-
not spawn agents or claim live provider health, quota,
|
|
69
|
+
result normalization for Claude Code, Codex CLI, Pi, Grok CLI, and
|
|
70
|
+
OpenCode. It does not spawn agents or claim live provider health, quota,
|
|
71
|
+
or credential validity.
|
|
71
72
|
email:
|
|
72
73
|
- ivan@ikuznetsov.com
|
|
73
74
|
executables:
|
|
@@ -83,6 +84,10 @@ files:
|
|
|
83
84
|
- lib/agent_cli_runtime.rb
|
|
84
85
|
- lib/agent_cli_runtime/cli.rb
|
|
85
86
|
- lib/agent_cli_runtime/errors.rb
|
|
87
|
+
- lib/agent_cli_runtime/opencode/inspection.rb
|
|
88
|
+
- lib/agent_cli_runtime/opencode/overlay.rb
|
|
89
|
+
- lib/agent_cli_runtime/opencode/probe.rb
|
|
90
|
+
- lib/agent_cli_runtime/opencode/result_parser.rb
|
|
86
91
|
- lib/agent_cli_runtime/probe.rb
|
|
87
92
|
- lib/agent_cli_runtime/profile.rb
|
|
88
93
|
- lib/agent_cli_runtime/profiles.rb
|