@takazudo/zudo-doc 5.3.0 → 5.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -4,6 +4,21 @@ All notable changes to `@takazudo/zudo-doc` are documented in this file.
4
4
 
5
5
  The format is based on Keep a Changelog, and release notes are generated from the changelog MDX pages.
6
6
 
7
+ ## [5.4.0] - 2026-08-13
8
+
9
+ ### Features
10
+
11
+ - create-zudo-doc: new **Claude skills (writing)** scaffold feature (`--claude-skills-writing`, off by default) — ships the new `zudo-doc-writing` Claude Code skill into generated projects: a doc-writing + navigation-structure guide (plan-the-nav-tree-first workflow, 3-level hierarchy, file-structure-is-navigation, category index pages, `sidebar_position` discipline, frontmatter schema, no-h1 rule, relative `.mdx` links, admonition syntax) that keeps AI-assisted doc authoring from producing chaotic navigation. Independent of the existing "Claude skills (user-facing)" checkbox. (b37e28e5, #3383)
12
+
13
+ ### Bug Fixes
14
+
15
+ - Corrected stale doc-authoring claims in the writing-rules skill and the Writing Docs guide: the default docs frontmatter schema is `.passthrough()` (custom keys are preserved, not rejected — and a typo'd framework field is silently ignored rather than erroring), and the admonition set includes the `caution` type (the `Caution` component, plus the JSX-only `Important` component). (9acbc838, 3f338647, #3384)
16
+
17
+ ### Other Changes
18
+
19
+ - Restructured the Claude Skills guide (EN+JA) around the two independent opt-in skill features, and fixed the stale claim that shipped skills are verbatim monorepo copies. (4511619d)
20
+ - Template drift check: allowlisted the template-only `zudo-doc-writing` skill (its correctness is guarded by the generator's vitest suite). (821f6602)
21
+
7
22
  ## [5.3.0] - 2026-08-11
8
23
 
9
24
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@takazudo/zudo-doc",
3
- "version": "5.3.0",
3
+ "version": "5.4.0",
4
4
  "type": "module",
5
5
  "description": "zudo-doc framework primitives layer that sits on top of zfb's engine — sidebar, theme, TOC, breadcrumb, layouts, head injection, View Transitions, SSR-skip wrappers (per ADR-003).",
6
6
  "license": "MIT",
@@ -663,7 +663,7 @@
663
663
  "typescript": "^5.0.0",
664
664
  "vitest": "^4.1.0",
665
665
  "zod": "^4.3.6",
666
- "@takazudo/zudo-doc-history-server": "5.3.0"
666
+ "@takazudo/zudo-doc-history-server": "5.4.0"
667
667
  },
668
668
  "scripts": {
669
669
  "build": "tsup && tsc -p tsconfig.build.json",