一键导入
skills-judgment
Judge, manage, and evolve the Hermes skills ecosystem using natural selection principles — with progressive loading for deep dives
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Judge, manage, and evolve the Hermes skills ecosystem using natural selection principles — with progressive loading for deep dives
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | skills-judgment |
| description | Judge, manage, and evolve the Hermes skills ecosystem using natural selection principles — with progressive loading for deep dives |
| version | 1.0.0 |
| author | zyong24 |
| license | MIT |
| platforms | ["macos","linux"] |
| language | auto |
| metadata | {"hermes":{"tags":["hermes","skills","ecosystem","management","judgment","lifecycle"],"requires_toolsets":[],"related_skills":["skills-maintenance","self-evolution"]}} |
Language auto-detection active. This document adapts based on your environment.
当前语言检测:
{{ env.LANG | default(env.LC_ALL | default("en_US.UTF-8")) }}
en*→ English modezh*→ 中文模式If detection fails, defaults to English. To force Chinese, set
LANG=zh_CN.UTF-8in your environment.
用户说"开始审判"或类似语句?
│
▼
Yes → Load this skill
│
▼
Run: hermes tools run scripts/skills_judgment scan
│
▼
Report generated → Show to user
│
▼
User approves? ─────────────────┐
│ │
Yes No
│ │
▼ ▼
Execute all verdicts Maintain status quo
(documented) (no changes)
| Metric | 当前值 | 状态 | 行动阈值 |
|---|---|---|---|
| 总 Skills 数 | {{ stats.total_skills }} | {{ stats.status }} | > 150 需分流 |
| 顶级掠食者 | {{ stats.apex }} | 🟢 健康 | — |
| 普通公民 | {{ stats.citizen }} | 🟢 健康 | — |
| 濒危物种 | {{ stats.endangered }} | 🟡 注意 | > 20 需干预 |
| 待处决 | {{ stats.condemned }} | 🔴 警戒 | > 5 立即审判 |
| Graveyard 总数 | {{ stats.graveyard }} | ⚪ 中性 | — |
| 可复活 | {{ stats.revivable }} | 🟢 好事 | — |
Note: Metrics populate after first
scan. If you see{{here, runskills_judgment scanfirst.
| 维度 | 指标 | 计算逻辑 | 低分信号 |
|---|---|---|---|
| 活跃度 / Active | updated + mtime | 有更新且 < 14 天 = 2 | 14 天无更新 |
| 关系度 / Relationship | related_skills 图 | 活跃引用 +1, 死锁引用 +0.1 | 孤立无引用 |
| 完整度 / Completeness | 5 个 metadata 字段 | 每字段 +1, 上限 5 | 缺 name/description/tags |
| 健壮度 / Robustness | 4 个内容章节 | 每章节 +2, 上限 8 | 缺 Procedure/Pitfalls |
| 适应度 / Adaptability | platforms + prereqs + env_vars | 每项 +1, 上限 3 | 无 OS/环境适配 |
| 竞争位 / Competition | 冲突组内对比 | 组内完整性最高者 +2 | 组内最差 |
| 分值 | 级别 | 行为 |
|---|---|---|
| > 12 | 顶级掠食者 / Apex Predator | 保护,不进入审判 |
| 7-12 | 普通公民 / Citizen | 正常存在,不干预 |
| 3-6 | 濒危物种 / Endangered | 进入 pending 观察 |
| < 3 | 待处决 / Condemned | 进入审判流程 |
For detailed documentation, load specific references on demand. 详细文档,按需加载:
| Reference | 内容 | 何时加载 |
|---|---|---|
references/architecture.md | 系统架构 + 数据流图 | 理解组件如何连接 |
references/fitness-guide.md | 六维评估标准 + 阈值 | 分析某个 skill 为何得此分 |
references/verdict-guide.md | 判决类型 + 执行机制 + 可逆性 | 准备执行判决 |
references/conflict-groups.md | 冲突组分析 + 存活策略 | 处理竞争性 skills |
references/examples.md | 来自生态系统的真实案例 | 从实际审判中学习 |
# 加载架构参考
skill_view("skills-judgment", file_path="references/architecture.md")
# 加载 fitness 评估指南
skill_view("skills-judgment", file_path="references/fitness-guide.md")
# 加载判决执行指南
skill_view("skills-judgment", file_path="references/verdict-guide.md")
# 加载冲突组分析
skill_view("skills-judgment", file_path="references/conflict-groups.md")
# 加载案例研究
skill_view("skills-judgment", file_path="references/examples.md")
flowchart LR
A[User says "开始审判"] --> B[Run scan]
B --> C[Generate Report]
C --> D[Show to User]
D --> E{User approves?}
E -->|Yes| F[Execute Verdicts]
E -->|No| G[Status Quo]
F --> H{Verdict Type}
H -->|Probation| I[Patch frontmatter]
H -->|Exile| J[Move to .judgment/exiled/]
H -->|Graveyard| K[Move to .graveyard/]
H -->|Delete| L[Permanent deletion]
I --> M[Graveyard Review]
J --> M
K --> M
M --> N{7-day Review}
N -->|Original exists| O[Revival possible]
N -->|Replaced| P[Confirmed death]
N -->|Orphan| Q[Unresolved]
| Verdict | 适用分值 | 执行方式 | 可逆 | 风险 |
|---|---|---|---|---|
| Probation 缓刑 | 3-6 | 写入 frontmatter | ✅ | 低 |
| Exile 流放 | 0-3 | 移动到 .judgment/exiled/ | ✅ | 中 |
| Graveyard 处决 | 0-3 | 移动到 .graveyard/ | ✅ | 低 |
| Delete 彻底删除 | 0-3 | shutil.rmtree | ❌ | 高 |
# 完整扫描 + 报告生成
hermes tools run scripts/skills_judgment scan
# 扫描 + 输出到 ThirdSpace(供 cron 使用)
hermes tools run scripts/skills_judgment scan --output ~/ThirdSpace/.../report.md
# 列出所有审判分区状态
hermes tools run scripts/skills_judgment list
# 运行 Graveyard 复审
hermes tools run scripts/skills_judgment graveyard
scan 再做审判决定related_skills 指向它的 skill任何审判会话后,验证系统健康:
# 验证各分区正确填充
hermes tools run scripts/skills_judgment list
# 验证扫描结果与实际相符
hermes tools run scripts/skills_judgment scan
# 对比"生态系统概览"数字与预期是否一致
references/architecture.md 理解系统references/fitness-guide.md 查看评分标准references/verdict-guide.md 了解可逆性references/conflict-groups.md 查看策略references/examples.md 查看真实案例Built without modifying Hermes source code. All intervention via file movement + frontmatter patching.