AgentSkillsCN

modding-doc-overview

为Hytale模组开发提供文档导引概览。可用于获取入门指导、命名空间ID、文件夹结构、ECS模式,以及各类系统指南的链接。触发关键词:模组文档、概览、入门指南、命名空间ID。

SKILL.md
--- frontmatter
name: modding-doc-overview
description: Doc-derived overview for Hyforged modding. Use for getting started guidance, namespaced IDs, folder structure, ECS patterns, and links to system guides. Triggers - modding doc, overview, getting started, namespaced ids.

Modding Doc: Overview

This skill summarizes Modding_Doc/README and points to the system guides.

Documentation References

Doc-Derived How-To (Getting Started)

  1. Use namespaced IDs (namespace:name) for all assets to avoid conflicts.
  2. Place server-side assets under src/main/resources/Server/<YourMod>/.
  3. Follow ECS patterns: components are data-only, systems contain logic, and use data-driven configs.
  4. Select the relevant system guide (Affixes, Stats, Combat, Progression, Scaling) and follow its JSON schemas.

Notes:

  • Keep everything data-driven and namespaced; avoid hard-coded values.
  • Use the system-specific guides for detailed schemas and API usage.