mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-07-09 17:18:34 +00:00
Some checks failed
CLI Release / Build and release CLI (push) Has been cancelled
Build Docker Images / build (claude) (push) Has been cancelled
Build Docker Images / build (codex) (push) Has been cancelled
Build Docker Images / build (cursor) (push) Has been cancelled
Build Docker Images / build (hermes) (push) Has been cancelled
Build Docker Images / build (junie) (push) Has been cancelled
Build Docker Images / build (kilocode) (push) Has been cancelled
Build Docker Images / build (openclaw) (push) Has been cancelled
Build Docker Images / build (opencode) (push) Has been cancelled
Build Docker Images / build (pi) (push) Has been cancelled
Lint / ShellCheck (push) Has been cancelled
Lint / Biome Lint (push) Has been cancelled
Lint / macOS Compatibility (push) Has been cancelled
* chore(data): fix stale agent/cloud counts, add missing pi/t3code (re-#3446 onto main) * chore(data): fix stale agent/cloud counts, add missing pi/t3code (re-#3446 onto main) * chore(data): fix stale agent/cloud counts, add missing pi/t3code (re-#3446 onto main) --------- Co-authored-by: spa-the-spawn-maintainer[bot] <286559366+spa-the-spawn-maintainer[bot]@users.noreply.github.com>
63 lines
1.8 KiB
JSON
63 lines
1.8 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"
|
|
]
|
|
},
|
|
"hermes": {
|
|
"tier": "minimal",
|
|
"install": [
|
|
"curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash -s -- --skip-setup || [ -f ~/.local/bin/hermes ]"
|
|
]
|
|
},
|
|
"junie": {
|
|
"tier": "node",
|
|
"install": [
|
|
"mkdir -p ~/.npm-global/bin && npm install -g --prefix ~/.npm-global @jetbrains/junie-cli"
|
|
]
|
|
},
|
|
"cursor": {
|
|
"tier": "minimal",
|
|
"install": [
|
|
"curl -fsSL https://cursor.com/install | bash || [ -f /root/.local/bin/cursor ]"
|
|
]
|
|
},
|
|
"pi": {
|
|
"tier": "node",
|
|
"install": [
|
|
"mkdir -p ~/.npm-global/bin && npm install -g --prefix ~/.npm-global @mariozechner/pi-coding-agent"
|
|
]
|
|
},
|
|
"t3code": {
|
|
"tier": "node",
|
|
"install": [
|
|
"mkdir -p ~/.npm-global/bin && npm install -g --prefix ~/.npm-global t3"
|
|
]
|
|
}
|
|
}
|