@mindrian_os/cli 1.15.3-beta.30 → 1.15.3-beta.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,20 @@
1
+ ## [1.15.3-beta.32] - 2026-07-20
2
+
3
+ ### Added
4
+ - **BlockNote Wiki Convergence (Phase 232): `/mos:wiki` gets a real editing surface.** The wiki
5
+ now opens to a Room Home dashboard (governing thought, Larry's Briefing, gaps, per-section
6
+ progress) instead of the graph, and every article is directly editable in a BlockNote surface
7
+ themed to the M:OS Canonical Design System -- edit, click Save, the change writes straight to
8
+ the room's `.md` file (no confirmation dialog, no conflict check, by design). `[[wikilinks]]`
9
+ render as clickable pills inside the editor; Backlinks and See Also stay wired to the existing
10
+ SQLite graph edges. New: per-article PDF and Word export, and a real `/mos:wiki --export`
11
+ static-share bundle (previously documented, never implemented). The client bundle (React +
12
+ BlockNote) is walled off in its own `lib/wiki/editor-src/` build, so the plugin's own
13
+ dependencies stay CJS-only -- zero React/Next.js/BlockNote added to the install footprint.
14
+ A live browser walkthrough caught and fixed two integration bugs before ship (a save/load URL
15
+ encoding mismatch, and a JSON-vs-plaintext response contract mismatch that would have written
16
+ raw JSON into article files instead of markdown).
17
+
1
18
  ## [1.15.3-beta.30] - 2026-07-20
2
19
 
3
20
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindrian_os/cli",
3
- "version": "1.15.3-beta.30",
3
+ "version": "1.15.3-beta.32",
4
4
  "description": "Install MindrianOS into Claude Code with one command -- `npx @mindrian_os/cli`. Ships the MindrianOS plugin (Larry + PWS methodology + Data Room) plus a setup/diagnostics CLI (install/doctor/update).",
5
5
  "scripts": {
6
6
  "mcp": "node bin/mindrian-mcp-server.cjs",