Help us improve
Share bugs, ideas, or general feedback.
npx claudepluginhub joshuarweaver/cascade-knowledge --plugin dnvriend-markdown-quiz-exporter-toolHow 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 ...
/gradeGrades candidate exam answers from JSON files for MCQ, short answers, and essays, producing detailed JSON and HTML score reports with analysis.
/validateValidates CLI harness for software at given path or GitHub repo against HARNESS.md standards: directory structure, files, Click CLI, core modules, tests, and docs.
/validateValidates a bug bounty finding through a structured 7-question gate and 4-gate checklist, killing weak submissions before report writing.
/validateValidates an OpenAPI/Swagger spec using the kubb validate CLI. Reports errors with line-level suggestions and offers next steps like /kubb:generate.
/validateValidates project structure, git config, build setup, code quality, CI/CD workflows, and best practices; reports issues, score, and recommendations with --path and --verbose options.
/validateValidates OSCAL documents (JSON, XML, YAML) against NIST JSON schemas, checking conformance, required fields, enums, UUIDs, and version. Outputs status, errors, or JSON for CI.
Share bugs, ideas, or general feedback.
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