用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Supernor/openclaw-skills --skill debug命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
How Failsafe judges the weekly backup beat from PUSHED receipts — interpretation table, thresholds, and the coverage-gap question technique. Use every weekly beat.
Route ideas to The Workshop (Scribe on Telegram). Creates Intake topics for structured intent capture.
Audit existing skills against create-skill best practices. Finds gaps, scores quality, and produces upgrade recommendations.
基于 SOC 职业分类
正在显示 SKILL.md
| name | debug |
| description | Systematic debugging with hypothesis testing and binary search isolation. Usage: /debug <issue-description> |
/debug <issue description>
/debug <error message>
Confirm the issue exists. Run the failing command or check the error state. If you cannot reproduce, report that and ask for more context.
docker compose logs --tail=50 openclaw-gatewayState your theory as: "I believe X is happening because Y, which would mean Z."
Run the smallest possible test that would prove or disprove your theory.
Apply the minimal fix. Do not refactor surrounding code.
Reproduce the original steps. Confirm the issue is resolved. Check for regressions in related functionality.
RESULT: Fixed <issue summary>
STATUS: success
ROOT CAUSE: <what was actually wrong>
FIX: <what was changed>
FILES: <files modified>
VERIFY: <how to confirm the fix holds>
docker compose logs --tail=100 openclaw-gateway 2>&1 | grep -v "level=warning"docker compose exec openclaw-gateway cat /home/node/.openclaw/openclaw.jsondocker compose exec openclaw-gateway ps auxcurl -s http://localhost:18789/docker compose exec openclaw-gateway ls -la <path>