Quiz Me Skill
Description
Claude Code plugin that quizzes you on root cause and fix before it writes any code
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
๐ง quiz-me
The bouncer for your diff.
    [](https://ko-fi.com/schwann2402)
you โบ just fix the import bug
claude โบ sure. quick question first: why does it report
500 imported when only 30 rows actually land?
you โบ ...because it's broken?
claude โบ (waiting)
That's it. That's the plugin.
Claude keeps the boring half โ reading, searching, typing. You keep the half that can't be outsourced: **knowing why.** Nothing gets written until you convince it you do.
๐ฏ Pop quiz. And it's for you, not Claude.
Real bug. The support ticket says: *"the import claims 500 users imported, 0 failed โ but only about 30 are actually in the database."*
Claude goes digging and surfaces this beauty:
async function importUsers(rows) {
const failed = [];
rows.forEach(async (row) => {
try {
await db.insertUser(row);
} catch (err) {
failed.push(row);
}
});
return { imported: rows.length - failed.length, failed };
}
And then, instead of a diff, it hands you this:
โโโ ๐ง QUIZ ME ยท round 1 ยท root cause โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Why does it report 500 imported when only ~30 rows land?
โโ Q1/3 cause โโโโโโโโโโโโโโโโโโโโโฌโ importUsers.js:7 โโโโโโโโโโโโโโโ
โ โ โ
โ โ catch swallows the error โ } catch (err) { โ
โ โ forEach drops the promise โ failed.push(row); โ
โ โ pool dies on process exit โ } โ
โ โ push races between callbacks โ }); โ
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k โญ) - Lightweight coding agent that runs in your terminal.
src/agents/ โ 11 Agent Definitions
**Generated:** 2026-04-11