openwriter 0.6.8 → 0.6.9
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/package.json +1 -1
- package/skill/SKILL.md +10 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openwriter",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.9",
|
|
4
4
|
"description": "The open-source writing surface for AI agents. Markdown-native editor with pending change review — your agent writes, you accept or reject.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
package/skill/SKILL.md
CHANGED
|
@@ -15,7 +15,7 @@ description: |
|
|
|
15
15
|
Requires: OpenWriter MCP server configured. Browser UI at localhost:5050.
|
|
16
16
|
metadata:
|
|
17
17
|
author: travsteward
|
|
18
|
-
version: "0.2.
|
|
18
|
+
version: "0.2.6"
|
|
19
19
|
repository: https://github.com/travsteward/openwriter
|
|
20
20
|
license: MIT
|
|
21
21
|
---
|
|
@@ -532,6 +532,15 @@ Requires authentication via `request_login_code` + `verify_login`. All publish t
|
|
|
532
532
|
|
|
533
533
|
When the user enables the Author's Voice plugin in Settings, install the skill — see [authors-voice.com](https://www.authors-voice.com) for install methods. The skill handles API key setup and everything else.
|
|
534
534
|
|
|
535
|
+
## Updating
|
|
536
|
+
|
|
537
|
+
```bash
|
|
538
|
+
npm install -g openwriter@latest
|
|
539
|
+
npx openwriter install-skill
|
|
540
|
+
```
|
|
541
|
+
|
|
542
|
+
Then restart your Claude Code session (`/mcp` to reconnect).
|
|
543
|
+
|
|
535
544
|
## Troubleshooting
|
|
536
545
|
|
|
537
546
|
**MCP tools not available** — The OpenWriter MCP server isn't configured yet. Follow the [setup instructions](#mcp-tools-are-not-available-skill-first-install) above. After adding the MCP config, the user must restart their Claude Code session.
|