用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/diegosouzapw/awesome-omni-skill --skill doc-maintenance命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | doc-maintenance |
| description | Guide documentation updates when changing versions, adding content, or preparing releases |
Purpose: Guide documentation updates when changing versions, adding content, or preparing releases.
How it works: This skill is automatically activated when you mention tasks related to:
Simply describe what you want to do, and Claude will reference the appropriate checklist from this skill.
When to use: Updating Minecraft version, mod loader versions, or dependency versions
gradle.properties
minecraft_version=1.21.1README.md (lines ~47-50)
docs/player_guide.md (lines ~25-56)
docs/developer_guide.md (lines ~32-45)
docs/curseforge_description.md (lines ~125-128)
docs/modrinth_description.md (lines ~30-39)
fabric/src/main/resources/fabric.mod.json
depends section version rangesrecommends section if applicableneoforge/src/main/resources/META-INF/neoforge.mods.toml
[[dependencies.chronodawn]] entriesversionRange fieldsTHIRD_PARTY_LICENSES.md
Minecraft: 1.21.1
Fabric Loader: 0.17.3+
Fabric API: 0.116.7+
NeoForge: 21.1.209+
Architectury API: 13.0.8+
After updating, update this reference list in this skill file.
When to use: Adding a new boss enemy to the mod
README.md (lines ~25-31)
- Boss Name (description, drops Item Name)docs/player_guide.md
docs/curseforge_description.md (lines ~28-35)
docs/modrinth_description.md (lines ~105-140)
specs/chrono-dawn-mod/spec.md
specs/chrono-dawn-mod/data-model.md
specs/chrono-dawn-mod/tasks.md
### Boss Name (Category)
**Location**: Structure Name
**Stats**:
- Health: XXX HP
- Attack: XX damage
- Defense: XX armor points
**Abilities**:
- Ability 1: Description
- Ability 2: Description
**Strategy**:
- Tip 1
- Tip 2
**Drops**:
- **Item Name**: Description
- Experience points
When to use: Adding a new structure to the mod
README.md (lines ~17-24)
- Structure Name (location, description)docs/player_guide.md
docs/curseforge_description.md (lines ~22-29)
docs/modrinth_description.md (lines ~89-97)
specs/chrono-dawn-mod/spec.md
specs/chrono-dawn-mod/data-model.md
When to use: Adding a new ultimate artifact item
README.md (line ~32)
Item Name (type), Descriptiondocs/player_guide.md
docs/curseforge_description.md (lines ~41-46)
docs/modrinth_description.md (lines ~143-167)
specs/chrono-dawn-mod/data-model.md
### Item Name (Type)
**Stats**:
- Stat 1: Value
- Stat 2: Value
**Special Ability**: **Ability Name**
- Effect description
- Usage notes
**Recipe**:
\`\`\`
- Ingredient 1
- Ingredient 2
- Ingredient 3
\`\`\`
When to use: Adding or removing biomes, bosses, structures, wood types, or other countable content
Purpose: Ensure numeric descriptions (e.g., "8 unique biomes", "4 mid-bosses", "three wood types") remain accurate across all documentation
README.md
docs/player_guide.md
docs/curseforge_description.md
docs/modrinth_description.md
CLAUDE.md
When adding/removing content:
Tip: Use grep -r "8 unique biomes" docs/ to find all occurrences quickly
When to use: Adding a new mod dependency (required or optional)
gradle.properties
new_mod_version=1.0.0fabric/build.gradle
dependencies sectionmodImplementation, modApi, or modCompileOnly as appropriateneoforge/build.gradle
dependencies sectionmodImplementation, modApi, or modCompileOnly as appropriatefabric/src/main/resources/fabric.mod.json
depends (required) or recommends (optional)neoforge/src/main/resources/META-INF/neoforge.mods.toml
[[dependencies.chronodawn]] entrytype to "required" or "optional"versionRangeREADME.md (lines ~47-50)
docs/player_guide.md (lines ~41-56)
docs/curseforge_description.md (lines ~125-128)
docs/modrinth_description.md (lines ~30-39)
THIRD_PARTY_LICENSES.md
depends / required): Mod cannot function without itrecommends / optional): Adds features but not essentialinclude in Fabric for bundlingWhen to use: Before creating a release or publishing to CurseForge/Modrinth
Version Consistency
Documentation Accuracy
Configuration Files
Build Verification
./gradlew clean build succeeds for both loadersTesting
./gradlew test)CHANGELOG (if using)
GitHub Repository
User-Facing:
README.md - Project overview, installation, build instructionsdocs/player_guide.md - Complete gameplay guidedocs/curseforge_description.md - CurseForge mod page contentdocs/modrinth_description.md - Modrinth mod page contentLegal:
LICENSE - Project license (MIT)THIRD_PARTY_LICENSES.md - Dependency licenses and version informationDeveloper:
docs/developer_guide.md - Development setup and architecturespecs/chrono-dawn-mod/spec.md - Feature specificationspecs/chrono-dawn-mod/data-model.md - Data modelsspecs/chrono-dawn-mod/tasks.md - Implementation tasksConfiguration:
gradle.properties - Version definitionsfabric/src/main/resources/fabric.mod.json - Fabric metadataneoforge/src/main/resources/META-INF/neoforge.mods.toml - NeoForge metadatagrep or IDE search to find all occurrences of version numbersLast Updated: 2025-12-08 (Added THIRD_PARTY_LICENSES.md to maintenance checklists) Maintained by: Chrono Dawn Development Team