mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-05-07 09:10:55 +00:00
* fix: clean up test directories after cmdlist integration tests The cmdlist-integration.test.ts was creating temporary directories in beforeEach but never cleaning them up in afterEach, leaving 1,560 test directories in /root (spawn-cmdlist-test-*). Added rmSync cleanup in afterEach to remove the test directory after each test run. Bumped CLI version to 0.5.2. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> * feat: add update-team skill for managing agent team services This skill automates updating and restarting agent team services (discovery, refactor, security, qa-cycle) with the latest configuration from setup-agent-team. Features: - Reads latest setup-agent-team SKILL.md for best practices - Identifies all deployed services via wrapper scripts - Validates wrapper scripts have required env vars and correct paths - Validates systemd service files for compliance - Updates wrapper scripts and systemd configs as needed - Restarts services and verifies health - Supports --check-only for dry-run mode - Can target specific services or update all Usage: - claude /update-team # Update all services - claude /update-team discovery # Update specific service - claude /update-team --check-only # Check without changes Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> --------- Co-authored-by: B <6723574+louisgv@users.noreply.github.com> Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
22 lines
532 B
JSON
22 lines
532 B
JSON
{
|
|
"name": "@openrouter/spawn",
|
|
"version": "0.5.2",
|
|
"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"
|
|
}
|
|
}
|