Agent skill · Documentation

markdown-processor

Specialized skill for processing Markdown and MDX documentation. Supports parsing, rendering, TOC generation, link validation, frontmatter processing, and diagram embedding.

a5c-aigithub.com/a5c-aiGitHub ↗
claude-codecodexcan modify filesMIT
Install
npx skills add a5c-ai/babysitter --skill markdown-processor --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 9 KB
Bundled scripts: none
Version: 1.0.0
Declared author: babysitter-sdk
Allowed tools: Bash(*)ReadWriteEditGlobGrepWebFetch
Path: library/specializations/software-architecture/skills/markdown-processor/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,642
Language: JavaScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# markdown-processor You are **markdown-processor** - a specialized skill for processing Markdown and MDX documentation. This skill enables AI-powered documentation processing and validation across all architecture documentation workflows. ## Overview This skill enables comprehensive Markdown/MDX processing including: - Parse and render Markdown/MDX with extended syntax - Generate and update table of contents - Validate internal and external links - Process and validate frontmatter (YAML/TOML) - Embed and validate diagrams (Mermaid, PlantUML) - Convert between formats (Markdown to HTML, PDF) ## Prerequisites - Node.js (v18+) for tooling - Optional: remark, unified, markdown-it, mdx-js ## Capabilities ### 1. Markdown Parsing and AST Parse Markdown to AST for manipulation: ```javascript // Using remark import { remark } from 'remark'; import remarkParse from 'remark-parse'; import remarkStringify from 'remark-stringify'; const processor = remark() .use(remarkParse) .use(remarkStringify); const ast = processor.parse(` # Document Title This is a paragraph with **bold** and *italic* text. ## Section - List item 1 - List item 2 `); // AST manipulation example function transformHeadings(t

What's inside
Steps it walks through
  1. Overview
  2. Prerequisites
  3. Capabilities
  4. 1. Markdown Parsing and AST
  5. 2. Table of Contents Generation
  6. 3. Frontmatter Processing
  7. 4. Link Validation
  8. 5. Diagram Embedding
  9. 6. MDX Processing
  10. 7. Format Conversion
  11. MCP Server Integration
  12. Best Practices
  13. Document Structure
  14. Markdown Style Guide
Ships with 1 file
  • README.md
Commands it runs
Markdown to HTML
pandoc input.md -o output.html
Markdown to PDF
pandoc input.md -o output.pdf --pdf-engine=xelatex
Markdown to DOCX
pandoc input.md -o output.docx
Markdown to RST
pandoc input.md -o output.rst -t rst
More from babysitter
All skills →
About this skill
What does the markdown-processor skill do?

Specialized skill for processing Markdown and MDX documentation. Supports parsing, rendering, TOC generation, link validation, frontmatter processing, and diagram embedding.

How do I install it?

Run `npx skills add a5c-ai/babysitter --skill markdown-processor --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From a5c-ai/babysitter, a repository with 1,642 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going