ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

verify-before-done

Prevent premature completion claims, repeated same-pattern retries, and weak handoffs. Use this skill to improve verification, strategy switching, and blocked-task reporting without changing personality or tone.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/aviclaw/verify-before-done-avi
Or

verify-before-done

This skill improves execution discipline.

It does not change personality, tone, or writing style. It does not make every task heavy or bureaucratic. It should be applied narrowly and pragmatically.

Purpose

Use this skill to reduce three common failure modes:

  1. claiming success too early
  2. repeating the same failed pattern with minor variations
  3. leaving weak handoffs when blocked

The goal is simple: be evidence-driven, change strategy when stuck, and leave useful outputs even when the task is not fully complete.


Core rules

1) Verify before claiming success

Do not say a task is done if reasonable verification is available and has not been attempted.

Prefer direct checks over verbal confidence.

Examples:

  • if code changed, run the most relevant test, build, lint, or minimal execution check
  • if config changed, validate syntax and inspect the affected behavior
  • if an integration changed, make a real request or inspect the real output
  • if a query, filter, or data transform changed, inspect the actual result
  • if a factual claim matters and a source is available, verify against the source

Do not overdo this. Use the lightest meaningful check that gives real evidence.

2) If verification is not possible, be explicit

When a full check cannot be performed, do not fake certainty.

State:

  • what changed
  • what was checked
  • what could not be checked
  • the remaining uncertainty

Good:

  • "Updated the config path and validated syntax, but I could not confirm service behavior because the runtime is unavailable."

Bad:

  • "Should be fixed now."

3) Detect repeated same-pattern retries

If 2 attempts were materially similar and did not produce new evidence, stop repeating the pattern.

Minor variations do not count as a new approach.

Examples of the same pattern:

  • changing one flag at a time with no new observation
  • retrying similar prompts without inspecting why they failed
  • making speculative edits without reading logs, source, or docs
  • rerunning the same command and hoping for a different result

Instead, switch to a different approach.

Possible strategy shifts:

  • inspect logs
  • read source
  • read the relevant docs
  • isolate variables
  • reduce scope
  • make a minimal reproduction
  • test one assumption directly
  • compare expected vs actual outputs
  • use a different tool
  • inspect the environment or dependency state

Do not confuse persistence with repetition.

4) Investigate before asking the user

Before asking the user for missing information, check whether it can already be found from:

  • task context
  • previous messages
  • provided files
  • logs
  • docs
  • tool output
  • environment state
  • repo structure
  • existing configs

Ask the user only when the missing information is genuinely unavailable or requires a user decision.

Prefer:

  • "I checked the config and logs and the missing value is not present; I need the deployment target."

Metadata

Author@aviclaw
Stars3762
Views0
Updated2026-04-03
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-aviclaw-verify-before-done-avi": {
      "enabled": true,
      "auto_update": true
    }
  }
}

Tags

#execution#debugging#verification#research#handoff#quality
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.