Help us improve
Share bugs, ideas, or general feedback.
From math-paper-creator
Validates a .model.md mathematical model document using the meta-compiler pipeline, reporting errors, warnings, or success. Supports optional strict mode for orphan symbols.
npx claudepluginhub reggiechan74/cc-plugins --plugin math-paper-creatorHow this command is triggered — by the user, by Claude, or both
Slash command
/math-paper-creator:check <path-to-file.model.md>This command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# Validate Mathematical Model Document Run the meta-compiler validation pipeline against the specified `.model.md` file. ## Steps 1. **Locate the file:** Use the provided path argument. If no path is given, search the current directory for `.model.md` files using Glob with pattern `**/*.model.md` and ask the user which one to validate if multiple are found. 2. **Run validation:** Execute the check command: If the `--strict` flag was requested, add it: 3. **Report results:** Show the output to the user. If validation passed, confirm success and list any warnings. If valida...
/claude-md-validateValidates CLAUDE.md files across directory tree for references, structure, consistency, content quality, integration, and deployment readiness, generating JSON reports and markdown summaries.
/allValidates tool usage, documentation consistency, cross-references, best practices, and execution flow, producing a score, prioritized findings, and detailed report.
/checkRuns project validation checks like lint/test across JavaScript/TypeScript, Python, Go, Rust, Ruby and auto-fixes errors without committing changes.
/checkRuns project validation checks like lint/test across JavaScript/TypeScript, Python, Go, Rust, Ruby and auto-fixes errors without committing changes.
/checkDetects drift between SPEC.md and codebase for invariants (§V), interfaces (§I), and tasks (§T). Produces severity-grouped report with classifications, evidence, and remedy hints. Read-only.
/checkGenerates CodeDNA coverage report for the project, identifying unannotated source files and stale used_by references in Python, TypeScript/JS, Go, Rust, Java.
Share bugs, ideas, or general feedback.
Run the meta-compiler validation pipeline against the specified .model.md file.
Locate the file: Use the provided path argument. If no path is given, search the current directory for .model.md files using Glob with pattern **/*.model.md and ask the user which one to validate if multiple are found.
Run validation: Execute the check command:
cd ${CLAUDE_PLUGIN_ROOT} && PYTHONPATH=src python3 -m meta_compiler.cli check "<file_path>"
If the --strict flag was requested, add it:
cd ${CLAUDE_PLUGIN_ROOT} && PYTHONPATH=src python3 -m meta_compiler.cli check --strict "<file_path>"
Report results: Show the output to the user. If validation passed, confirm success and list any warnings. If validation failed, show the errors and offer to help fix them.