.claude/skills/cove/SKILL.md
Apply Chain-of-Verification (CoVe) prompting to improve response accuracy through self-verification. Use for complex questions requiring fact-checking, technical accuracy, or multi-step reasoning.
npx skillsauth add serpro69/ktchn8s coveInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
CoVe is a verification technique that improves response accuracy by making the model fact-check its own answers. Instead of accepting an initial response at face value, CoVe instructs the model to generate verification questions, answer them independently, and revise the original answer based on findings.
CoVe adds the most value in these scenarios:
Precision-required questions:
Complex reasoning:
Fact-checking scenarios:
High-stakes accuracy:
Self-correction triggers:
Note: These heuristics can be copied to your project's CLAUDE.md if you want Claude to auto-invoke CoVe for matching scenarios. By default, CoVe requires manual invocation to give you control over when to invest additional tokens/time for verification.
CoVe offers two verification modes to balance accuracy vs. cost:
/cove)Uses prompt-based isolation within a single conversation turn.
See cove-process.md for the standard workflow.
/cove-isolated)Uses Claude Code's Task tool to spawn isolated sub-agents for true factored verification.
Sub-agent customization flags:
| Flag | Effect |
|------|--------|
| --explore | Use Explore agent for codebase verification |
| --haiku | Use haiku model for faster/cheaper verification |
| --agent=<name> | Use custom agent type |
See cove-isolated.md for the isolated workflow.
| Use Case | Recommended Mode |
|----------|------------------|
| Quick fact-checking | /cove |
| High-stakes accuracy | /cove-isolated |
| Codebase verification | /cove-isolated --explore |
| Cost-sensitive verification | /cove or /cove-isolated --haiku |
The CoVe workflow follows 4 steps:
See cove-process.md for the standard workflow, or cove-isolated.md for the isolated sub-agent workflow.
Use the /cove command followed by your question:
/cove What is the time complexity of Python's sorted() function?
Or invoke /cove after receiving a response to verify it.
For isolated verification with sub-agents:
/cove-isolated What is the time complexity of Python's sorted() function?
With flags:
/cove-isolated --explore How does the auth system work?
/cove-isolated --haiku What year was TCP standardized?
Claude should recognize these phrases as requests to invoke the CoVe skill:
For isolated mode:
Important: This is guidance for manual recognition only. Auto-trigger is NOT implemented by default per design goals. Users who want automatic CoVe invocation for certain scenarios can add the heuristics from "When to Use This Skill" to their project's CLAUDE.md.
development
Guidelines describing how to test the code. Use whenever writing new or updating existing code, for example after implementing a new feature or fixing a bug.
testing
Implement a feature using the written implementation plan. Use when you have a fully-formed written implementation plan to execute in a separate session with review checkpoints
documentation
After implementing a new feature or fixing a bug, make sure to document the changes. Use after finishing the implementation phase for a feature or a bug-fix
tools
--- name: development-process description: --- # Development Process ## Working with Dependencies 1. Always try to use latest versions for dependencies. 2. If you are not sure, **do not make assumptions about how external dependencies work**. Always consult documentation. 3. Before trying alternative methods, always try to **use context7 MCP to lookup documentation for external dependencies** like libraries, SDKs, APIs and other external frameworks, tools, etc. - **IMPORTANT! Always make