Install
openclaw skills install cove-pluginChain of Verification (CoVe) — fact-check your responses against the user's knowledge base, memory, and web search before presenting them.
openclaw skills install cove-pluginVerify factual claims in your responses using Chain of Verification (CoVe). The tool extracts claims, checks them against the user's workspace, memory, and optionally the web, then reports inaccuracies with corrections.
You SHOULD verify your response when:
You do NOT need to verify:
# Verify a response (basic — checks memory + workspace)
cove-verify -r "Alice is on the Enterprise tier and pays $499/month."
# Standard policy — also checks the web
cove-verify -r "Revenue grew 15% last quarter." -p standard
# Deep policy — multi-step reasoning with web search
cove-verify -r "The contract SLA is 99.9% uptime." -p deep
# Pipe from stdin
echo "Your subscription renews on April 1st." | cove-verify --stdin
# JSON output for programmatic use
cove-verify -r "Bob signed up on March 5th." -f json
# Strict mode — fail if claims can't be confirmed
cove-verify -r "The API rate limit is 1000 req/min." --strict
# Report only (no auto-correction)
cove-verify -r "Meeting is scheduled for 3pm." --no-correct
| Flag | Short | Description | Default |
|---|---|---|---|
--response | -r | Response text to verify | — |
--stdin | Read response from stdin | false | |
--policy | -p | basic, standard, deep | basic |
--strict | Fail if any claim is unverifiable | false | |
--format | -f | text or json | text |
--no-correct | Report only, don't auto-correct | false |
| Policy | Memory | Workspace | Web Search | Use When |
|---|---|---|---|---|
| basic | ✅ | ✅ | ❌ | Internal facts (customers, products, config) |
| standard | ✅ | ✅ | ✅ | Facts that may need external confirmation |
| deep | ✅ | ✅ | ✅ | Critical claims requiring thorough verification |
cove-verify -r "your response" to check claimsIf the tool auto-corrects, use the corrected version. Let the user know you verified the response and share the results — transparency builds trust.
This skill reads the following to build verification context:
~/.openclaw/workspace/ (top-level only, max 10KB each)~/.openclaw/workspace/memory/ (depth 2)~/.openclaw/memory/main.sqlite (max 20KB aggregate)knowledge_sources.document_paths in your configFor standard and deep policies, it also queries the Brave Search API (requires BRAVE_API_KEY).
All data stays local to the verification pipeline — nothing is stored or sent beyond the configured LLM provider.
0 — All claims verified (or no claims found)1 — One or more claims are inaccurate2 — Strict mode: claims are unverifiable (not necessarily wrong)