mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-05-08 01:51:14 +00:00
- Show cloud provider URL alongside credential env vars in quick-start sections (both `spawn <agent>` and `spawn <cloud>` info views) - Restructure script failure errors: separate credential issues from other causes, inline the `spawn <cloud>` hint next to cloud credentials - Replace "Check cloud-specific READMEs" with actionable `spawn <cloud>` in help troubleshooting section - Show concise 4-line guidance instead of full help dump when spawn is run without a TTY (e.g. piped or in CI) - Add `spawn <agent> <cloud>` as primary action in `spawn list` footer Agent: ux-engineer Co-authored-by: A <6723574+louisgv@users.noreply.github.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
22 lines
533 B
JSON
22 lines
533 B
JSON
{
|
|
"name": "@openrouter/spawn",
|
|
"version": "0.2.35",
|
|
"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 --packages bundle",
|
|
"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"
|
|
}
|
|
}
|