agent-harness 0.35.1 → 0.35.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/.release-please-manifest.json +1 -1
- data/CHANGELOG.md +7 -0
- data/README.md +4 -4
- data/lib/agent_harness/providers/kilocode.rb +1 -1
- data/lib/agent_harness/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7de49c5213c68c9b19c965458e4bf2d2011aa432a71fae2d6bfcc31a0e48e688
|
|
4
|
+
data.tar.gz: 174a2091333dfca48ccd8df474ff24b4eb9fb0423d59f082ba3ab630c20dc072
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 78448f379b2f5f2ed45d70fbc78b42ad19654f19df392fdcb49a3b3c1c597d412aa7ee81182abbcf759af21746ed1ad7c124db1a583b7dc83605dc3e88fefdc7
|
|
7
|
+
data.tar.gz: ecd5a8429ea0c4b33f340de1ff500ff1d61d68d4245e10fc6ac4bffb13d12a5fa72cc2917b1ba81bc0bf3d2fd415007abd684b8cee6716a2d4633bcc96fd777b
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@
|
|
|
5
5
|
* add runner model compatibility contract (`AgentHarness.model_compatibility`) with structured `ModelCompatibility::Result` outcomes. Codex exposes static facts for CLI-gated models (e.g. `gpt-5.5` requires Codex CLI `>= 0.116.0`), a baseline supported-model list, supported auth modes, and a `DEFAULT_COMPATIBLE_MODEL_ID` fallback so downstream orchestrators can validate tier/model assignments before scheduling agent runs ([#259](https://github.com/viamin/agent-harness/issues/259)).
|
|
6
6
|
* **auth:** add provider-owned PKCE code-exchange API for Claude OAuth (`AgentHarness::Authentication.exchange_code`). Takes an authorization code plus PKCE verifier (and `redirect_uri`/`client_id`), posts an `authorization_code` grant to the Claude token endpoint, and persists the resulting access/refresh tokens in the native `claudeAiOauth` shape. Adds `exchange_code_supported?` and a `code_exchange` key to `auth_capabilities` ([#266](https://github.com/viamin/agent-harness/issues/266)).
|
|
7
7
|
|
|
8
|
+
## [0.35.2](https://github.com/viamin/agent-harness/compare/agent-harness/v0.35.1...agent-harness/v0.35.2) (2026-08-19)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps-dev:** bump @kilocode/cli from 7.4.16 to 7.4.22 in /vendor/pins/kilocode ([#345](https://github.com/viamin/agent-harness/issues/345)) ([8c2570e](https://github.com/viamin/agent-harness/commit/8c2570e486fc0440016014920a256fd663afde3a))
|
|
14
|
+
|
|
8
15
|
## [0.35.1](https://github.com/viamin/agent-harness/compare/agent-harness/v0.35.0...agent-harness/v0.35.1) (2026-08-19)
|
|
9
16
|
|
|
10
17
|
|
data/README.md
CHANGED
|
@@ -205,15 +205,15 @@ metadata instead of hardcoding package names, binary names, or supported
|
|
|
205
205
|
versions out-of-band.
|
|
206
206
|
|
|
207
207
|
```ruby
|
|
208
|
-
contract = AgentHarness.provider_installation_contract(:kilocode, version: "7.4.
|
|
208
|
+
contract = AgentHarness.provider_installation_contract(:kilocode, version: "7.4.22")
|
|
209
209
|
|
|
210
210
|
contract
|
|
211
211
|
# {
|
|
212
212
|
# source: { type: :npm, package: "@kilocode/cli" },
|
|
213
|
-
# install_command: ["npm", "install", "-g", "--ignore-scripts", "@kilocode/cli@7.4.
|
|
213
|
+
# install_command: ["npm", "install", "-g", "--ignore-scripts", "@kilocode/cli@7.4.22"],
|
|
214
214
|
# binary_name: "kilo",
|
|
215
|
-
# default_version: "7.4.
|
|
216
|
-
# supported_version_requirement: "= 7.4.
|
|
215
|
+
# default_version: "7.4.22",
|
|
216
|
+
# supported_version_requirement: "= 7.4.22"
|
|
217
217
|
# }
|
|
218
218
|
```
|
|
219
219
|
|
|
@@ -10,7 +10,7 @@ module AgentHarness
|
|
|
10
10
|
# Provides integration with the Kilocode CLI tool.
|
|
11
11
|
class Kilocode < Base
|
|
12
12
|
PACKAGE_NAME = "@kilocode/cli"
|
|
13
|
-
DEFAULT_VERSION = "7.4.
|
|
13
|
+
DEFAULT_VERSION = "7.4.22"
|
|
14
14
|
SUPPORTED_VERSION_REQUIREMENT = "= #{DEFAULT_VERSION}"
|
|
15
15
|
STRUCTURED_EVENT_TYPES = %w[text error step_finish result usage].freeze
|
|
16
16
|
MODEL_NAMES = %w[
|