karimo-overview: Skill for Claude Code

.claude/skills/verification-before-completion/SKILL.md

verification-before-completion is a skill for Claude Code from opensesh/karimo-overview. It costs 0 tokens per session (1,371 once invoked), scanned A, original, Apache-2.0.

A workflow rule that requires fresh checks before an AI coding agent says a task is complete.

In plain words
What is it for?
It helps verify tests, linting, builds, bug fixes, and other completion claims.
Why use it?
It prevents unsupported claims such as saying tests pass or a bug is fixed without examining evidence from the current session.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions subagents.

This is opensesh/karimo-overview's own configuration. It tells Claude Code how to work on karimo-overview itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything karimo-overview configures →

Reuse

Borrowing it

Nothing to install: this file belongs to opensesh/karimo-overview. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/opensesh/karimo-overview/main/.claude/skills/verification-before-completion/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/opensesh/karimo-overview

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for verification-before-completion

README.md
[![agentmods](https://agentmods.dev/badge/skills/opensesh/karimo-overview/verification-before-completion.svg)](https://agentmods.dev/skills/opensesh/karimo-overview/verification-before-completion)
Your own site
<a href="https://agentmods.dev/skills/opensesh/karimo-overview/verification-before-completion"><img src="https://agentmods.dev/badge/skills/opensesh/karimo-overview/verification-before-completion.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,371 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.01371
Opus 5 $0.00000 $0.00685
Sonnet 5 $0.00000 $0.00274
Haiku 4.5 $0.00000 $0.00137

Measured 4d ago against content hash 6b1855de230b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

verification-before-completion scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/verification-before-completion/SKILL.md · 229 lines

How it starts

The opening of the file, as written. The whole thing — 229 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Verification Before Completion

This skill activates before ANY claim of completion, success, or task finish. Triggers on phrases like "done", "complete", "finished", "working", "fixed", "ready for review".


The Iron Law

NO COMPLETION CLAIMS WITHOUT FRESH VERIFICATION EVIDENCE

Bypassing verification is not efficiency—it's misrepresentation. Trust depends on accuracy. Every claim must be backed by concrete evidence gathered in THIS session.


The Gate Function

Before asserting ANY positive status, execute this sequence:

1. IDENTIFY  → What command/check proves the claim?
2. RUN       → Execute it completely and freshly
3. READ      → Examine FULL output, not just success messages
4. VERIFY    → Does output actually confirm the claim?
5. CLAIM     → Only then make assertion with evidence

Skipping ANY step = unverified claim = potential misrepresentation


Claim Types & Required Evidence

Claim Required Evidence
"Tests pass" Fresh test output showing zero failures
"Lint clean" Linter output with zero errors/warnings
"Build succeeds" Build output + exit code 0
"Bug fixed" Original failing case now passes
"Feature complete" Line-by-line requirement verification
"PR ready" All checks pass + diff review

BOS-Specific Verification Checkpoints

For UI/frontend work, add these verification steps:

Design System Compliance Check

# Search for hardcoded colors (should return empty)
grep -r "#[0-9A-Fa-f]\{6\}" --include="*.tsx" --include="*.css" | grep -v "var(--"

# Search for forbidden patterns
grep -r "border-white\|border-black\|bg-white\|bg-black" --include="*.tsx"

Semantic Token Usage

# Verify CSS variable usage in new files
grep -r "var(--bg-\|var(--fg-\|var(--border-" components/

React Aria Compliance

// For interactive elements, verify React Aria usage
import { Button } from 'react-aria-components';  // ✅ Correct
import { button } from './button';               // ❌ Check if React Aria based

Read the full file on GitHub · 229 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 229 lines · 0 tokens per session scan A 6b1855de230b

Subscribe to this mod's changes

verification-before-completion is a skill published in the GitHub repository opensesh/karimo-overview (11 stars, last pushed 4mo ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,371 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

ccg-workflow

How to run a non-trivial change end to end with the CCG role tools (ccganalyze / ccgdesign / ccgbuild / ccgdebug / ccgoptimize / ccgreview / ccgtest) and the verify- quality gates. Use when a task is a whole feature, a refactor, a bug whose cause is not yet known, or any change large enough that one straight-through…

fengshao1227/ccg-workflow · 97 tokens

qa

Systematically QA test a web application and fix bugs found. Runs QA testing, then iteratively fixes bugs in source code, committing each fix atomically and re-verifying. Use when asked to "qa", "QA", "test this site", "find bugs", "test and fix", or "fix what's broken". Proactively suggest when the user says a…

GCWing/BitFun · 160 tokens

qa-only

Report-only QA testing. Systematically tests a web application and produces a structured report with health score, screenshots, and repro steps — but never fixes anything. Use when asked to "just report bugs", "qa report only", or "test but don't fix". For the full test-fix-verify loop, use /qa instead. Proactively…

GCWing/BitFun · 111 tokens

test-driven-development

This skill should be used when implementing new features, fixing bugs, or writing new code. Enforces RED-GREEN-REFACTOR.

dean0x/devflow · 32 tokens

qa

This skill should be used when performing scenario-based acceptance testing, designing QA test plans, or validating that implementation behavior matches acceptance criteria beyond unit tests.

dean0x/devflow · 31 tokens

testing

This skill should be used when the user asks to "write tests", "fix failing tests", "improve test coverage", "add integration tests", "debug a flaky test", or reviews test quality. Provides behavior-focused testing patterns, coverage analysis, and detection of brittle test anti-patterns like implementation coupling…

dean0x/devflow · 70 tokens