概述
recruit-skill 是一个 Claude Code Skill,用于通过迭代式深度询问构建用户期望的 Agent 人格画像。
核心特性
| 特性 | 说明 |
|---|---|
| 角色优先 | 先问角色类型,再决定询问维度 |
| 一问一答 | 每次只问一个问题,逐层深入 |
| 语言自适应 | 输出语言自动匹配用户交互语言 |
| 写入需确认 | 任何文件写入必须用户明确确认 |
使用方式
# 安装
cp -r skills/recruit ~/.claude/skills/
# 触发
/recruitSkill 结构
recruit-skill/
├── skills/recruit/SKILL.md # 核心指令文件(16行)
├── README.md # 安装与使用说明
└── LICENSE # MIT 许可证
SKILL.md 核心逻辑
---
name: recruit
description: Build agent persona through iterative questioning.
---
Build the user's desired agent persona by asking questions one at a time:
1. Explore existing context (memory files, CLAUDE.md, project structure)
2. Ask: what role to define?
3. Ask role-specific dimension questions.
When you believe info is sufficient, present summary for confirmation.
4. Summarize persona, confirm write path or keep as session context
Constraints:
- No assumptions. Ask if uncertain.
- Do NOT write without user confirmation.设计历程
| 版本 | 行数 | 说明 |
|---|---|---|
| v1 | 214行 | 完整流程图、多表格、详细说明 |
| v2 | 17行 | 精简到核心指令 |
| v3 | 16行 | 移除冗余约束 |
关键修改:
- 角色优先:从预设维度改为先问角色类型
- 终止条件:从固定覆盖改为AI判断+用户确认
- 格式精简:参考grill-me(11行)极简风格
当前状态
已完成发布,后续计划接入 SuperHarness 项目、收集用户反馈。