一键导入
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)