From agents-observe
Manages Agents Observe dashboard and server via /observe: start/stop/restart, status/health checks, Docker logs, and debug diagnostics using Node scripts and bash.
npx claudepluginhub simple10/agents-observe --plugin agents-observeThis skill uses the workspace's default tool permissions.
Agents Observe dashboard and server management.
Runs diagnostic checks on agent workspace: config, identity, memory, SQLite index, QMD, crons, hooks, HTTP bridge, messaging plugins, dreaming. Applies safe auto-fixes with --fix.
Provides local-first, security-first dashboard for OpenClaw agents: visibility into token spend, collaboration tracing, tasks, memory, and safe write operations.
Installs and configures the Manifest observability plugin for Claude agents using CLI commands, including API key setup, custom endpoints, verification, and troubleshooting telemetry connections.
Share bugs, ideas, or general feedback.
Agents Observe dashboard and server management.
/observe — Open the dashboard URL/observe status — Show server health and config details/observe start — Start the server/observe stop — Stop the server/observe restart — Restart the server/observe logs — Show recent Docker container logs/observe debug — Diagnose server issues (health, docker logs, mcp.log, cli.log)The subcommand is in $ARGUMENTS. If empty, default to showing the dashboard URL.
node ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/observe_cli.mjs health
/observe start or /observe status.node ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/observe_cli.mjs health
/observe restart./observe start.node ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/observe_cli.mjs start
node ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/observe_cli.mjs stop
node ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/observe_cli.mjs restart
node ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/observe_cli.mjs logs -n 50
-f (follow) — it would hang.Run these checks in sequence. Read each output before running the next — use what you learn to diagnose the issue.
Server health:
node ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/observe_cli.mjs health
Docker container logs (last 20 lines):
node ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/observe_cli.mjs logs -n 20
MCP log (last 20 lines). The path depends on where the plugin stores data. Check these locations:
tail -n 20 ~/.claude/plugins/data/agents-observe/logs/mcp.log 2>/dev/null || \
tail -n 20 ~/.claude/plugins/data/agents-observe-inline/logs/mcp.log 2>/dev/null || \
tail -n 20 ~/.agents-observe/logs/mcp.log 2>/dev/null || \
echo "mcp.log not found"
CLI log (last 20 lines):
tail -n 20 ~/.claude/plugins/data/agents-observe/logs/cli.log 2>/dev/null || \
tail -n 20 ~/.claude/plugins/data/agents-observe-inline/logs/cli.log 2>/dev/null || \
tail -n 20 ~/.agents-observe/logs/cli.log 2>/dev/null || \
echo "cli.log not found"
Analyze the results and tell the user: