Canonical Format Checker
Scannednpx machina-cli add skill aiskillstore/marketplace/canonical-format-checker --openclawCanonical Format Checker
Overview
Prevent format drift by verifying content follows authoritative canonical sources. When teaching a pattern that exists elsewhere in the platform (skills, subagents, ADRs, etc.), this skill ensures the taught format matches the canonical source.
Why this matters: The Chapter 14 format drift failure occurred because the lesson taught skill format differently from Chapter 5 (canonical source). Students learned incorrect patterns that contradicted earlier chapters.
When to Use This Skill
Automatic Triggers (check before implementation):
- Lesson teaches how to create skills → Check
.claude/skills/structure - Lesson teaches how to write subagents → Check
.claude/agents/structure - Lesson teaches ADR format → Check
specs/*/adrs/structure - Lesson teaches PHR format → Check
history/prompts/structure - Lesson teaches specification format → Check
specs/*/spec.mdstructure
Manual Triggers (user requests):
- "Check canonical format for skills"
- "Verify format consistency"
- "Does this match the canonical source?"
Canonical Source Lookup Table
| Pattern Being Taught | Canonical Source Location | Key Format Elements |
|---|---|---|
| Skills | .claude/skills/<name>/SKILL.md | Directory structure, YAML frontmatter with name, description |
| Subagents | .claude/agents/<name>.md | YAML frontmatter with name, description, model, skills |
| ADRs | specs/<feature>/adrs/adr-*.md | Numbered files, standard ADR structure |
| PHRs | history/prompts/<stage>/ | Template from .specify/templates/phr-template.prompt.md |
| Specifications | specs/<feature>/spec.md | Sections: Overview, User Stories, FRs, SCs, Evals |
| Commands | .claude/commands/*.md | YAML frontmatter, step-by-step phases |
Workflow
Step 1: Identify What Pattern Is Being Taught
Ask yourself:
- Does this lesson teach how to CREATE any platform pattern?
- Is there an existing canonical source for this pattern?
Trigger Examples:
- "Lesson teaches students to write their own skills" → Skills pattern
- "Chapter covers custom commands" → Commands pattern
- "Module explains agent creation" → Subagents pattern
Step 2: Locate and Read Canonical Source
MANDATORY: Read the canonical source BEFORE writing or reviewing content.
# For Skills - read actual skill structure
ls .claude/skills/*/
cat .claude/skills/session-intelligence-harvester/SKILL.md
# For Agents - read actual agent structure
ls .claude/agents/
cat .claude/agents/content-implementer.md
# For Commands - read actual command structure
ls .claude/commands/
head -50 .claude/commands/sp.specify.md
Step 3: Extract Format Requirements
Document the required format elements from canonical source:
## Canonical Format: Skills
**Directory Structure**:
.claude/skills/ └── <skill-name>/ # Directory, NOT flat file └── SKILL.md # SKILL.md file (uppercase)
**YAML Frontmatter** (REQUIRED):
```yaml
---
name: "<skill-name>"
description: "This skill should be used when... Use when..."
---
Content Structure:
- H1 title matching skill name
- Overview section explaining purpose
- When to Use section with triggers
- Workflow section with steps
### Step 4: Compare Content Against Canonical
Check the lesson/content for format consistency:
```markdown
## Format Comparison Checklist
**Skill Format Check**:
- [ ] Shows directory structure (not flat file)
- [ ] Uses SKILL.md filename (not skill.md or index.md)
- [ ] Includes YAML frontmatter with `name` and `description`
- [ ] `description` starts with "This skill should be used when..."
**Agent Format Check**:
- [ ] Shows single .md file in agents directory
- [ ] Includes YAML frontmatter with `name`, `description`, `model`
- [ ] Includes `skills` array (can be empty)
- [ ] Description explains when to invoke
**Command Format Check**:
- [ ] Shows .md file in commands directory
- [ ] Has numbered phases with clear gates
- [ ] Includes enforcement checks
Step 5: Report Drift or Confirm Compliance
If Format Drift Detected:
## Format Drift Detected
**Pattern**: Skills
**Location**: Lesson 7, Section "Creating Your First Skill"
**Issue**: Shows flat file `.claude/skills/my-skill.md`
**Canonical**: Directory structure `.claude/skills/my-skill/SKILL.md`
**Specific Fixes Required**:
1. Line 45: Change `.claude/skills/my-skill.md` to `.claude/skills/my-skill/SKILL.md`
2. Line 52: Update example to show directory creation with `mkdir`
3. Line 60: Add YAML frontmatter example with required fields
**Cross-Reference**: Chapter 5, Lesson 7 (agent-skills.md) is canonical source
If Format Compliant:
## Format Verified
**Pattern**: Skills
**Canonical Source**: `.claude/skills/session-intelligence-harvester/SKILL.md`
**Content Location**: Chapter 14, Lesson 5
**Verification**:
- [x] Directory structure matches canonical
- [x] YAML frontmatter format correct
- [x] Required fields present (name, description)
- [x] Description follows "This skill should be used when..." pattern
**Status**: COMPLIANT - No drift detected
Common Format Drift Patterns
Drift Pattern 1: Flat Files vs Directories
Wrong: .claude/skills/my-skill.md
Right: .claude/skills/my-skill/SKILL.md
Drift Pattern 2: Missing YAML Frontmatter
Wrong: Markdown file with no frontmatter Right: YAML frontmatter with required fields
Drift Pattern 3: Wrong Filename
Wrong: skill.md, index.md, README.md
Right: SKILL.md (uppercase)
Drift Pattern 4: Missing Required Fields
Wrong: Only name in frontmatter
Right: Both name and description (description starts with "This skill should be used when...")
Drift Pattern 5: Inventing New Format
Wrong: Creating custom format not matching canonical Right: Following exact structure from canonical source
Integration Points
Use With:
chapter-planner- Check during lesson planning phasecontent-implementer- Verify before implementationvalidation-auditor- Include in validation checklist
Invoke When:
- Planning lessons that teach platform patterns
- Reviewing content that describes file structures
- Validating documentation about Claude Code features
Self-Monitoring
Before approving content that teaches patterns:
- Identified what pattern is being taught
- Located and READ the canonical source
- Extracted format requirements from canonical
- Compared content against canonical requirements
- Detected drift OR confirmed compliance
- Provided specific fix instructions if drift found
Success Criteria
You succeed when:
- Format drift detected BEFORE publication
- Specific canonical source identified and referenced
- Exact format requirements documented
- Content matches canonical source exactly
You fail when:
- Content teaches incorrect format that contradicts canonical
- Canonical source not checked before implementation
- Vague feedback ("fix the format") instead of specific corrections
- New patterns invented instead of following canonical
Source
git clone https://github.com/aiskillstore/marketplace/blob/main/skills/92bilal26/canonical-format-checker/SKILL.mdView on GitHub Overview
Canonical Format Checker prevents format drift by ensuring lessons follow authoritative canonical sources for patterns like skills, subagents, ADRs, PHRs, and specifications. This keeps platform content aligned with established references and avoids conflicting patterns across chapters.
How This Skill Works
It guides reviewers to locate the canonical source for the taught pattern (skills in .claude/skills, ADRs in specs, etc.), then compares the directory structure and YAML frontmatter against the canonical format. If a mismatch is found, it flags drift and directs corrective steps to bring content back in line with the canonical source.
When to Use It
- Automatic triggers before lesson implementation to verify pattern alignment with its canonical source (skills, subagents, ADRs, PHRs, or specifications).
- Automatic checks when teaching how to create skills to ensure .claude/skills/<name>/SKILL.md matches the canonical structure and frontmatter.
- Automatic checks when teaching subagents to ensure .claude/agents/<name>.md follows the canonical YAML and layout.
- Automatic checks for ADRs and specifications to validate specs/<feature>/adrs/adr-*.md and specs/<feature>/spec.md formats.
- Manual triggers when users request a canonical format review or a consistency check (eg, 'Check canonical format for skills').
Quick Start
- Step 1: Identify Pattern Being Taught.
- Step 2: Locate the Canonical Source and Read It.
- Step 3: Compare Content Against Canonical Requirements and Fix Drift.
Best Practices
- Read the canonical source before drafting or reviewing content.
- Validate directory structure and file naming against canonical paths (.claude/skills, .claude/agents, specs, history/prompts).
- Ensure YAML frontmatter contains required fields like name and description.
- Verify the content structure includes an H1 title that matches the skill name and includes Overview, When to Use, and Workflow sections.
- Run checks during both authoring and content review to catch drift early.
Example Use Cases
- A new Skill lesson uses .claude/skills/new-skill/SKILL.md but mismatches the canonical frontmatter name, triggering a drift flag.
- A Subagent lesson references .claude/agents/new-agent.md with an incomplete YAML frontmatter missing the description field.
- An ADR lesson uses ADR-01.md but the file path or structure does not align with specs/<feature>/adrs/adr-*.md conventions.
- A PHR lesson proposes a nonstandard prompt template instead of following history/prompts templates.
- A Specifications lesson uses a nonstandard section order that omits Overview or User Stories, prompting correction.