agent-harness 0.35.0 → 0.35.1

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: b1f9956d8021e928eee2f55d17cd52c5b60bf71842b5a2d3cb87f4935b513c1c
4
- data.tar.gz: eb20a5ecb8122969ac9c3e98ac73b06b8ead044e6abea900f556d7d1470a18eb
3
+ metadata.gz: 4089d0be007a7b6d6e66e85bfa5a284e58ca32ac73d130e97abe957e50072cd3
4
+ data.tar.gz: d16cb145c446ebf4dd4b4a2aeb3a4a6e916987834e9c97e7efd6066f52cbdb0d
5
5
  SHA512:
6
- metadata.gz: 86f2cedf76f965495f4581720b039a7e761133321b7aec0716c57ebc2642de92de15403f52bf87cab2f53508a7868bd092cd9c33f154e8feefef0ccb13e29b2d
7
- data.tar.gz: 11e8513c0e16e92df8a67a187a76d20868c0619cef8c0401d91fd23edeed5f357e71d68173c3c941b5590182fbc8604de99fc3251c408dc203718ea4fa94db8c
6
+ metadata.gz: c16aea802b5084a12bc61f93b737507d640afe3915bc9d87049e1077fc77d503ac425dbeacfb57b22c700c2ed60382b09ddbba26d0f33b10db86cec3d7f5419e
7
+ data.tar.gz: d4df5199b8a4bc1d93e7733154b2c083c14c9778ffd1209e366646ea1c1ca5f714c2cfe8fa541b46ddca56cbdc1d9060faba8bf0d4956df63b76f1eed091f1a0
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "0.35.0"
2
+ ".": "0.35.1"
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.1](https://github.com/viamin/agent-harness/compare/agent-harness/v0.35.0...agent-harness/v0.35.1) (2026-08-19)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps-dev:** bump opencode-ai from 1.18.9 to 1.18.18 in /vendor/pins/opencode ([#344](https://github.com/viamin/agent-harness/issues/344)) ([e8081ef](https://github.com/viamin/agent-harness/commit/e8081ef377b6ef3d801371104506f41e509607a4))
14
+
8
15
  ## [0.35.0](https://github.com/viamin/agent-harness/compare/agent-harness/v0.34.1...agent-harness/v0.35.0) (2026-08-19)
9
16
 
10
17
 
data/README.md CHANGED
@@ -301,10 +301,10 @@ opencode_install
301
301
  # => {
302
302
  # source: :npm,
303
303
  # package_name: "opencode-ai",
304
- # version: "1.18.9",
305
- # version_requirement: [">= 1.18.9", "< 2.0.0"],
304
+ # version: "1.18.18",
305
+ # version_requirement: [">= 1.18.18", "< 2.0.0"],
306
306
  # binary_name: "opencode",
307
- # install_command: ["npm", "install", "-g", "--ignore-scripts", "opencode-ai@1.18.9"]
307
+ # install_command: ["npm", "install", "-g", "--ignore-scripts", "opencode-ai@1.18.18"]
308
308
  # }
309
309
 
310
310
  aider_install
@@ -10,7 +10,7 @@ module AgentHarness
10
10
  # Provides integration with the OpenCode CLI tool.
11
11
  class Opencode < Base
12
12
  CLI_PACKAGE = "opencode-ai"
13
- SUPPORTED_CLI_VERSION = "1.18.9"
13
+ SUPPORTED_CLI_VERSION = "1.18.18"
14
14
  SUPPORTED_CLI_REQUIREMENT = Gem::Requirement.new(">= #{SUPPORTED_CLI_VERSION}", "< 2.0.0").freeze
15
15
  INSTALL_COMMAND_PREFIX = ["npm", "install", "-g", "--ignore-scripts"].freeze
16
16
  # Allowlist of external_directory patterns auto-approved in
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AgentHarness
4
- VERSION = "0.35.0"
4
+ VERSION = "0.35.1"
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.0
4
+ version: 0.35.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bart Agapinan