一键导入
boxel-markdown-format
Use when authoring a `markdown` template (static markdown format) on a CardDef or FieldDef — defaults, markdownEscape, and markdown helpers.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when authoring a `markdown` template (static markdown format) on a CardDef or FieldDef — defaults, markdownEscape, and markdown helpers.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when choosing the right Boxel host command combination to create new cards or edit existing instances from the AI assistant.
Use when DECIDING a Boxel card's visual language — mood, palette, typography direction, asset direction, one visual signature, the design-playbook process. This is the taste/decision layer. NOT for implementing tokens or CSS inside templates (that's boxel-ui-guidelines) and NOT for creating/editing Theme, StyleReference, or BrandGuide card artifacts (that's boxel-theme-development).
Use when running, navigating, or orchestrating tasks inside the live Boxel application — switching between Code Mode and Interact Mode, calling host commands (search-cards, switch-submode, show-card, patch-fields, apply-markdown-edit, reindex, etc.), or any operation that drives the Boxel UI. Activates for Boxel-app runtime work, not for writing card definitions (see boxel for that).
Use when adding or working with file-typed fields (FileDef, ImageDef, MarkdownDef, PngDef, CsvFileDef). Activates when a card needs to reference an image, document, or other file asset.
Use when the user names an outcome ("show a chart", "let users pick a color", "build a dashboard", "summarize comments", "embed AI image generation", "lay out a moodboard") and you need a working code example to start from. This skill is the bridge between user intent and the existing patterns in Boxel realms. Index your search by what the user wants to DO, not by which CardDef/FieldDef class to extend. Activates when the user asks "do we have a pattern for…", "how is X typically done", or names a feature outcome that isn't in core syntax.
Use when creating or editing a user-authored Boxel skill — a markdown file whose `boxel.kind: skill` frontmatter makes it loadable by AI assistant rooms. Covers the SKILL.md format contract, the frontmatter schema, tool declarations (codeRef forms, requiresApproval), placement conventions, and how to verify the skill indexed correctly. Activates for "write me a skill", "add a tool to my skill", or a skill that isn't showing up in the skill chooser.
| name | boxel-markdown-format |
| description | Use when authoring a `markdown` template (static markdown format) on a CardDef or FieldDef — defaults, markdownEscape, and markdown helpers. |
| boxel | {"kind":"skill"} |
Authoring static markdown templates: defaults, markdownEscape, markdown-helpers toolkit, delegation, and pitfalls.
Boxel has a sixth display format alongside isolated, embedded, fitted, atom, and edit:
markdown — the card (or field, or file) rendered as text in Boxel Flavored Markdown (BFM).This format is what the realm serves under Accept: text/markdown, what "Copy as Markdown" puts on the clipboard, what the code-mode markdown preview panel shows, and what gets indexed into the boxel_index.markdown column. See the boxel-flavored-markdown skill for the dialect itself.
boxel-flavored-markdown — for the dialect rules your output must conform to (directives, fenced renderers, escaping).boxel — for the surrounding CardDef structure and <@fields.x /> delegation rules.isolated or embedded (that's a runtime concern handled by Boxel's markdown component).MarkdownField instance — that's content, not a template.references/the-default-usually-good-enough.md — The default — usually good enoughreferences/shape-of-a-static-markdown-template.md — Shape of a static markdown templatereferences/essential-helper-markdownescape.md — Essential helper: markdownEscapereferences/the-markdown-helpers-toolkit.md — The markdown-helpers toolkitreferences/delegation-composes.md — Delegation composesreferences/pitfalls.md — Pitfallsreferences/worked-example-note-card-with-custom-markdown.md — Worked example: Note card with custom markdownreferences/rendering-markdown-html-at-runtime.md — Rendering markdown → HTML at runtimereferences/when-youre-done.md — When you're done