mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-05-06 08:10:48 +00:00
Users who know their preferred cloud but not which agents are available had no way to find out. Now `spawn hetzner` shows all agents available on Hetzner, mirroring how `spawn claude` shows all clouds for Claude. - Add cmdCloudInfo() showing cloud details + available agents - handleDefaultCommand detects cloud names and routes to cloud info - Update help text and clouds list footer to document the new command - Bump CLI version to 0.2.15 Agent: ux-engineer Co-authored-by: A <6723574+louisgv@users.noreply.github.com> Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
22 lines
515 B
JSON
22 lines
515 B
JSON
{
|
|
"name": "@openrouter/spawn",
|
|
"version": "0.2.15",
|
|
"type": "module",
|
|
"bin": {
|
|
"spawn": "cli.js"
|
|
},
|
|
"scripts": {
|
|
"dev": "bun run src/index.ts",
|
|
"build": "bun build src/index.ts --outfile cli.js --target bun --minify",
|
|
"compile": "bun build src/index.ts --compile --outfile spawn",
|
|
"test": "bun test",
|
|
"test:watch": "bun test --watch"
|
|
},
|
|
"dependencies": {
|
|
"@clack/prompts": "^1.0.0",
|
|
"picocolors": "^1.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "^1.3.8"
|
|
}
|
|
}
|