Main
Treat
.mdaas the single source of truth, then compile drop-in docs for multiple runtimes instead of duplicating content by hand.Use
mda validateand the target schemas as a CI gate so published SKILL/AGENTS/CLAUDE artifacts stay structurally correct.Use integrity digests (
--integrity) andmda integrity verifywhen you need tamper-evident docs in agent supply chains.
Source-backed notes
- README describes
.mdaas a Markdown superset that compiles into SKILL.md, AGENTS.md, MCP-SERVER.md, and CLAUDE.md outputs. - CLI manual states the npm package is
@markdown-ai/cliand the installed binary/command ismda. - CLI manual shows a minimal flow:
mda init→mda validate→mda compile --integrity→mda integrity verify.
FAQ
- What command does the CLI install?: The CLI manual says
@markdown-ai/cliinstalls one command:mda. - Can I run it without installing?: Yes — CLI manual shows
npx @markdown-ai/cli --helpas a no-install entry point. - What should I verify in CI?: Validate both the
.mdasource and emitted targets, then runmda integrity verifyfor integrity checks.