Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Specialized rules for repairing Markdown lint errors in Gold Context files (MD025, MD060, MD024).
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-09 | ✗→✓ | ▲ Improved | 43% | 0% |
| case-12 | ✗→✓ | ▲ Improved | 104% | 0% |
| case-13 | ✗→✓ | ▲ Improved | -45% | 0% |
| case-05 | ✓→✗ | ▼ Worse | -58% | 0% |
| case-06 | ✓→✗ | ▼ Worse | -8% | 0% |
Version: Gold v1.0
Type: Utility Skill
Tier: 3 — Loaded when requested or encountering linting errors in context files
File: skills/context-formatting/SKILL.md
Primary Mode: Builder (formatting/fixing)
Purpose: Automates the correction of common Markdown linting errors generated in Gold Context Files, specifically targeting the metadata block (MD025), tight table separators (MD060), and recurring "Guidance" headings (MD024).
contexts/*.md files.When instructed to format a new context file, immediately apply these three transformations using the multi_replace_file_content tool.
The context file templates frequently arrive with metadata formatted as H1 tags at the top of the file, directly underneath the primary title. This triggers MD025 because markdown files should only have a single # H1 heading.
Action: Convert all secondary metadata hashes into bold markdown descriptors. Fix any broken line continuations.
From:
markdown**Version:** Gold v2.0 **Type:** Context File
To:
markdown**Version:** Gold v2.0 **Type:** Context File
| The context templates use compressed table alignment pipes without proper whitespace (e.g., | -------- | ------- |). The markdown linter requires spaces around the pipes for aligned column styles. |
| Action: Replace tight table separators with standard spaced separators (| --- |). Do this for EVERY table in the file. |
From:
markdown| Metric | Current Value | Target | Why It Matters | | --- | --- | --- | --- |
To:
markdown| Metric | Current Value | Target | Why It Matters | | --- | --- | --- | --- |
Context templates strategically repeat section headings like ### Guidance for Anti-Gravity or ### [Flow Name] across multiple sections. Markdown linters flag this as an MD024 collision.
Action: Suffix the duplicate heading with a parenthetical descriptor tied to its parent section, making it unique across the document.
From:
markdown## FRONTEND STACK ... ### Guidance for Anti-Gravity
To:
markdown## FRONTEND STACK (SKILL: CONTEXT FORMATTING) ... ### Guidance for Anti-Gravity (Frontend)
| 1. Do not alter the primary content. Only touch the formatting tags (#, |---, and heading names). |
multi_replace_file_content tool call containing multiple ReplacementChunks whenever possible to save time.Other measured skills in the registry, with their headline benchmark lift.