Likely — AI skill for Claude Code
A Claude Code hook that catches AI hedging and forces verification.
How to install Likely
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open terpjwu1/likely and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
What Likely does
A Claude Code hook that catches AI hedging and forces verification.
Alternatives in AI
- Pro Workflow — 1,400+ Battle-tested Claude Code workflows from power users 1.4k ★
- SoloDawn — Catches and repairs AI hallucinations before delivery: three quality gates, 31 built-in rules, a self-healing 312 ★
- Squeez — Hook-based token compressor for 5 AI CLI hosts (Claude Code, Copilot CLI, OpenCode, Gemini CLI, Codex CLI) 188 ★
README
likely
A Claude Code hook that catches AI hedging, making ungrounded assumptions, and forces verification as a way for self-healing.
The Problem
LLMs hedge constantly. Words like "likely", "potentially", "probably" appear in **35% of sessions** — not because the model is uncertain, but because it's trained to sound non-committal. This is dangerous in a coding context: when the AI says "this will likely work," it might be guessing rather than verifying.
After analyzing 14,000+ messages across Claude Code, Codex, and Cortex sessions:

| Word | % Sessions | Median Turn (first use) | Avg Turn |
|---|---|---|---|
| likely | 34.5% | 6 | 17.5 |
| potentially | 14.2% | 2 | 10.2 |
| probably | 11.5% | 26 | 59.9 |
| possibly | 3.5% | 108 | 86.4 |
| presumably | 2.7% | 44 | 45.5 |
The AI uses "potentially" by **turn 2** (median). "Likely" shows up by **turn 6**. These aren't genuine expressions of uncertainty — they're verbal tics that mask whether the AI actually verified its claims.
The Solution
Two Claude Code hooks forming a feedback loop:
**`hedge-detector.js`** (Stop hook) — After each AI response, scans for hedging words. If found, writes a session-scoped signal file.
**`hedge-enforcer.js`** (UserPromptSubmit hook) — Before the next turn is processed, reads the signal and injects corrective context forcing the AI to **verify its assumptions using tools** (read files, grep, run tests) before responding.
AI responds: "this will likely work"
│
▼
Stop hook detects "likely"
Writes signal file
│
▼ (next user message)
UserPromptSubmit hook reads signal
Injects: "VERIFY your claims before answering"
│
▼
AI now reads files, checks code, states evidence
The AI doesn't just rephrase with more confidence — it's forced to **do the research** and ci
Related Skills
AI Coding Rules Scaffold
Two-layer enforcement (pre-commit hook + CI mirror) for small teams using AI agents. Catches debug leaks, file
Claude Code Advisor
Read-only verification agent for Claude Code — reviews your AI sessions' work, separates PROVEN from CLAIMED,
Power Coding
Mindful-coding OS for any LLM coding agent (Claude Code, Codex, Gemini CLI) — the Five Forces: session handoff
Sharpen Claude Prompt Refiner
A Claude skill that rewrites vague prompts into tight specs before any work starts. Locks the target, kills ha
Validate Skill
VALIDATE Skill - Critical validation agent for Claude Code & Codex. Catches AI systematic optimism by scoring
Prompt Injection Scanner
A zero-dependency Python CLI that scans READMEs, SKILL files, and source code for prompt-injection patterns ta
Related Agents
Constitutional Reviewer
Multi-pass self-review that forces write-critique-rewrite-verify cycle. Use on critical code paths — auth, bil
Refiner
Multi-pass self-review that forces write-critique-rewrite-verify cycle. Use on critical code paths — auth, bil
Verify Dependency
STAGE 1 VERIFICATION - Fast dependency validation. Catches hallucinated packages, fake APIs, version conflicts