ワンクリックで
dynamo-docs
Maintain Dynamo Fern docs site -- add, update, move, or remove pages. Use for any documentation changes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Maintain Dynamo Fern docs site -- add, update, move, or remove pages. Use for any documentation changes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Start a debugging session with worklog file
File a GitHub bug issue against ai-dynamo/dynamo using context from the current conversation.
Check CI status, analyze failures, and explain skips for a Dynamo PR
Generate optimized tool call parsers for dynamo from HuggingFace model chat templates. Use this when you need to add support for a new model's tool calling format. Takes a HuggingFace model name, analyzes its chat template, compares with existing parsers, and either maps to existing parser or generates new Rust code with tests for the dynamo tool_calling library.
| name | dynamo-docs |
| description | Maintain Dynamo Fern docs site -- add, update, move, or remove pages. Use for any documentation changes. |
Unified skill for adding, updating, moving, and removing pages on the Dynamo Fern documentation site.
ALL edits happen on main (or a feature branch based on main).
The docs-website branch is CI-managed and must never be edited by hand.
.md), subdirectory under docs/.docs/<subdirectory>/<filename>.md:---
# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
title: <Page Title>
---
# <Page Title>
docs/index.yml under the correct section:- page: <Page Title>
path: <subdirectory>/<filename>.md
grep -rn in docs/).title: and the - page: name in docs/index.yml.git mv the file, remove old nav entry, add new one, update all incoming links.grep -r "<filename>" docs/ --include="*.md".git rm docs/<subdirectory>/<filename>.md.- page: block from docs/index.yml. If it was the last page in a section, remove the entire - section: block.Use GitHub-flavored markdown. CI auto-converts callouts to Fern format:
| GitHub Syntax | Fern Component |
|---|---|
> [!NOTE] | <Note> |
> [!TIP] | <Tip> |
> [!IMPORTANT] | <Info> |
> [!WARNING] | <Warning> |
> [!CAUTION] | <Error> |
Reference images from docs/assets/.
index.ymlSearch for:
# ==================== Getting Started ====================# ==================== Kubernetes Deployment ====================# ==================== User Guides ====================# ==================== Backends ====================# ==================== Components ====================# ==================== Integrations ====================# ==================== Documentation ====================# ==================== Design Docs ====================# ==================== Blog ====================# ==================== Hidden Pages ====================fern check
fern docs broken-links
Optional local preview: fern docs dev (localhost:3000, hot reload, no token).
git add docs/
git commit -s -m "docs: <add|update|remove> <page-title>"
| Symptom | Fix |
|---|---|
fern check YAML error | Check 2-space indent; - page: must be inside contents: |
| Missing/orphaned file | path: in index.yml must match actual file location |
| Broken links in CI | grep -r "<filename>" docs/ and fix stale references |
| MDX parse error | Replace <https://...> with [text](https://...) |
| Page missing from site | Ensure nav entry exists in index.yml; allow a few minutes for sync |
| File | Purpose |
|---|---|
docs/index.yml | Navigation tree |
docs/ | Content directory |
docs/assets/ | Images, SVGs, fonts |
fern/docs.yml | Fern site configuration |
fern/convert_callouts.py | Callout conversion (GitHub -> Fern) |
docs/README.md | Full architecture guide |