Agent Skills
› levy-street/world-of-claudecraft
› write-game-tooltips
write-game-tooltips
GitHub该技能用于撰写或审核游戏内的玩家界面提示文本,确保描述清晰准确。需对照代码验证数值与机制,并执行相关测试检查,严禁臆测或隐藏关键规则。
Trigger Scenarios
需要新增或修改游戏内道具、技能说明时
发现现有提示文本模糊不清或存在歧义时
Install
npx skills add levy-street/world-of-claudecraft --skill write-game-tooltips -g -y
SKILL.md
Frontmatter
{
"name": "write-game-tooltips",
"description": "Write or review World of ClaudeCraft spell, talent, aura, item, and mechanic tooltips in plain English. Use whenever player-facing tooltip text is added, changed, audited, or found to be vague, especially when damage, healing, duration, stacks, targets, resources, or Attack Power and Spell Power scaling must match live code.",
"user-invocable": true
}
Write game tooltips
Make every tooltip clear enough to understand in one read and exact enough to test.
Required workflow
- Read
docs/design/tooltip-writing.mdin full. - Read the live content definition and every runtime handler for the effect.
- List the action, target, values, timing, scaling stat, triggers, caps, and consumption rules.
- Write the English source in the order the player experiences it.
- Use resolved values for anything changed by rank, gear, talents, or specialization.
- Add or update a focused test that compares the tooltip with the combat result.
- Run the relevant tooltip, mechanic, i18n, and type checks.
Hard rules
- Never infer mechanics from the old description.
- Never claim an effect scales until the live combat path proves it.
- Never hide a trigger, cap, target limit, stack rule, cooldown reset, or resource change.
- Never repeat metadata already shown above the description unless the repetition prevents a real misunderstanding.
- Never hand-edit non-English locale overlays or generated i18n files.
- Never use flavor text in place of an exact rule.
Write the English pass first. Locale work follows the repository release workflow.
Version History
- 51b342b Current 2026-08-13 10:12


