Agent Skill for finalizing markdownlint-compliant Markdown. Use before git commit, when the user indicates the task is done, when you complete a meaningful phase of work, or when the user explicitly requests Markdown cleanup.
git commitdeno fmt and markdownlint-cli2 --fix on
the modified Markdown file(s).At a finalization checkpoint, run the formatter and linter on the exact Markdown files you changed, in this order:
deno fmt "README.md" "docs/guide.md"
markdownlint-cli2 --fix "README.md" "docs/guide.md"
If either tool is unavailable or fails unexpectedly, tell the user and request guidance.
If you are still in the middle of iterative drafting or ongoing work, defer these commands until the current work is finalized.