AgentSkillsCN

Documentation Rules

所有文档均为英文。根 README 简洁,详细文档位于 `/docs`。

SKILL.md
--- frontmatter
name: "Documentation Rules"
description: "All documentation in English. Root README concise, detailed docs in `/docs`."
version: "1.0.0"
category: "core"
author: "Rulebook"
tags: ["core"]
dependencies: []
conflicts: []

Documentation Standards

CRITICAL: All documentation in English. Root README concise, detailed docs in /docs.

Structure

Root-Level (ONLY):

  • README.md - Overview + quick start
  • CHANGELOG.md - Version history
  • AGENTS.md - AI instructions
  • LICENSE, CONTRIBUTING.md, SECURITY.md

All Other Docs in /docs:

  • ARCHITECTURE.md, DEVELOPMENT.md, ROADMAP.md
  • specs/, guides/, diagrams/, benchmarks/

Update Requirements by Commit Type

TypeUpdate
featREADME features, API docs, CHANGELOG "Added"
fixTroubleshooting, CHANGELOG "Fixed"
breakingCHANGELOG + migration guide, version docs
perfBenchmarks, CHANGELOG "Performance"
securitySECURITY.md, CHANGELOG "Security"
docsVerify spelling/links only
refactorUpdate if behavior changed

Quality Checks (CI/CD)

bash
markdownlint **/*.md         # Lint markdown
markdown-link-check **/*.md  # Check links
codespell **/*.md            # Spell check

MUST pass before commit (see AGENT_AUTOMATION).