mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-04-28 11:59:29 +00:00
Junie was added as a fully implemented agent (manifest, agent scripts, agent-setup.ts) but the packer/tarball pipeline was never updated. This meant the nightly agent-tarballs workflow could not build a pre-built tarball for Junie, forcing all deployments to do a live npm install. - Add junie entry to packer/agents.json (tier: node, @jetbrains/junie-cli) - Add junie to capture-agent.sh allowlist and path-capture case (npm-based, same as codex/kilocode — captures /root/.npm-global/) Agent: code-health Co-authored-by: B <6723574+louisgv@users.noreply.github.com> Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
52 lines
1.7 KiB
JSON
52 lines
1.7 KiB
JSON
{
|
|
"claude": {
|
|
"tier": "minimal",
|
|
"install": [
|
|
"curl -fsSL https://claude.ai/install.sh | bash || [ -f /root/.local/bin/claude ]"
|
|
]
|
|
},
|
|
"codex": {
|
|
"tier": "node",
|
|
"install": [
|
|
"mkdir -p ~/.npm-global/bin && npm install -g --prefix ~/.npm-global @openai/codex"
|
|
]
|
|
},
|
|
"openclaw": {
|
|
"tier": "full",
|
|
"install": [
|
|
"mkdir -p ~/.npm-global/bin && npm install -g --prefix ~/.npm-global openclaw",
|
|
"curl --proto '=https' -fsSL https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb -o /tmp/google-chrome.deb && apt-get install -y -qq /tmp/google-chrome.deb && rm -f /tmp/google-chrome.deb"
|
|
]
|
|
},
|
|
"opencode": {
|
|
"tier": "minimal",
|
|
"install": [
|
|
"mkdir -p ~/.opencode/bin && curl -fsSL https://opencode.ai/install | bash"
|
|
]
|
|
},
|
|
"kilocode": {
|
|
"tier": "node",
|
|
"install": [
|
|
"mkdir -p ~/.npm-global/bin && npm install -g --prefix ~/.npm-global @kilocode/cli"
|
|
]
|
|
},
|
|
"zeroclaw": {
|
|
"tier": "minimal",
|
|
"install": [
|
|
"if [ ! -f /swapfile ]; then fallocate -l 4G /swapfile && chmod 600 /swapfile && mkswap /swapfile && swapon /swapfile; fi",
|
|
"curl -LsSf https://raw.githubusercontent.com/zeroclaw-labs/zeroclaw/a117be64fdaa31779204beadf2942c8aef57d0e5/scripts/bootstrap.sh | bash -s -- --install-rust --install-system-deps --prefer-prebuilt"
|
|
]
|
|
},
|
|
"hermes": {
|
|
"tier": "minimal",
|
|
"install": [
|
|
"curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash || [ -f ~/.local/bin/hermes ]"
|
|
]
|
|
},
|
|
"junie": {
|
|
"tier": "node",
|
|
"install": [
|
|
"mkdir -p ~/.npm-global/bin && npm install -g --prefix ~/.npm-global @jetbrains/junie-cli"
|
|
]
|
|
}
|
|
}
|