runner/package.json
Markov d978544752 Rewrite: single process, no Docker, no IPC files
- One Node.js process with Claude Agent SDK + WebSocket to Tracker
- Direct filesystem access (code, git, bash)
- Test mode (--test): interactive CLI without Tracker
- Tracker mode: WS connection, chat mentions, task handling
- Persistent sessions via Agent SDK
- Removed: Docker, IPC files, host/container split, Python runner
2026-02-17 07:00:16 +01:00

24 lines
573 B
JSON

{
"name": "team-board-runner",
"version": "0.1.0",
"type": "module",
"description": "AI Agent Runner for Team Board — connects agents to Tracker via WebSocket",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "tsx src/index.ts --test"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.34",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^22.10.7",
"@types/ws": "^8.5.14",
"tsx": "^4.19.0",
"typescript": "^5.7.3"
}
}