@magic-markdown/cli 0.3.18 → 0.3.19
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/dist/index.js +4 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -11263,7 +11263,7 @@ var RemoteDocumentIO = class {
|
|
|
11263
11263
|
};
|
|
11264
11264
|
|
|
11265
11265
|
// src/agent.ts
|
|
11266
|
-
var CLI_VERSION = "0.3.
|
|
11266
|
+
var CLI_VERSION = "0.3.19";
|
|
11267
11267
|
var CLI_PACKAGE_NAME = "@magic-markdown/cli";
|
|
11268
11268
|
var AGENT_COMMANDS = [
|
|
11269
11269
|
{
|
|
@@ -11654,7 +11654,9 @@ Run \`mdocs help <command>\` (or \`mdocs <command> --help\`) for usage, examples
|
|
|
11654
11654
|
|
|
11655
11655
|
## Filesystem Bridge / Resume
|
|
11656
11656
|
|
|
11657
|
-
When a human asks you to bind an editable
|
|
11657
|
+
When a human asks you to bind an editable Markdown filesystem to Magic Markdown, use the latest official package and the human-approval token flow:
|
|
11658
|
+
|
|
11659
|
+
Bind the path-addressable Markdown root. Some agent platforms expose a native or projected filesystem backed by SQLite or another virtual store; treat that projection as normal files and run setup from the projected directory. Never point \`--root\` at the SQLite database file or raw state tables. If the platform only exposes agent state through APIs or tables, first mirror the intended Markdown files into a path-addressable workspace directory, then bind that directory.
|
|
11658
11660
|
|
|
11659
11661
|
\`\`\`bash
|
|
11660
11662
|
npx --yes --package=@magic-markdown/cli@latest mdocs bridge setup \\
|
package/package.json
CHANGED