- #954: strip non-spec source/attribution keys from all 39 plugin.json manifests so Claude Code's validator accepts them; metadata preserved in new .claude-plugin/authoring-notes.json sidecars; check_plugin_json.py now hard-fails manifests carrying those keys and sanity-checks the sidecar; CLAUDE.md ClawHub schema section updated to the new rule. - #949: move the c-level-agents plugin out of c-level-advisor/ to a top-level directory so the two marketplace sources no longer overlap; updated marketplace.json source, homepage, descriptions, all cross-references, docs, harness manifest, mirror-tree symlinks/indexes, and rebased the moved files' relative links; domain counters trued up (18 -> 19 domains). - #933: replace dead links to the gitignored maintainer-local megaprompts/ tree with annotated plain-text references (44 files: SKILL.md, READMEs, agents, commands). - #931: DynamoDB on-demand pricing updated to post-Nov-2024 rates ($0.625/M writes, $0.125/M strongly consistent reads). - #969: skill_security_auditor.py and the three dossier scripts reconfigure stdout/stderr to UTF-8 (errors=replace) so legacy Windows codepages no longer crash at print time; PYTHONUTF8=1 documented. - #968: Windows Notes section in INSTALLATION.md + README pointer for the core.symlinks mirror-tree checkout caveat. - #924/#885 residuals: hook commands quote "${CLAUDE_PLUGIN_ROOT}" paths in all plugin hooks.json/settings.json (space-safe roots); removed the stale pre-rename status/review mirror symlinks and index entries left over from the memory-status/memory-review rename. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Qgc6RYXWJPr5oW9DHU7zR4 |
||
|---|---|---|
| .. | ||
| .claude-plugin | ||
| agents | ||
| commands | ||
| skills/grill-me | ||
| README.md | ||
grill-me
Relentless plan-and-design interrogator. Walks the decision tree one branch at a time. One question at a time. Each question has a recommended answer.
Attribution
Derived from Matt Pocock's grill-me (MIT). Matt's interrogation discipline preserved verbatim per his MIT license — relentless one-at-a-time questioning, recommended answers per question, codebase exploration over speculation.
What this adds on top of Matt's original
| Addition | Where | Why |
|---|---|---|
| 3 stdlib Python tools | skills/grill-me/scripts/ |
Extract decision branches from a plan doc, generate forcing questions, track session state across turns |
| 3 in-depth references (5+ sources each) | skills/grill-me/references/ |
Forcing-question patterns · Decision-tree completeness · When to stop grilling |
| cs-grill-master persona agent | agents/cs-grill-master.md |
One-question-at-a-time enforcer with state tracking |
/cs:grill-me slash command |
commands/cs-grill-me.md |
Activation + session start |
Matt's original (preserved)
"Interview me relentlessly about every aspect of this plan until we reach a shared understanding. Walk down each branch of the design tree, resolving dependencies between decisions one-by-one. For each question, provide your recommended answer. Ask the questions one at a time. If a question can be answered by exploring the codebase, explore the codebase instead."
Quick start
# Extract decision branches from a plan
python skills/grill-me/scripts/decision_tree_extractor.py path/to/plan.md
# Generate forcing questions from a plan
python skills/grill-me/scripts/question_generator.py path/to/plan.md
# Track grill session state across turns
python skills/grill-me/scripts/grill_session_tracker.py --session NAME --action start
License
MIT (matching Matt's upstream).