SkillSpace/hermes-agent/skills/dev-pipeline-universal/references/roles.example.yaml
sinohqb 8dafa5bc52 Add archives, import dev-pipeline skill, and complete Hermes Agent spec
- Add archives/ directory for immutable external skill snapshots
  - Strict immutability rule: only README/CHANGELOG can be modified
  - First import: dev-pipeline-universal v1.0.0 (Hermes Agent)
- Import dev-pipeline-universal into hermes-agent/skills/ with CHANGELOG
- Update hermes-agent/publish/registry.json with imported skill
- Rewrite meta-skills/create-hermes-agent-skill/ with full spec:
  - SKILL.md frontmatter fields and validator constraints
  - Recommended body structure (Overview → When to Use → Pitfalls → Verification)
  - Progressive disclosure (3-level loading)
  - 8 writing quality principles
  - Official reference skills from GitHub repo
  - Tool chain docs (skill_manage, /learn, skill_view)
- Update README.md with archives/ in directory structure
2026-07-02 00:46:13 +08:00

42 lines
1.2 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 研发流水线 — 角色模型配置示例
#
# 使用前请复制为 roles.yaml修改模型名称为您实际可用的模型。
# 每个角色使用不同模型家族可获得更好的交叉审视效果。
roles:
- name: "架构师"
code: "ARCH"
emoji: "🏗️"
stages: ["②技术方案"]
model: "<强推理模型,如 glm-5.2 / claude-sonnet-4 / deepseek-v4-pro>"
- name: "设计师"
code: "UI"
emoji: "🎨"
stages: ["③UI设计"]
model: "<编码版模型,如 kimi-k2.7-code / claude-sonnet-4>"
- name: "主程序员"
code: "DEV"
emoji: "💻"
stages: ["④编码实现"]
model: "<深度编码模型,如 deepseek-v4-pro / claude-sonnet-4>"
- name: "结对程序员"
code: "DEV2"
emoji: "👥"
stages: ["④编码实现(review)"]
model: "<与主程序员不同家族,如 kimi-k2.7-code / gpt-4o>"
- name: "审查员"
code: "REVIEW"
emoji: "🔍"
stages: ["⑤代码审查"]
model: "<深度推理模型,如 deepseek-v4-pro / claude-sonnet-4>"
- name: "测试员"
code: "QA"
emoji: "🧪"
stages: ["⑥测试验证"]
model: "<Agent能力强的模型如 minimax-m3 / claude-sonnet-4>"