openwriter 0.3.0 → 0.3.1
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 +1 -1
- package/dist/client/assets/index-BTxdHrWL.js +209 -0
- package/dist/client/assets/index-C9E86o6p.css +1 -0
- package/dist/client/index.html +2 -2
- package/dist/server/index.js +6 -8
- package/dist/server/markdown-parse.js +14 -1
- package/dist/server/markdown-serialize.js +7 -3
- package/dist/server/mcp.js +94 -9
- package/dist/server/state.js +75 -99
- package/dist/server/ws.js +28 -11
- package/package.json +1 -1
- package/skill/SKILL.md +1 -1
- package/dist/client/assets/index-BLVKwyNi.js +0 -209
- package/dist/client/assets/index-NIq_FmFc.css +0 -1
package/README.md
CHANGED
|
@@ -78,7 +78,7 @@ Now your agent has 24 tools to read, write, and organize documents — and every
|
|
|
78
78
|
| **Document** | `read_pad`, `write_to_pad`, `edit_text`, `get_pad_status`, + 5 more | Read/write document content, fine-grained text edits, metadata |
|
|
79
79
|
| **Multi-doc** | `list_documents`, `switch_document`, `create_document` | Navigate and manage multiple documents |
|
|
80
80
|
| **Workspace** | `create_workspace`, `get_workspace_structure`, `add_doc`, + 6 more | Organize docs into projects with containers and tags |
|
|
81
|
-
| **Import** | `import_gdoc` | Import Google Docs, auto-split into chapters |
|
|
81
|
+
| **Import** | `import_gdoc` | Import structured Google Docs, auto-split into chapters |
|
|
82
82
|
|
|
83
83
|
Agents write in markdown or TipTap JSON. The server converts, assigns node IDs, and broadcasts changes to your browser in real-time via WebSocket.
|
|
84
84
|
|