What problem does it solve? Authoring a grading template for a markermd project by hand requires knowing exact Pandoc heading anchors, rule syntax, and YAML schema details. This Skill automates that bootstrap: it reads the project config, derives questions and starter validation rules from the key (solution) repository, imports the template into the grading database, and checks it against every student repository. ## Core Features & Use Cases - Template scaffolding from the key: Parses the solution repository's assignment document via assignment_outline() to get ground-truth section anchors, then builds questions with starter rules (code chunk plus markdown write-up by default). - Database import and schema validation: Writes markermd-template.yaml, optionally validates it against the bundled JSON schema, and imports it into the project's SQLite grading database with template_import(). - Cross-repo validation report: Runs validate_project() over all student repositories and summarizes which rules pass, fail, or error per question. - Use Case: An instructor collects 40 student Quarto assignments via ghclass and wants a starting rubric structure; the Skill generates the template from the solution key and reports how the starter rules hold up across all 40 submissions. ## Quick Start Scaffold a markermd grading template for my initialized project at ./hw01 using its key repository, then validate it against all student repos.