원클릭으로
daemon
Manage the Kraken daemon -- view status, manage tasks, and perform maintenance
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Manage the Kraken daemon -- view status, manage tasks, and perform maintenance
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Configure external messaging channel adapters (Telegram, etc.) — saves credentials securely and patches kraken.jsonc
Configure LSP language servers for real-time diagnostics after code edits
Persistent memory system -- save and search observations across sessions
Configure and test notification channels -- Slack, Discord, Email, GitHub, and system notifications
Manage API keys and secrets safely -- list, set, and delete without exposing values
Create, modify, and debug triggers -- cron jobs, webhooks, file watchers, CI failure handlers, PR mentions, and slash commands
| name | daemon |
| description | Manage the Kraken daemon -- view status, manage tasks, and perform maintenance |
| slash | daemon |
| aliases | status |
Use bash with curl to interact with the daemon HTTP API at http://localhost:50051.
For trigger configuration, load the triggers skill. For notification setup, load the notifications skill.
curl -s http://localhost:50051/api/tasks?status=all&limit=20 | jq
curl -s http://localhost:50051/api/tasks/{task_id} | jq
curl -s -X POST http://localhost:50051/api/schedule \
-H "Content-Type: application/json" \
-d '{"prompt": "Run tests and fix failures", "priority": 5, "agent": "build"}'
curl -s -X POST http://localhost:50051/api/tasks/{task_id}/cancel
curl -s -X POST http://localhost:50051/api/tasks/{task_id}/retry
curl -s http://localhost:50051/api/tasks/{task_id}/logs | jq
curl -s http://localhost:50051/api/status | jq
curl -s "http://localhost:50051/api/stats?period=today" | jq
curl -s http://localhost:50051/api/health
curl -s -X POST http://localhost:50051/api/clean \
-H "Content-Type: application/json" \
-d '{"worktrees": true, "task_days": 30, "dry_run": false}'
The daemon configuration lives at ~/.kraken/kraken.jsonc. Use read to view and edit to modify.
After editing, reload without restarting:
kill -HUP $(cat ~/.kraken/daemon.pid)