Skip to content

Guides [[guides: __Namespace]]

πŸ€– Content Generator

Prompt [[guides_gen_prompt: text]]text

Generate the landing/overview page for the Guides (how-to) section of the QMDC docs. It must orient a reader who already knows the basics and route them to the right task.

Query each about: object for its goal and audience fields (via qmdc query) and build the descriptions from those β€” do not invent them.

Structure the content as:

  1. A short intro (2–3 sentences): how-to guides are practical recipes (DiΓ‘taxis sense) that walk a competent reader through a single real-world task. They serve work, not study.
  2. A brief "where to go" paragraph that routes the reader: brand new? start with the Tutorials; want the why? read the Learn explanations. Link those namespaces with QMD references.
  3. A section "## Pick your task": a bulleted list of the four how-to guides β€” Validate a Document, Query Your Markdown Graph, Build a Small Workspace, Use QMDC with VS Code β€” each linked with its QMD reference and a one-line description from its goal.
  4. A short note pointing to QMDC: Guide for AI Agents as the full reference an AI agent needs to author QMD.md correctly (it is reference material, not a task recipe).
  5. A final section "## At a glance" containing a single live table block: a fenced code block whose language is table, with first line scope: all and a sql: block running SELECT __label as Guide, json_extract(data, '$.goal') as Goal, json_extract(data, '$.audience') as Audience FROM objects WHERE __namespace = 'guides' AND __kind = 'HowTo' ORDER BY __label.

Audience: developer β€” technical language is fine. Keep it concise and scannable.

How-to guides are practical recipes. Each one walks you through a single real-world task from start to finish β€” they serve work, not study. You already know the basics; these pages get you unstuck.

If you're brand new, start with the Tutorials β€” they teach concepts step by step. If you want the why behind the design, read the Learn explanations.

Pick your task

For AI agents authoring QMD.md, QMDC: Guide for AI Agents is the full reference β€” it covers syntax rules, common errors, and the metamodel in a format optimized for LLM consumption.

At a glance

Guide Goal Audience
Build a Small Workspace build a multi-file workspace with namespaces and cross-file references developer
Query Your Markdown Graph query your workspace graph with SQL developer
Use QMDC with VS Code set up QMDC in VS Code for navigation, validation, and preview developer
Validate a Document find and fix errors in your .qmd.md files newcomer