How this command is triggered — by the user, by Claude, or both
Slash command
/markdown-quiz-exporter-tool:validate input.mdThe summary Claude sees in its command listing — used to decide when to auto-load this command
Validate quiz markdown file format and show statistics. ## Usage ## Arguments - `INPUT.md`: Quiz markdown file to validate (required) - `-v/-vv/-vvv`: Verbosity (INFO/DEBUG/TRACE) ## Examples ## Output ### On Success Shows statistics about the quiz: - Total question count - Single choice vs multiple choice breakdown - Answer statistics (total, average per question, correct count) - Explanation coverage ### On Error Shows detailed error information: - Exact line number where error occurred - Problematic line content - Context lines (2 before, 2 after) - Clear error message with ...
Validate quiz markdown file format and show statistics.
markdown-quiz-exporter-tool validate INPUT.md [OPTIONS]
INPUT.md: Quiz markdown file to validate (required)-v/-vv/-vvv: Verbosity (INFO/DEBUG/TRACE)# Basic validation
markdown-quiz-exporter-tool validate quiz.md
# With verbose output for debugging
markdown-quiz-exporter-tool validate quiz.md -vv
Shows statistics about the quiz:
Shows detailed error information:
Mixed answer types:
Error at line 5: Cannot mix ( ) and [ ] formats in same question
Fix: Use consistent format - either ( ) for single choice OR [ ] for multiple choice
No correct answer:
Error at line 3: No correct answer marked. Use (X) or [X]
Fix: Mark at least one answer with (X) or [X]
No answers found:
Error at line 2: No answers found. Expected format: '- (X) text'
Fix: Add answer options in format - (X) answer or - [X] answer
No question text:
Error at line 1: No question text found
Fix: Add question text before answer options
npx claudepluginhub joshuarweaver/cascade-knowledge --plugin dnvriend-markdown-quiz-exporter-tool/validateValidates an upgrade.md file, checking for correct format and required sections.
/quizGenerates N practice problems on a topic, saving problem and answer markdown files. Supports weakmap mode to target top weaknesses from a weakmap report.
/gradeGrades exam answers (multiple-choice, essay, and paper questions) by comparing against answer keys and rubrics, producing a structured JSON score report and an HTML summary with pass/fail estimates and improvement recommendations.
/validateValidates a CLI harness against HARNESS.md standards, checking directory structure, required files, CLI implementation, core modules, tests, and documentation.
/validateValidates a bug bounty finding through a 7-question gate and 4-gate checklist, outputting PASS or KILL to filter weak submissions before report writing.
/validateValidates an OpenAPI/Swagger spec using the kubb validate CLI, reporting errors and suggesting fixes.