Back to projects
ToolsComplete

Recruit Skill - Agent Persona Builder

Build agent persona through iterative questioning. Role-first, language-adaptive, write-on-confirm.

Claude Code SkillMarkdown

Status License

Overview

recruit-skill is a Claude Code Skill for building agent persona through iterative deep questioning.

Core Features

FeatureDescription
Role-firstAsk role type first, then decide inquiry dimensions
One-at-a-timeEach question asked individually, gradual deep dive
Language-adaptiveOutput language auto-matches user interaction language
Write-on-confirmAny file write requires explicit user confirmation

Usage

# Install
cp -r skills/recruit ~/.claude/skills/
 
# Trigger
/recruit

Skill 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

VersionLinesDescription
v1214Full flowchart, multiple tables, detailed instructions
v217Simplified to core instructions
v316Removed 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.