agent-harness 0.18.0 → 0.18.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 +4 -4
- data/.release-please-manifest.json +1 -1
- data/CHANGELOG.md +8 -0
- data/lib/agent_harness/providers/anthropic.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: 54a70f890647d75ff53ab3b965cd3071fdab5fa42ccf1f6aad95387a5e4b1469
|
|
4
|
+
data.tar.gz: 34dc8a3d3725d4d8d436671818716ef340ddc712412bd86fb73aa55cce5d2dd5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 055d9ef0f856eae6105e54ab76236c8b1fa3b0e24679b0874b1ebdcf74d610d6a005862ab18ce586ce21657bb7e93042558175fc3e8df2b41f5d2aa52cc7ac44
|
|
7
|
+
data.tar.gz: ee320df58fd1ed97c931ed079068971918890dfed3ca338b835db5ad39b204de053e19e6c100da9dfcfe199fd9271fe91944f25abb0735c34f246ddcdeb0a901
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
## [0.18.1](https://github.com/viamin/agent-harness/compare/agent-harness/v0.18.0...agent-harness/v0.18.1) (2026-05-12)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* --disallowedTools varargs consumes prompt argument on Claude CLI v2.1.92+ ([e64bd62](https://github.com/viamin/agent-harness/commit/e64bd626ebdd19944920cbe43bcf8135069d0aec))
|
|
9
|
+
* use comma-separated --disallowedTools= syntax to prevent varargs consuming prompt ([9a97717](https://github.com/viamin/agent-harness/commit/9a97717fd002616465ff0e0b7733aa5391ceb1cb)), closes [#212](https://github.com/viamin/agent-harness/issues/212)
|
|
10
|
+
|
|
3
11
|
## [0.18.0](https://github.com/viamin/agent-harness/compare/agent-harness/v0.17.3...agent-harness/v0.18.0) (2026-05-06)
|
|
4
12
|
|
|
5
13
|
|
|
@@ -787,7 +787,7 @@ module AgentHarness
|
|
|
787
787
|
|
|
788
788
|
return [] if tool_names.empty?
|
|
789
789
|
|
|
790
|
-
flags =
|
|
790
|
+
flags = ["--disallowedTools=#{tool_names.join(",")}"]
|
|
791
791
|
flags = ["--permission-mode", "plan"] + flags unless skip_permission_mode
|
|
792
792
|
flags
|
|
793
793
|
end
|