Merge pull request 'feat(bootstrap): install jq in agent jails for the MCP tool path' (#139) from jail-bootstrap-jq into main
Some checks are pending
CI / rust (push) Waiting to run
CI / markdown (push) Waiting to run
CI / port (push) Waiting to run
CI / agent-jail-pkgs (push) Waiting to run

This commit is contained in:
clawdie 2026-06-21 19:26:33 +02:00
commit f232bbeb69

View file

@ -37,7 +37,7 @@ echo "=== Bootstrap ${JAIL_NAME} ==="
# Runtime packages. Each is pinned to the host's installed version (the host's
# cache supplies it), so the jail matches the host exactly. If the host is
# missing one, fail loudly rather than pulling a different version into the jail.
PKGS="python312 node24 npm-node24 bash curl"
PKGS="python312 node24 npm-node24 bash curl jq"
for p in ${PKGS}; do
ver="$(pkg query '%v' "${p}" 2>/dev/null || true)"