You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bump version across all 7 package/plugin manifests. Also refresh
AGENTS.md (new Block types from #597, Code Tour endpoints from #569),
prune removed flags from the Pi README (--plan-file, /plannotator-set-file
from #595), and pin Renovate off bun-version bumps to keep the macOS
codesign hotfix from v0.17.9 in place.
For provenance purposes, this commit was AI assisted.
Copy file name to clipboardExpand all lines: .github/renovate.json
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,19 @@
13
13
"matchManagers": ["github-actions"],
14
14
"groupName": "GitHub Actions",
15
15
"automerge": false
16
+
},
17
+
{
18
+
"description": "Pin Bun to 1.3.11: 1.3.12+ broke macOS binary codesign for bun build --compile (hotfixed in v0.17.9). Unpin only after verifying signed builds work on the target version.",
19
+
"matchManagers": ["github-actions"],
20
+
"matchDepNames": ["oven-sh/setup-bun"],
21
+
"matchDepTypes": ["action"],
22
+
"enabled": true
23
+
},
24
+
{
25
+
"description": "Do not bump the bun-version input passed to oven-sh/setup-bun. See v0.17.9 hotfix.",
`parseMarkdownToBlocks(markdown)` splits markdown into Block objects. Handles:
354
357
355
-
- Headings (`#`, `##`, etc.)
358
+
- Headings (`#`, `##`, etc.) with slug-derived anchor ids
356
359
- Code blocks (``` with language extraction)
357
360
- List items (`-`, `*`, `1.`)
358
-
- Blockquotes (`>`)
361
+
- Blockquotes (`>`) — including GitHub alerts (`> [!NOTE|TIP|WARNING|CAUTION|IMPORTANT]`) which set `alertKind`
359
362
- Horizontal rules (`---`)
360
-
- Paragraphs (default)
363
+
- Tables (pipe-delimited) — rendered via `TableBlock` with a `TableToolbar` (copy as markdown/CSV) and `TablePopout` overlay
364
+
- Raw HTML blocks (`<details>`, `<summary>`, etc.) — rendered via `HtmlBlock` through `marked` + DOMPurify
365
+
- Directive containers (`:::kind ... :::`) — rendered via `Callout`
366
+
- Paragraphs (default) with inline extras: bare URL autolinks, `@mentions` / `#issue-refs`, emoji shortcodes, smart punctuation
361
367
362
368
`exportAnnotations(blocks, annotations, globalAttachments)` generates human-readable feedback for Claude. Images are referenced by name: `[image-name] /tmp/path...`. Annotations with `diffContext` include `[In diff content]` labels.
Copy file name to clipboardExpand all lines: apps/hook/.claude-plugin/plugin.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
{
2
2
"name": "plannotator",
3
3
"description": "Interactive Plan Review: Mark up and refine your plans using a UI, easily share for team collaboration, automatically integrates with plan mode hooks.",
0 commit comments