ワンクリックで
hermes-task-runner
Create and monitor Hermes tasks through the queue API with reproducible curl commands.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create and monitor Hermes tasks through the queue API with reproducible curl commands.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Playbook for designing and shipping high-quality digital employees on the openclaw-ruh-enterprise platform. Use when helping the user build a new agent, improve the Architect agent itself, review an architecture.json or SKILL.md, or refactor an agent's workspace files (SOUL.md, PRD.md, TRD.md, skills/*/SKILL.md). Covers the full Think → Plan → Build → Review → Test → Ship → Reflect pipeline and encodes the Claude Code patterns (progressive disclosure, description-first matching, strict tool scopes) that produce agents that actually work in production.
Playbook for designing and shipping high-quality digital employees on the openclaw-ruh-enterprise platform. Use when helping the user build a new agent, improve the Architect agent itself, review an architecture.json or SKILL.md, or refactor an agent's workspace files (SOUL.md, PRD.md, TRD.md, skills/*/SKILL.md). Covers the full Think → Plan → Build → Review → Test → Ship → Reflect pipeline and encodes the Claude Code patterns (progressive disclosure, description-first matching, strict tool scopes) that produce agents that actually work in production.
Manage the production GCP infrastructure for openclaw-ruh-enterprise. SSH into VMs, check resource usage (CPU, RAM, disk), view Docker containers, read logs, restart services, clean up disk, and run server maintenance. Use when asked to "check the server", "server health", "disk usage", "restart backend", "clean docker", "server logs", "SSH into prod", or any production infrastructure task.
Read logs and telemetry for openclaw-ruh-enterprise in local dev. Backend HTTP + gateway-proxy logs (/tmp/backend.log), per-sandbox gateway logs (/tmp/openclaw-gateway.log inside each container), OpenClaw structured JSON subsystem logs (/tmp/openclaw/openclaw-YYYY-MM-DD.log), Postgres state queries, and richer telemetry (Langfuse, OTEL, GlitchTip) when available. Use when asked to "check the logs", "why is the agent stuck", "what's the backend doing", "grep the gateway log", "look at the trace", or any local-dev log investigation task. For production (GCP VM) logs, use the /gcp-server skill instead.
Knowledge base maintenance and agent access for openclaw-ruh-enterprise. Five modes: read (orient before any task), spec (create a feature spec), link (verify and fix wikilink graph), audit (full KB health check), update (update existing notes after code changes). Use when asked to "check the KB", "create a spec", "update the knowledge base", "audit KB health", or at the start of any development task. Proactively suggest at Think phase and Ship phase of the gstack sprint.
Knowledge base maintenance and agent access for openclaw-ruh-enterprise. Five modes: read (orient before any task), spec (create a feature spec), link (verify and fix wikilink graph), audit (full KB health check), update (update existing notes after code changes). Use when asked to "check the KB", "create a spec", "update the knowledge base", "audit KB health", or at the start of any development task. Proactively suggest at Think phase and Ship phase of the gstack sprint.
| name | hermes-task-runner |
| version | 1.0.0 |
| description | Create and monitor Hermes tasks through the queue API with reproducible curl commands. |
| user-invocable | true |
| metadata | {"openclaw":{"requires":{"bins":["curl","jq"],"env":["HERMES_BASE_URL"]},"primaryEnv":"HERMES_BASE_URL"}} |
Use this skill when you need to create, route, and monitor Hermes queue work. It wraps the Hermes APIs into a small, repeatable workflow.
HERMES_BASE_URL (required): Base URL for Hermes backend, e.g. http://localhost:8100.export HERMES_BASE_URL="${HERMES_BASE_URL:-http://localhost:8100}"
description (string): What the task should do.agentName (optional): auto, backend, frontend, flutter, test, sandbox, reviewer, hermes, analyst, strategist.priority (optional): 1 critical, 5 normal, 10 low.goalId (optional): Associate with an existing goal.curl -X POST "$HERMES_BASE_URL/api/queue/tasks" \
-H "Content-Type: application/json" \
-d '{
"description": "Fix sandbox stream cleanup edge case",
"agentName": "backend",
"priority": 5
}'
curl -X POST "$HERMES_BASE_URL/api/queue/tasks" \
-H "Content-Type: application/json" \
-d '{
"description": "Investigate auth lockout persistence gaps",
"agentName": "backend",
"priority": 1,
"goalId": "<goal-id>"
}'
curl -sS "$HERMES_BASE_URL/health"
curl -sS "$HERMES_BASE_URL/api/queue/health"
curl -sS "$HERMES_BASE_URL/api/queue/stats"
curl -sS "$HERMES_BASE_URL/api/dashboard/stats"
curl -sS "$HERMES_BASE_URL/api/tasks?limit=20" | jq '.items[] | {id, description, status, delegatedTo, priority}'
curl -sS "$HERMES_BASE_URL/api/tasks?status=running&limit=20"
curl -sS "$HERMES_BASE_URL/api/agents"
curl -sS "$HERMES_BASE_URL/api/goals"
curl -X POST "$HERMES_BASE_URL/api/goals" \
-H "Content-Type: application/json" \
-d '{"title":"Improve queue reliability","description":"Investigate and fix recurring execution failures."}'
http://localhost:3333/dashboardhermes-ingestion, hermes-execution, hermes-learning, hermes-evolution, hermes-factory, hermes-analyst.