一键导入
reference-organization
Review the reference section and suggest how to organize files for better sidebar menu discoverability
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Review the reference section and suggest how to organize files for better sidebar menu discoverability
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Audit and update the curated persona symptom pages (for-developers.md, for-agile-coaches.md, for-managers.md) when symptoms or anti-patterns are added, removed, or moved. Use this skill whenever new symptom or anti-pattern pages are created, when existing pages are deleted or reorganized, after running /cd-symptom-page or /cd-anti-pattern-page, or when the user asks to update the persona reading lists. Also use proactively at the end of any session that added or changed symptom content.
Generate a complete CD migration facilitator chatbot setup from the beyond.minimumcd.org site content. Use this skill whenever a user wants to create a chatbot, assistant, or guide that teams can use to navigate the CD migration journey — especially when they mention facilitating workshops, helping teams self-diagnose delivery problems, or guiding teams through continuous delivery adoption. Also use this when someone asks "how can teams use this site interactively" or "can we make a bot from this". Invoke proactively any time the user is thinking about team enablement, self-service CD coaching, or turning site content into an interactive guide.
Generate SVG diagrams for the CD migration documentation site (beyond.minimumcd.org). Use this skill whenever the user asks for a diagram, visual, workflow illustration, before/after comparison, or any figure to embed in a content page. Also use it when adding a diagram would meaningfully improve a content page being written or edited, even if the user has not explicitly asked for one. This skill is the single source of truth for the site's diagram color palette, layout conventions, and SVG output format.
Compare documentation against CD principles and practices from continuousdelivery.com and minimumcd.org, identifying gaps, misalignments, and improvement opportunities
Validate structure, voice, front matter, and cross-references for CD migration site content pages
Generate guide pages for the Migrate to CD section following the standard template
| name | reference-organization |
| description | Review the reference section and suggest how to organize files for better sidebar menu discoverability |
| user_invocable | true |
Role: worker. This skill analyzes reference section structure and produces reorganization recommendations. It does not modify files.
Analyze the reference section's file structure, front matter weights, and grouping to identify navigation and discoverability problems in the sidebar menu. Produce specific reorganization recommendations.
Accept an optional scope argument. One of:
audit (default) - analyze current structure and recommend changesweight-map - output a table of every page's weight, parent, and resulting menu positioncompare [proposal] - compare the current structure against a proposed layout described in the argument
If no argument is given, default to audit.Read the full reference section to build a structural model:
content/en/docs/reference/_index.md_index.md in subsectionstitle, linkTitle, weight, description, draft statusRead sidebar configuration from hugo.toml to understand Docsy sidebar behavior:
sidebar_menu_compact and sidebar_menu_foldable settingsRun all checks from the categories below.
Report findings and recommendations using the output format at the bottom.
Docsy renders the sidebar by sorting all direct children of a section (both leaf pages and subsections) by their weight value. When two items share the same weight, the order is undefined. Subsections appear as expandable folders. Leaf pages appear as flat links. There is no visual distinction in weight between a leaf page and a subsection - they interleave based on weight.
This means:
weight: 3 and a leaf page with weight: 3 will collide_index.md) control the subsection's position and labelIdentify problems with how items sort in the sidebar.
Evaluate whether related content is grouped logically.
linkTitle values clearly communicate what the reader will find inside?Evaluate how easy it is to find content by scanning the collapsed sidebar.
linkTitle values short enough to display without truncation in a typical sidebar width (roughly 25 characters)?Evaluate whether the hierarchy helps readers drill down efficiently.
_index.md pages provide a useful overview, or are they just lists of child pages?Evaluate whether the organization serves how readers actually use reference material.
# Reference Section Organization Review
## Current Structure
[Tree diagram showing current sidebar order with weights]
## Findings
### 1. Weight Conflicts and Ordering
**Status: [Clean | Has Issues]**
- [Finding with specific file and weight values]
**Impact:** [How this affects the reader's experience]
### 2. Grouping and Categorization
**Status: [Clean | Has Issues]**
- [Finding with specific files]
**Impact:** [How this affects the reader's experience]
### 3. Sidebar Scannability
**Status: [Clean | Has Issues]**
- [Finding]
**Impact:** [How this affects the reader's experience]
### 4. Progressive Disclosure
**Status: [Clean | Has Issues]**
- [Finding]
**Impact:** [How this affects the reader's experience]
### 5. Audience Alignment
**Status: [Clean | Has Issues]**
- [Finding]
**Impact:** [How this affects the reader's experience]
## Recommended Reorganization
### Option A: [Name]
[Description of the approach]
Reference (weight: 9) ├── [item] (weight: N) ├── [item] (weight: N) ...
**Pros:** [list]
**Cons:** [list]
### Option B: [Name] (if applicable)
[Same format]
## Implementation Steps
- [ ] [Specific file change: path, field, old value -> new value]
- [ ] [Specific file change]
...
## Weight Map (if requested)
| File | Current Weight | Parent | Sidebar Position | Proposed Weight |
|------|---------------|--------|-----------------|-----------------|
| ... | ... | ... | ... | ... |
_index.md front matter needed.sidebar_menu_compact: true behavior: subsections are collapsed by default, so top-level labels must be self-explanatory.