@markweave/react 0.5.2 → 0.6.0

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.
package/README.md CHANGED
@@ -37,3 +37,7 @@ const [aiEdit, setAiEdit] = useState<MarkweaveAiEditController | null>(null);
37
37
  ```
38
38
 
39
39
  The callback receives a controller after editor creation and `null` before teardown or recreation. See the full integration guide for `captureSelection`, cumulative streaming, default/headless controls, conflicts, acceptance, and error handling.
40
+
41
+ ## Command Registry And Host Extensions
42
+
43
+ Version 0.6.0 adds `commandGroups`, `commands`, `builtinCommands`, `editorExtensions`, `onCommandControllerChange`, and `onCommandError`. The stable command controller executes the same async command path as Slash; host extensions are additive-only creation-time schema code and require a keyed remount when changed. See the full command/extension protocol for result placement, cancellation, conflicts, the 1 MiB result cap, and Tiptap 3.27.x compatibility.