con un clic
daemon
Manage the Kraken daemon -- view status, manage tasks, and perform maintenance
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Manage the Kraken daemon -- view status, manage tasks, and perform maintenance
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional 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)