Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/boxel-cli/plugin/skills/dev-bfm-syntax/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ embedded). The grammar:
| Spec | Meaning |
| ------------------------------- | ------------------------------------------------------------------ |
| _(no spec)_ | Default — atom inline, embedded block |
| `atom` | Atom format (explicit) |
| `atom` | Atom format (explicit) |
| `embedded` | Embedded format (explicit) |
| `isolated` | Isolated format (full detailed view) |
| `fitted` | Fitted format at its container's natural size |
Expand Down
22 changes: 11 additions & 11 deletions packages/boxel-cli/plugin/skills/dev-markdown-format/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,18 +81,18 @@ import {

All helpers return pre-escaped strings — safe to interpolate directly.

| Helper | Output |
| -------------------------------------------- | ---------------------------------------------------------------------------------- |
| `formatDateForMarkdown(date)` | `Mar 5, 2026` (empty for null/invalid) |
| `formatDateTimeForMarkdown(date)` | `Mar 5, 2026, 3:42 PM` |
| `formatDateRangeForMarkdown(start, end)` | `Mar 5, 2026 - Mar 12, 2026` |
| `markdownLink(text, href)` | `[escaped text](encoded-href)` — parens in URL become `%28`/`%29` |
| `markdownImage(alt, url)` | `![alt](url)`, or `[binary image]` when url is missing |
| `fencedCodeBlock(content, language?)` | Auto-widens the fence past any backtick run in `content` |
| `markdownLinkForCard(card, text?)` | `[title](card.id)` — empty for null card |
| `markdownLinksForCards(cards, { style })` | `style: 'list'` (default, `- [A](id)` per line) or `'inline'` (`[A](id), [B](id)`) |
| Helper | Output |
| -------------------------------------------- | -------------------------------------------------------------------------------------------------- |
| `formatDateForMarkdown(date)` | `Mar 5, 2026` (empty for null/invalid) |
| `formatDateTimeForMarkdown(date)` | `Mar 5, 2026, 3:42 PM` |
| `formatDateRangeForMarkdown(start, end)` | `Mar 5, 2026 - Mar 12, 2026` |
| `markdownLink(text, href)` | `[escaped text](encoded-href)` — parens in URL become `%28`/`%29` |
| `markdownImage(alt, url)` | `![alt](url)`, or `[binary image]` when url is missing |
| `fencedCodeBlock(content, language?)` | Auto-widens the fence past any backtick run in `content` |
| `markdownLinkForCard(card, text?)` | `[title](card.id)` — empty for null card |
| `markdownLinksForCards(cards, { style })` | `style: 'list'` (default, `- [A](id)` per line) or `'inline'` (`[A](id), [B](id)`) |
| `markdownEmbedForCard(card, { kind, size })` | `:card[id]` / `:card[id \| size]` (inline) or `::card[id]` / `::card[id \| size]` (block, default) |
| `markdownEmbedsForCards(cards, options)` | Multiple embeds joined by `separator` (default `\n\n` block, `' '` inline) |
| `markdownEmbedsForCards(cards, options)` | Multiple embeds joined by `separator` (default `\n\n` block, `' '` inline) |

The last four emit BFM card directives — see the `dev-bfm-syntax` skill.

Expand Down
2 changes: 1 addition & 1 deletion packages/software-factory/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"tmp": "catalog:",
"typescript": "catalog:",
"zod": "^4.0.17",
"zod-from-json-schema": "^0.5.2"
"zod-from-json-schema": "0.5.2"
},
"volta": {
"extends": "../../package.json"
Expand Down
Loading
Loading