用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Supernor/openclaw-skills --skill reactor-status命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | reactor-status |
| description | Query the Reactor ledger and report current operational status |
| tags | ["reactor","status","monitoring","ledger"] |
| version | 1.0.0 |
Query the Reactor's SQLite ledger and report operational state.
bridge.sh status — live file-based inbox/outbox counts (ground truth for pending/inProgress)reactor-status.sh — unified JSON combining service state + bridge statsreactor-ledger.sh — historical data, analytics, lockstep checksAlways prefer bridge.sh for current queue state. Use ledger for history and diagnostics.
bash ~/.openclaw/scripts/bridge.sh status
Returns live pending/inProgress/completed counts from actual inbox/outbox files.
bash ~/.openclaw/scripts/reactor-status.sh --pretty
Returns a single JSON object: reactor online/offline, service state, claude version, bridge queue counts, uptime, sourceOfTruth, and notes. Works from container (graceful fallbacks for host-only fields).
bash ~/.openclaw/scripts/reactor-ledger.sh status
Returns job counts by status, average duration, total tools used.
bash ~/.openclaw/scripts/reactor-ledger.sh recent 10
bash ~/.openclaw/scripts/reactor-ledger.sh open-questions
bash ~/.openclaw/scripts/reactor-ledger.sh retros 5
bash ~/.openclaw/scripts/reactor-ledger.sh lockstep
Shows whether SQL, JSONL, and handoff stores agree for every job.
Return a structured summary:
Reactor Status:
- Jobs: X completed, Y failed, Z pending
- Avg duration: Ns
- Stuck: none / [list task IDs]
- Open questions: N
- Lockstep: OK / [mismatches]
Intent: Observable [I13]. Purpose: [P-TBD].