Overview
recruit-skill is a Claude Code Skill for building agent persona through iterative deep questioning.
Core Features
| Feature | Description |
|---|---|
| Role-first | Ask role type first, then decide inquiry dimensions |
| One-at-a-time | Each question asked individually, gradual deep dive |
| Language-adaptive | Output language auto-matches user interaction language |
| Write-on-confirm | Any file write requires explicit user confirmation |
Usage
# Install
cp -r skills/recruit ~/.claude/skills/
# Trigger
/recruitSkill Structure
recruit-skill/
├── skills/recruit/SKILL.md # Core instruction file (16 lines)
├── README.md # Installation and usage guide
└── LICENSE # MIT License
SKILL.md Core Logic
---
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.Design Evolution
| Version | Lines | Description |
|---|---|---|
| v1 | 214 | Full flowchart, multiple tables, detailed instructions |
| v2 | 17 | Simplified to core instructions |
| v3 | 16 | Removed redundant constraints |
Key changes:
- Role-first: Changed from preset dimensions to asking role type first
- Termination: Changed from fixed coverage to AI judgment + user confirmation
- Format: Minimal style inspired by grill-me (11 lines)
Current Status
Released. Future plans: integrate into SuperHarness, collect user feedback.