🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub

Md Of Programer

by @drunkpig

Insert mind maps and architecture diagrams into Markdown documents. Triggered when the user says "draw a mind map", "draw an architecture diagram", "insert a...

Versionv0.1.0
Downloads303
TERMINAL
clawhub install md-of-programer

πŸ“– About This Skill


name: md-of-programer version: 0.1.0 description: Insert mind maps and architecture diagrams into Markdown documents. Triggered when the user says "draw a mind map", "draw an architecture diagram", "insert a diagram", "mind map", or "diagram". argument-hint: [diagram description, optional] allowed-tools: Write, Bash, Read metadata: openclaw: requires: bins: - mddoc - d2

When inserting diagrams into a Markdown document, always follow the rules below.

Dependency Check

Before doing anything, check that dependencies are installed:

which mddoc && which d2

If mddoc is not installed:

npm install -g mddoc-cli

If d2 is not installed:

  • macOS: brew install d2
  • Windows: winget install terrastruct.d2
  • Linux / others: see https://d2lang.com/tour/install
  • Make sure both are available before continuing.

    Rules

  • All diagram source files and PNGs go only in the .mddoc/ directory (alongside the Markdown file)
  • File names must use lowercase English + hyphens (auth-flow, module-overview) β€” no spaces or numbers
  • Always write the source file first, then generate the PNG, then embed into Markdown β€” in that order
  • Never write D2 or markmap code blocks directly in the Markdown body
  • Create .mddoc/ if it does not exist
  • Mind Map (.mmd)

    1. Write the source file β†’ .mddoc/.mmd in markmap markdown format:

    # Root node

    Branch one

  • Leaf node
  • Leaf node
  • Branch two

  • Leaf node
  • - Child leaf

    2. Generate PNG:

    mddoc mindmap .mddoc/.mmd
    

    3. Embed in Markdown:

    !Mind map: 
    *Source: .mmd*
    

    Architecture Diagram (.d2)

    1. Write the source file β†’ .mddoc/.d2 in D2 language:

    direction: right

    client: Client {shape: rectangle} gateway: API Gateway {shape: rectangle} db: Database {shape: cylinder}

    client -> gateway -> db

    2. Generate PNG:

    mddoc arch .mddoc/.d2
    

    3. Embed in Markdown:

    !Architecture: 
    *Source: .d2*
    

    Regenerate All Diagrams

    mddoc build
    

    Feedback

    Issues and suggestions β†’ https://github.com/drunkpig/md-of-programer/issues

    πŸ”’ Constraints

  • All diagram source files and PNGs go only in the .mddoc/ directory (alongside the Markdown file)
  • File names must use lowercase English + hyphens (auth-flow, module-overview) β€” no spaces or numbers
  • Always write the source file first, then generate the PNG, then embed into Markdown β€” in that order
  • Never write D2 or markmap code blocks directly in the Markdown body
  • Create .mddoc/ if it does not exist