writing-skills 0.3.2 → 0.4.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.
@@ -5,31 +5,15 @@
5
5
  "url": "https://github.com/surendranb"
6
6
  },
7
7
  "metadata": {
8
- "description": "Procedural writing-style skills for AI agents official frameworks, not vibes.",
9
- "version": "0.3.2"
8
+ "description": "14 production writing-style skills and character frameworks for AI agents with dynamic GitHub skill loading.",
9
+ "version": "0.4.0"
10
10
  },
11
11
  "plugins": [
12
12
  {
13
13
  "name": "writing-skills",
14
14
  "source": "./",
15
- "description": "14 writing-style skills: 7 measurable frameworks (plain language, BLUF business writing, corporate comms, GOV.UK, ASD-STE100, Google dev docs, AP journalism) and 7 character voices (Ted Lasso, Jack Sparrow, Shrek, Yoda, Winnie the Pooh, Paddington, Bob Ross). Each framework enforces a verifiable checklist.",
16
- "strict": false,
17
- "skills": [
18
- "./skills/plain-language",
19
- "./skills/business-writing",
20
- "./skills/corporate-communication",
21
- "./skills/gov-uk-style",
22
- "./skills/asd-ste100",
23
- "./skills/google-dev-docs",
24
- "./skills/journalism-ap",
25
- "./skills/ted-lasso",
26
- "./skills/jack-sparrow",
27
- "./skills/shrek",
28
- "./skills/yoda",
29
- "./skills/winnie-the-pooh",
30
- "./skills/paddington",
31
- "./skills/bob-ross"
32
- ]
15
+ "description": "14 production writing-style skills and character frameworks for AI agents with dynamic GitHub skill loading.",
16
+ "strict": false
33
17
  }
34
18
  ]
35
19
  }
@@ -1,26 +1,20 @@
1
1
  {
2
2
  "name": "writing-skills",
3
- "version": "0.3.2",
4
- "description": "Procedural writing-style skills for AI agents — 7 measurable frameworks and 7 character voices, each with verifiable mechanics.",
3
+ "version": "0.4.0",
4
+ "description": "14 production writing-style skills and character frameworks for AI agents with dynamic GitHub skill loading.",
5
5
  "author": {
6
6
  "name": "Surendran B",
7
7
  "url": "https://github.com/surendranb"
8
8
  },
9
- "homepage": "https://github.com/surendranb/writing-skills",
9
+ "homepage": "https://writing-skills.builditwithai.xyz",
10
10
  "repository": "https://github.com/surendranb/writing-skills",
11
11
  "license": "MIT",
12
12
  "keywords": [
13
- "writing",
14
- "writing-style",
15
- "plain-language",
16
- "business-writing",
17
- "copywriting",
18
- "voice"
19
- ],
20
- "mcpServers": {
21
- "writing-skills-mcp": {
22
- "command": "uvx",
23
- "args": ["writing-skills-mcp"]
24
- }
25
- }
13
+ "mcp",
14
+ "mcp-server",
15
+ "model-context-protocol",
16
+ "claude",
17
+ "cursor",
18
+ "ai-agents"
19
+ ]
26
20
  }
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 Surendran
3
+ Copyright (c) 2026 Surendran B
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
18
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
19
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
20
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
21
+ SOFTWARE.
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  # writing-skills
6
6
 
7
7
  **14 writing-style skills for AI agents: 7 measurable frameworks, 7 character voices.**
8
- Plain `SKILL.md` files — no code, no server. Works in any agent that reads skills
8
+ Plain `SKILL.md` files. Works in any agent that reads skills
9
9
  (Claude Code, opencode, Codex, Cursor, Kiro, Gemini).
10
10
 
11
11
  [![npm](https://img.shields.io/npm/v/writing-skills)](https://www.npmjs.com/package/writing-skills)
@@ -59,22 +59,6 @@ Every skill ends with a `Verify` checklist the agent must pass before it deliver
59
59
 
60
60
  `ted-lasso` · `jack-sparrow` · `shrek` · `yoda` · `winnie-the-pooh` · `paddington` · `bob-ross`
61
61
 
62
- ## MCP server — unlimited skills, live from GitHub
63
-
64
- ```bash
65
- uvx writing-skills-mcp
66
- ```
67
-
68
- The plugin ships 14 skills statically. The MCP server is the living registry
69
- on top: it discovers styles from the full catalog on GitHub (`search_styles`),
70
- returns any skill's full `SKILL.md` (`get_skill`), and installs it into a
71
- harness skills directory (`install_skill`). A new skill is just a commit —
72
- no package update, no re-install, at any scale.
73
-
74
- ```bash
75
- uvx --from writing-skills writing-skills-mcp
76
- ```
77
-
78
62
  ## Contribute
79
63
 
80
64
  Copy [template/SKILL.md](template/SKILL.md), fill it, run
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "writing-skills",
3
- "version": "0.3.2",
3
+ "version": "0.4.0",
4
4
  "description": "Procedural writing-style skills for agents — measurable standards, voice craft, and character voices as SKILL.md instructions.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -26,5 +26,6 @@
26
26
  "voice",
27
27
  "opencode",
28
28
  "claude-code"
29
- ]
29
+ ],
30
+ "homepage": "https://writing-skills.builditwithai.xyz"
30
31
  }
package/plugin.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
3
3
  "name": "writing-skills",
4
- "version": "0.3.2",
4
+ "version": "0.4.0",
5
5
  "description": "Procedural writing-style skills for agents \u2014 measurable standards, voice craft, and character voices as SKILL.md instructions.",
6
6
  "author": "Surendran",
7
7
  "homepage": "https://github.com/surendranb/writing-skills",