consistency-check
仓库创建 2026年4月30日最近提交 3 天前SkillHot 收录 20 天前
▸ 精选理由
能精确定位问题段落,避免全量解析浪费时间。
▸ 风险提示
会读取并解析仓库设计文档
这个 Skill 做什么
比对 GDD 与实体注册表,检测跨文档不一致并定位冲突段落。
把所有 GDD 跟实体注册表对比,找出跨文档不一致的地方(比如同一实体在不同文档里数值或公式不一样),并定位到具体冲突段落。当你在写设计或合并文档时需要保证数据一致性就用它,能当作写时的安全网。它效率高:先读注册表再去定位提到名字的 GDD 段落,避免全量重复扫描。
▸ 展开 SKILL.md 英文原文
Scan all GDDs against the entity registry to detect cross-document inconsistencies: same entity with different stats, same item with different values, same formula with different variables. Grep-first approach — reads registry then targets only conflicting GDD sections rather than full document reads.
65
Stars
7
Forks
40
仓库内 Skill
+9
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/striderZA/OpenCodeGameStudios/master/.agents/skills/consistency-check/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/striderZA/OpenCodeGameStudios/master/.agents/skills/consistency-check/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# Consistency Check Detects cross-document inconsistencies by comparing all GDDs against the entity registry (`design/registry/entities.yaml`). Uses a grep-first approach: reads the registry once, then targets only the GDD sections that mention registered names — no full document reads unless a conflict needs investigation. **This skill is the write-time safety net.** It catches what `/design-system`'s per-section checks may have missed and what `/review-all-gdds`'s holistic review catches too late. **When to run:** - After writing each new GDD (before moving to the next system) - Before `/review-all-gdds` (so that skill starts with a clean baseline) - Before `/create-architecture` (incon
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有