@hanna84/mcp-writing 3.8.0 → 3.8.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/CHANGELOG.md +7 -0
- package/README.md +5 -5
- package/package.json +1 -1
- package/src/scripts/generate-tool-docs.mjs +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,9 +4,16 @@ 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.1](https://github.com/hannasdev/mcp-writing/compare/v3.8.0...v3.8.1)
|
|
8
|
+
|
|
9
|
+
- docs: reorganize product and docs structure [`#194`](https://github.com/hannasdev/mcp-writing/pull/194)
|
|
10
|
+
|
|
7
11
|
#### [v3.8.0](https://github.com/hannasdev/mcp-writing/compare/v3.7.1...v3.8.0)
|
|
8
12
|
|
|
13
|
+
> 16 May 2026
|
|
14
|
+
|
|
9
15
|
- feat: add canonical chapter and epigraph indexing [`#193`](https://github.com/hannasdev/mcp-writing/pull/193)
|
|
16
|
+
- Release 3.8.0 [`6da6308`](https://github.com/hannasdev/mcp-writing/commit/6da63083d2abb289cc4f06f139f57d55e5d977d5)
|
|
10
17
|
|
|
11
18
|
#### [v3.7.1](https://github.com/hannasdev/mcp-writing/compare/v3.7.0...v3.7.1)
|
|
12
19
|
|
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/
|
|
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
|
#!/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
|