Add base64 input for eval command (#340)

* Add base64 input for eval command

Adds -b/--base64 flag to decode script from base64, avoiding shell escaping issues for AI agents.

* Document base64 eval in SKILL.md
This commit is contained in:
Chris Tate
2026-02-02 18:52:43 -06:00
committed by GitHub
parent bdf674a27e
commit 9c45f82193
5 changed files with 92 additions and 3 deletions
+7
View File
@@ -6,6 +6,7 @@ version = 4
name = "agent-browser"
version = "0.8.7"
dependencies = [
"base64",
"dirs",
"libc",
"serde",
@@ -13,6 +14,12 @@ dependencies = [
"windows-sys 0.52.0",
]
[[package]]
name = "base64"
version = "0.22.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
[[package]]
name = "bitflags"
version = "2.10.0"