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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4089d0be007a7b6d6e66e85bfa5a284e58ca32ac73d130e97abe957e50072cd3
4
- data.tar.gz: d16cb145c446ebf4dd4b4a2aeb3a4a6e916987834e9c97e7efd6066f52cbdb0d
3
+ metadata.gz: 7de49c5213c68c9b19c965458e4bf2d2011aa432a71fae2d6bfcc31a0e48e688
4
+ data.tar.gz: 174a2091333dfca48ccd8df474ff24b4eb9fb0423d59f082ba3ab630c20dc072
5
5
  SHA512:
6
- metadata.gz: c16aea802b5084a12bc61f93b737507d640afe3915bc9d87049e1077fc77d503ac425dbeacfb57b22c700c2ed60382b09ddbba26d0f33b10db86cec3d7f5419e
7
- data.tar.gz: d4df5199b8a4bc1d93e7733154b2c083c14c9778ffd1209e366646ea1c1ca5f714c2cfe8fa541b46ddca56cbdc1d9060faba8bf0d4956df63b76f1eed091f1a0
6
+ metadata.gz: 78448f379b2f5f2ed45d70fbc78b42ad19654f19df392fdcb49a3b3c1c597d412aa7ee81182abbcf759af21746ed1ad7c124db1a583b7dc83605dc3e88fefdc7
7
+ data.tar.gz: ecd5a8429ea0c4b33f340de1ff500ff1d61d68d4245e10fc6ac4bffb13d12a5fa72cc2917b1ba81bc0bf3d2fd415007abd684b8cee6716a2d4633bcc96fd777b
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "0.35.1"
2
+ ".": "0.35.2"
3
3
  }
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.16")
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.16"],
213
+ # install_command: ["npm", "install", "-g", "--ignore-scripts", "@kilocode/cli@7.4.22"],
214
214
  # binary_name: "kilo",
215
- # default_version: "7.4.16",
216
- # supported_version_requirement: "= 7.4.16"
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.16"
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[
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AgentHarness
4
- VERSION = "0.35.1"
4
+ VERSION = "0.35.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: agent-harness
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.35.1
4
+ version: 0.35.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bart Agapinan