Creates professional, well-structured Markdown documents with YAML frontmatter, versioning, author attribution, table of contents, and consistent formatting. USE FOR: create markdown document, write markdown, generate md file, create README, write technical doc, create ADR, architecture decision record, write changelog, create specification, write guide in markdown. DO NOT USE FOR: Word documents (use docx-creator), presentations (use pptx-creator), diagrams (use figjam-diagrams).
Installation
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Internal links: use relative paths from document root
All metrics, statistics, or market claims MUST have source hyperlinks
Add a ## References section at the end with numbered citations
Images and Diagrams
Prefer inline SVG for all diagrams in Markdown documents. SVG renders consistently across platforms.
SVG style: white fill (#FFFFFF), black text (#323130), Microsoft colors on borders/stroke (#0078D4, #F25022, #7FBA00, #FFB900), stroke-width="2", connectors in #605E5C.
Use Mermaid only when generating FigJam diagrams via the Figma MCP connector.
Every diagram MUST have a descriptive paragraph above it explaining what it shows, why it matters, and how to read it.
Use descriptive alt text for image files: 
Standalone image output: When generating inline SVGs, also save as standalone files in output/images/svg/. PNG exports go to output/images/png/. Mermaid sources go to output/images/mermaid/.
Image naming: Follow the same pattern as documents: NN_Title_vX.Y.Z_YYYY-MM-DD.<ext>
Image archiving: Move previous versions to output/images/archive/ before overwriting.
Document Types
Type
Key Sections
Example
README
Overview, Quick Start, Setup, Usage, Contributing
Project landing page
ADR
Status, Context, Decision, Consequences
Architecture Decision Record
Specification
Overview, Requirements, Design, API, Data Model
Technical spec
Guide
Prerequisites, Steps, Troubleshooting, FAQ
How-to guide
Changelog
Version entries with Added/Changed/Removed
Release notes
Runbook
Symptoms, Diagnosis, Resolution, Prevention
Incident response
RFC
Problem, Proposal, Alternatives, Decision
Request for comments
ADR Template
---
title: "ADR-NNN: Decision Title"
author: "{{author_name}}"
date: "YYYY-MM-DD"
version: "1.0.0"
status: "proposed | accepted | deprecated | superseded"
tags: ["adr", "architecture"]
---
# ADR-NNN: Decision Title
## Status
Accepted
## Context
[What is the issue or problem that motivates this decision?]
## Decision
[What is the change proposed or decided?]
## Consequences
[What are the positive and negative results of this decision?]
## References
[Links to related ADRs, specs, or external resources]
Factual Integrity
NEVER fabricate metrics, KPIs, ROI figures, market data, or statistics
Only use data from: workspace context, user-provided materials, or credible official sources
Credible sources: Gartner, Forrester, IDC, McKinsey, Microsoft Learn, GitHub Blog, Anthropic Blog, IEEE, ACM, HBR, official vendor docs
Every data claim MUST include a hyperlink to its source
If no credible source exists, state as assumption or omit entirely
Add a References section at the end of every document