Files
clinera-site/pi-worker/package.json
T
Azreen Jamal 19420cc01d feat: add pi-worker service - autonomous Asana task executor & project improvement agent
- Asana REST API client for task polling, section management, and commenting
- Pi CLI executor for running tasks with specialist agent teams
- Task loop: polls Asana To Do/Pi Worker sections, executes tasks, reports results
- Improvement loop: rotates through 8 improvement categories (code quality, security, docs, testing, etc)
- Health server on :8787
- File-based mutex locks with stale lock detection
- Docker + docker-compose deployment config
- deploy.sh for one-command deployment to cr-server-new via SSH/Incus
2026-03-06 15:26:13 +08:00

14 lines
237 B
JSON

{
"name": "pi-worker",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun --watch src/index.ts"
},
"devDependencies": {
"bun-types": "^1.3.10"
}
}