loop-verify
SolidRuns this project's verification contract and decides honestly whether something is verified, a gap, or a lie. Use before calling anything done, and whenever a report says "should work".
AI & Automation 6 stars
0 forks Updated yesterday MIT
Install
Quality Score: 78/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Verify for real
Read `.loop/VERIFY.md` and run the slots that apply to what changed. Then write down
what you observed, in the words of what you saw — not in the words of what you hoped.
## The three things that are not verification
1. **A green build.** It proves the code compiles. Nothing else.
2. **"I read the code and it looks right."** The bug you are looking for is exactly
the one that looks right.
3. **"It should work."** Then it is not verified. Say that instead.
Add two more that fool people constantly:
4. **An exit code of 0** — a command can succeed while doing nothing.
5. **An HTTP 200** — many servers answer 200 for a page that does not exist. Verify
by finding a **string that only exists in the new behaviour**, not by status code.
## What counts
Each slot must produce an artifact or a direct observation:
- **BUILD** — the project's build/test command, green. Necessary, never sufficient.
- **OBSERVE** — the thing itself, doing its thing: a page rendered in a real browser
with a clean console and a real interaction (click, type, navigate); a CLI run with
its real output; an endpoint returning the new field. A screenshot or captured
output is the artifact.
- **DATA** — query the store and confirm the effect: the row exists, the value
changed, the wrong value is refused.
- **MONEY** — if money moves, use the provider's test mode and confirm the resulting
state changed for real. Never test with live money.
## Testing against a real system
...
Details
- Author
- cbdreamer11
- Repository
- cbdreamer11/CB-loop-kit-claude-plugin
- Created
- yesterday
- Last Updated
- yesterday
- Language
- Shell
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
Code & Development Listed
verify
Check that a change actually works — run the project's tests, then drive the real thing (the command, the page, the function) and confirm the effect. Reports a clear verdict, and says honestly what could not be checked and why, instead of quietly skipping it.
0 Updated today
grinchenkoedu AI & Automation Featured
verify
Verify that a change really works before you claim completion
38,108 Updated today
Yeachan-Heo AI & Automation Listed
verify
Verify that a change really works before you claim completion
13 Updated 3 days ago
zernie