@hanna84/mcp-writing 3.8.0 → 3.8.2

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/CHANGELOG.md CHANGED
@@ -4,9 +4,23 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
+ #### [v3.8.2](https://github.com/hannasdev/mcp-writing/compare/v3.8.1...v3.8.2)
8
+
9
+ - docs(skills): align release-log path guidance [`#195`](https://github.com/hannasdev/mcp-writing/pull/195)
10
+
11
+ #### [v3.8.1](https://github.com/hannasdev/mcp-writing/compare/v3.8.0...v3.8.1)
12
+
13
+ > 16 May 2026
14
+
15
+ - docs: reorganize product and docs structure [`#194`](https://github.com/hannasdev/mcp-writing/pull/194)
16
+ - Release 3.8.1 [`c200db8`](https://github.com/hannasdev/mcp-writing/commit/c200db8a0ff5e73114779db7be1090c918cd21f9)
17
+
7
18
  #### [v3.8.0](https://github.com/hannasdev/mcp-writing/compare/v3.7.1...v3.8.0)
8
19
 
20
+ > 16 May 2026
21
+
9
22
  - feat: add canonical chapter and epigraph indexing [`#193`](https://github.com/hannasdev/mcp-writing/pull/193)
23
+ - Release 3.8.0 [`6da6308`](https://github.com/hannasdev/mcp-writing/commit/6da63083d2abb289cc4f06f139f57d55e5d977d5)
10
24
 
11
25
  #### [v3.7.1](https://github.com/hannasdev/mcp-writing/compare/v3.7.0...v3.7.1)
12
26
 
package/README.md CHANGED
@@ -42,14 +42,14 @@ Instead of feeding an entire manuscript to an AI and hoping it fits in the conte
42
42
 
43
43
  | Guide | Description |
44
44
  |---|---|
45
- | [docs/setup.md](docs/setup.md) | Prerequisites, first-time setup, Scrivener import, native sync format |
45
+ | [docs/guides/setup.md](docs/guides/setup.md) | Prerequisites, first-time setup, Scrivener import, native sync format |
46
46
  | [mcp-writing-vscode](https://github.com/hannasdev/mcp-writing-vscode) | VS Code extension for client-native setup flows |
47
- | [docs/docker.md](docs/docker.md) | Docker Compose, OpenClaw integration, SSH hardening |
48
- | [docs/data-ownership.md](docs/data-ownership.md) | Which tools write which files, import safety rules |
49
- | [docs/tools.md](docs/tools.md) | Full tool reference — auto-generated from source |
47
+ | [docs/guides/docker.md](docs/guides/docker.md) | Docker Compose, OpenClaw integration, SSH hardening |
48
+ | [docs/foundations/managed-structure-contract.md](docs/foundations/managed-structure-contract.md) | Design boundaries for structural mutation, generated views, import, and maintenance workflows |
49
+ | [docs/agents/tools.md](docs/agents/tools.md) | Full tool reference — auto-generated from source |
50
50
  | [docs/agents/README.md](docs/agents/README.md) | Index of agent-focused guidance, examples, and boot files |
51
51
  | [docs/agents/use-cases.md](docs/agents/use-cases.md) | Agent-oriented transcripts and prompt/tooling examples |
52
- | [docs/development.md](docs/development.md) | Running locally, tests, environment variables, troubleshooting |
52
+ | [docs/guides/development.md](docs/guides/development.md) | Running locally, tests, environment variables, troubleshooting |
53
53
 
54
54
  ## Breaking changes
55
55
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hanna84/mcp-writing",
3
- "version": "3.8.0",
3
+ "version": "3.8.2",
4
4
  "description": "MCP service for AI-assisted reasoning and editing on long-form fiction projects",
5
5
  "homepage": "https://hannasdev.github.io/mcp-writing/",
6
6
  "type": "module",
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  /**
3
- * Generates docs/tools.md from tool definitions in the runtime entrypoint
3
+ * Generates docs/agents/tools.md from tool definitions in the runtime entrypoint
4
4
  * (src/index.js when present, otherwise index.js) and src/tools/*.js.
5
5
  *
6
6
  * Run: node src/scripts/generate-tool-docs.mjs
@@ -15,7 +15,7 @@ import path from 'node:path';
15
15
  import { fileURLToPath } from 'node:url';
16
16
 
17
17
  const ROOT = path.resolve(path.dirname(fileURLToPath(import.meta.url)), "../..");
18
- const OUT = path.join(ROOT, 'docs', 'tools.md');
18
+ const OUT = path.join(ROOT, 'docs', 'agents', 'tools.md');
19
19
 
20
20
  // Build a map from each registration function name to its module source.
21
21
  // e.g. "registerSyncTools" -> contents of src/tools/sync.js