npx claudepluginhub joshuarweaver/cascade-knowledge --plugin dnvriend-markdown-quiz-exporter-toolinput.mdValidate 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 ...
/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 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 project implementation against scope and tasks documents using parallel subagents, producing validation_gaps.md with actionable remediation tasks.
/validateValidates cli-anything-web CLI at <app-path> against HARNESS.md standards across 11 categories (75 checks), reporting N/N pass/fail counts and fix suggestions for failures.
/validateValidates a product idea through interactive canvas and 7-area checklist, producing a GO, TEST MORE, or KILL decision.
/validateValidates SonIA project operational integrity: kanban boards, traceability, UAT status, and local GitHub sync. Outputs report with summary, checks, warnings, errors, verdict, and next steps.
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