Agent Skillsdeepseek-ai/deepseek-harness › dsh-doc-site-sync

dsh-doc-site-sync

GitHub

用于管理DeepSeek Harness文档站点的同步与发布,包括页面增删改、导航配置及VitePress构建流程。

.agents/skills/dsh-doc-site-sync/SKILL.md deepseek-ai/deepseek-harness

触发场景

发布或更新文档页面 修复缺失页面或损坏链接 运行文档检查与同步工作流

安装

npx skills add deepseek-ai/deepseek-harness --skill dsh-doc-site-sync -g -y
更多选项

非标准路径

npx skills add https://github.com/deepseek-ai/deepseek-harness/tree/master/.agents/skills/dsh-doc-site-sync -g -y

不安装直接使用

npx skills use deepseek-ai/deepseek-harness@dsh-doc-site-sync

指定 Agent (Claude Code)

npx skills add deepseek-ai/deepseek-harness --skill dsh-doc-site-sync -a claude-code -g -y

安装 repo 全部 skill

npx skills add deepseek-ai/deepseek-harness --all -g -y

预览 repo 内 skill

npx skills add deepseek-ai/deepseek-harness --list

SKILL.md

Frontmatter
{
    "name": "dsh-doc-site-sync",
    "description": "Use when publishing, updating, moving, or removing DeepSeek Harness documentation website pages; editing website\/docs.ts mappings or navigation; diagnosing a page missing from the VitePress site; fixing projected documentation links; or running the docs:dev, docs:check, and doc-sync workflow after website-content changes."
}

Synchronizing the DeepSeek Harness Documentation Site

Keep repository Markdown as the only editable content source. Treat the website as a tested projection: website/docs.ts selects public pages, scripts/project-doc-site.ts rewrites them into the disposable website/.generated/ tree, and VitePress builds that tree. The build additionally emits a raw-Markdown twin of every route (page URL minus any trailing slash, plus .md; index routes also get a parent-level alias) and a root llms.txt index; both derive from the same manifest and projector, so publishing, moving, or removing a page updates them automatically and docs:build fails when one is missing.

Repository translations follow the sibling pairing contract: English foo.md, Chinese foo.zh.md, and foo.i18n.yaml live together. Never create zh-CN/ or other locale directories for website content. The site route trees are independent of that source layout: foo.zh.md projects to the root route and foo.md projects to the matching /en/ route.

Read the owning contracts

  • Read docs/AGENTS.md and use dsh-doc-standards when deciding where content belongs or changing product documentation prose.
  • For an edited bilingual source, follow the lightweight routine path in docs/AGENTS.md and the pairing contract; never invoke the extended translation skill automatically.
  • Read the current DocsPage type and entries in website/docs.ts before changing the manifest; do not rely on a remembered field set.
  • Read website/.vitepress/config.ts before adding a new section, sidebar collection, locale, or top-level navigation item.

Classify the change

  • Edit an already published page: change only its canonical Markdown source. Do not touch the manifest unless its route or navigation metadata changes.
  • Publish a new page: create it in its owning docs/ tier, then add one manifest entry.
  • Rename, move, or remove a page: update the canonical file, manifest entry, and inbound repository links atomically. Remove stale manifest entries; docs:check rejects missing sources.
  • Publish a generated catalog: map the generated docs/ file, but change its generator or source metadata rather than editing the catalog by hand.
  • Change site structure: update the manifest for ordinary pages; update VitePress configuration only when the existing sidebar, section, or locale model cannot express the change.

Never edit or commit website/.generated/, website/.cache/, or website/.dist/. Except for website/AGENTS.md, never add Markdown under website/; locale and route directories such as website/zh-CN/, website/en/, and website/api/ are invalid source layouts. Keep generated catalogs under docs/, freshness-gate them there, and publish them through the manifest.

Add or update a manifest entry

Set every DocsPage field deliberately:

  • source: repository-relative canonical Markdown path. For a complete bilingual pair, add the English .md path through pairedPages(); it derives the sibling .zh.md, the content locales, and counterpart aliases.
  • route: public VitePress path including the .md suffix.
  • label: sidebar label, not necessarily the document H1.
  • sidebar: reuse zh-guide, zh-develop, or en-docs unless the information architecture genuinely needs another collection.
  • section: reuse an existing section when possible. If adding one, also place it in sectionOrder in the VitePress config.
  • order: stable order within the section.
  • sourceAliases: optional additional repository paths that should resolve to this page when links are projected. It does not create another public route.

Use mirroredPages() only for a source that intentionally falls back to the same available language in both route trees. Convert that entry to pairedPages() when its counterpart is added. Keep the manifest an explicit public allowlist. Do not publish RFCs, postmortems, testing guides, AGENTS.md, or maintainer workflows merely because they exist under docs/; add internal material only when the user explicitly expands what the site publishes.

Preserve link behavior

Write normal repository-relative Markdown links in canonical docs. The projector applies these rules:

  • A target present in the manifest becomes a site-relative route.
  • An existing target outside the manifest becomes a GitHub source link, including supported line suffixes.
  • An image is the exception: its file is copied into the generated tree and referenced from there, so the site serves it regardless of repository visibility. It must be a regular file inside the repository.
  • External URLs, site-absolute URLs, email links, and fragment-only links remain unchanged.
  • A missing repository-relative target fails projection instead of silently producing a broken link.
  • Cross-page fragments use the English GitHub heading id as their canonical id. If an authored heading emits a different VitePress id, place an explicit <a id="..."></a> immediately before it; add generated aliases in the owning generator.

Do not write website-specific routes into canonical Markdown just to satisfy VitePress. Use sourceAliases for directory-style repository links that should resolve to a mapped index page.

Preview and validate

Run local preview while editing:

pnpm docs:dev

The dev server watches mapped source files and reprojects them. Restart it after changing the manifest if the new source is not picked up automatically.

Run the focused website gate before treating the mapping as valid:

pnpm docs:check

If Markdown link checks pass but the site build reports a missing fragment, follow the verify-doc-site-fragments source and target paths. Preserve the English GitHub id with an explicit alias in authored Markdown or in the owning generator.

Before committing a documentation-site change, run:

pnpm run doc-sync
pnpm run lint
git diff --check

Use dsh-pre-push-checks before pushing. Report the canonical files changed, manifest entries added or removed, public routes affected, and the exact checks run.

Keep deployment separate

Synchronizing content into the VitePress build does not publish it to the internet. Do not add GitHub Pages permissions, deployment workflows, custom domains, or public hosting unless the user explicitly requests deployment and confirms the hosting policy.

版本历史

  • b150a55 当前 2026-08-27 09:25

    新增索引路由的清理 URL .md 地址服务功能,以及为每个页面生成原始 Markdown 副本和 llms.txt 索引文件。

  • 47f9438 2026-08-16 15:43

同 Skill 集合

.agents/skills/dsh-archive-agent-notes/SKILL.md
.agents/skills/dsh-code-review/SKILL.md
.agents/skills/dsh-doc-standards/SKILL.md
.agents/skills/dsh-find-simplifications/SKILL.md
.agents/skills/dsh-merging-stacked-prs/SKILL.md
.agents/skills/dsh-pre-push-checks/SKILL.md
.agents/skills/dsh-prose-standard/SKILL.md
.agents/skills/dsh-translate-docs/SKILL.md
.agents/skills/dsh-trim-cot-leakage/SKILL.md
.agents/skills/record-browser-gif/SKILL.md

元信息

文件数
0
版本
b150a55
Hash
7d1120a3
收录时间
2026-08-16 15:43

首页 - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-29 01:25
浙ICP备14020137号-1 $访客地图$