.agents/skills/markdown/SKILL.md
The following markdown content rules are enforced in the validators:
Follow these guidelines for formatting and structuring your markdown content:
Headings: Use ## for H2 and ### for H3. Ensure that headings are used in a
hierarchical manner. Recommend restructuring if content includes H4, and more
strongly recommend for H5.
Lists: Use - for bullet points and 1. for numbered lists. Indent nested lists with two spaces.
Code Blocks: Use fenced code blocks with a language for syntax highlighting:
fmt.Println("hello")
Links:
[Docs](https://example.com/docs)[Docs][docs] and add at the end of the page:
[docs]: https://example.com/docsImages: Use  for images. Include a brief description
of the image in the alt text.
Tables: Use | to create tables. Ensure that columns are properly aligned
and headers are included.
Line Length: Break lines at 120 characters to improve readability. Use soft line breaks for long paragraphs.
Whitespace: Use blank lines to separate sections and improve readability. Avoid excessive whitespace.
After editing any .md or .mdx file, run the following command and resolve all reported
errors before considering the task complete:
npx markdownlint-cli2 <edited-file>
This closes the feedback loop so violations are caught and fixed immediately rather than relying on an external CI run.
Ensure compliance with the following validation requirements: