openwriter 0.6.8 → 0.6.10
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 +12 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openwriter",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.10",
|
|
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
|
@@ -10,12 +10,13 @@ description: |
|
|
|
10
10
|
|
|
11
11
|
Use when user says: "open writer", "openwriter", "write in openwriter",
|
|
12
12
|
"edit my document", "review my writing", "check the pad", "write me a doc",
|
|
13
|
-
"compose tweet", "reply to tweet", "quote tweet"
|
|
13
|
+
"compose tweet", "reply to tweet", "quote tweet", "author's voice",
|
|
14
|
+
"authors voice", "voice plugin".
|
|
14
15
|
|
|
15
16
|
Requires: OpenWriter MCP server configured. Browser UI at localhost:5050.
|
|
16
17
|
metadata:
|
|
17
18
|
author: travsteward
|
|
18
|
-
version: "0.2.
|
|
19
|
+
version: "0.2.7"
|
|
19
20
|
repository: https://github.com/travsteward/openwriter
|
|
20
21
|
license: MIT
|
|
21
22
|
---
|
|
@@ -532,6 +533,15 @@ Requires authentication via `request_login_code` + `verify_login`. All publish t
|
|
|
532
533
|
|
|
533
534
|
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
535
|
|
|
536
|
+
## Updating
|
|
537
|
+
|
|
538
|
+
```bash
|
|
539
|
+
npm install -g openwriter@latest
|
|
540
|
+
npx openwriter install-skill
|
|
541
|
+
```
|
|
542
|
+
|
|
543
|
+
Then restart your Claude Code session (`/mcp` to reconnect).
|
|
544
|
+
|
|
535
545
|
## Troubleshooting
|
|
536
546
|
|
|
537
547
|
**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.
|