一键导入
system-observe
// Use this skill for pokoclaw observability and self-diagnosis, including delegated approval review. It shows how to inspect pokoclaw through the system database, runtime logs, and authoritative source definitions.
// Use this skill for pokoclaw observability and self-diagnosis, including delegated approval review. It shows how to inspect pokoclaw through the system database, runtime logs, and authoritative source definitions.
Generate, validate, and interpret static A2UI v0.8 JSON for interactive UI surfaces. Use when an agent needs to call publish_a2ui, author A2UI messages, check whether generated A2UI JSON is valid, or handle normalized userAction replies from interactive UI callbacks.
Install third-party skills for Pokoclaw when the user asks an agent to install a skill, pastes a skill-store prompt, or pastes a skill-store CLI command. Use this for ClawHub, skills.sh, SkillHub, or unknown skill store installation requests.
Use this skill to inspect Claude Code session history under ~/.claude, recover what sessions exist, and manually determine what a session was doing from transcript evidence.
| name | system-observe |
| description | Use this skill for pokoclaw observability and self-diagnosis, including delegated approval review. It shows how to inspect pokoclaw through the system database, runtime logs, and authoritative source definitions. |
| skillKey | pokoclaw/system-observe |
Use this skill to inspect pokoclaw itself.
get_runtime_status first when you need to know what is actively running right now. Use its runId form to inspect one low-level run, including a retained just-finished snapshot when still available in process memory.references/meditation.md.Choose one or more channels based on the question. Do not force a fixed order for every task.
references/query-recipes.md first.references/schema-overview.md.../../src/storage/schema/tables.ts../../src/storage/schema/types.ts../../src/storage/migrate/files/0001_init.sql../../src/storage/migrate/files/0002_agent_runtime_modes.sql../../src/storage/migrate/files/0003_a2ui_surface_publications.sql
The schema truth lives in tables.ts plus the migration SQL files.query_system_db for live schema discovery.get_runtime_status:
references/runtime-status.md first.references/log-recipes.md first.references/meditation.md first.get_runtime_status before querying the DB.get_runtime_status result, runningWork is the current-running main view. Do not treat completed, failed, cancelled, or not-yet-scheduled work as missing evidence; query the DB/logs only when the user asks for history or cause.get_runtime_status returns suspectRunningTaskRuns or suspectRunningCronJobs, treat those as explicit inconsistency signals: durable state still says running, but the matching live run/current task linkage is absent.runId form says a run is not present in live memory, treat that as "not currently active here and no retained in-memory snapshot was found" rather than proof of success; then use the DB to determine whether it completed, failed, or was cancelled.get_runtime_status does not expose, say that clearly and do not guess.references/schema-overview.mdreferences/query-recipes.mdreferences/log-recipes.mdreferences/runtime-status.mdreferences/meditation.mdDo not skip the required first reads above when they directly apply.
sqlite_master or PRAGMA table_info(...) queries unless you genuinely need schema discovery.query_system_db as your first move for schema exploration when a recipe or source definition is already available.