Openclaw-superpowers verification-before-completion

Ensures tasks are actually done, not just attempted. Use before declaring any task complete.

install
source · Clone the upstream repo
git clone https://github.com/ArchieIndian/openclaw-superpowers
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ArchieIndian/openclaw-superpowers "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/core/verification-before-completion" ~/.claude/skills/archieindian-openclaw-superpowers-verification-before-completion && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ArchieIndian/openclaw-superpowers "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/core/verification-before-completion" ~/.openclaw/skills/archieindian-openclaw-superpowers-verification-before-completion && rm -rf "$T"
manifest: skills/core/verification-before-completion/SKILL.md
source content

Verification Before Completion

Checklist

For code changes:

  • Code runs without errors
  • All tests pass
  • Specific requirement is demonstrably met
  • No regressions in existing tests

For files:

  • File exists at expected path
  • Content matches intent

For APIs:

  • Endpoint responds correctly
  • Error cases handled
  • Auth works

The Rule

If you cannot fully verify a step, do not mark it complete. Note exactly what remains unverified and why.