← 返回 Skills 市场
larsderidder

Hire

作者 larsderidder · GitHub ↗ · v1.0.1
cross-platform ⚠ suspicious
2022
总下载
0
收藏
6
当前安装
3
版本数
在 OpenClaw 中安装
/install hire
功能描述
Interactive hiring wizard to set up a new AI team member. Guides the user through role design via conversation, generates agent identity files, and optionally sets up performance reviews. Use when the user wants to hire, add, or set up a new AI agent, team member, or assistant. Triggers on phrases like "hire", "add an agent", "I need help with X" (implying a new role), or "/hire".
使用说明 (SKILL.md)

hire

Set up a new AI team member through a guided conversation. Not a config generator - a hiring process.

When to Use

User says something like:

  • "I want to hire a new agent"
  • "I need help with X" (where X implies a new agent role)
  • "Let's add someone to the team"
  • /hire

The Interview

3 core questions, asked one at a time:

Q1: "What do you need help with?" Let them describe the problem, not a job title. "I'm drowning in code reviews" beats "I need a code reviewer."

  • Listen for: scope, implied autonomy level, implied tools needed

Q2: "What's their personality? Formal, casual, blunt, cautious, creative?" Or frame it as: "If this were a human colleague, what would they be like?"

  • Listen for: communication style, vibe, how they interact

Q3: "What should they never do?" The red lines. This is where trust gets defined.

  • Listen for: boundaries, safety constraints, access limits

Q4: Dynamic (optional)

After Q1-Q3, assess whether anything is ambiguous or needs clarification. If so, ask ONE follow-up question tailored to what's unclear. Examples:

  • "You mentioned monitoring - should they alert you immediately or batch updates?"
  • "They'll need access to your codebase - any repos that are off-limits?"
  • "You said 'casual' - are we talking friendly-professional or meme-level casual?"

If Q1-Q3 were clear enough, skip Q4 entirely.

Summary Card

After the interview, present a summary:

🎯 Role: [one-line description]
🧠 Name: [suggested name from naming taxonomy]
🤖 Model: [selected model] ([tier])
⚡ Personality: [2-3 word vibe]
🔧 Tools: [inferred from conversation]
🚫 Boundaries: [key red lines]
🤝 Autonomy: [inferred level: high/medium/low]

Then ask: "Want to tweak anything, or are we good?"

Model Selection

Before finalizing, select an appropriate model for the agent.

Step 1: Discover available models

Run openclaw models list or check the gateway config to see what's configured.

Step 2: Categorize by tier

Map discovered models to capability tiers:

Tier Models (examples) Best for
reasoning claude-opus-, gpt-5, gpt-4o, deepseek-r1 Strategy, advisory, complex analysis, architecture
balanced claude-sonnet-*, gpt-4-turbo, gpt-4o-mini Research, writing, general tasks
fast claude-haiku-, gpt-3.5, local/ollama High volume, simple tasks, drafts
code codex-, claude-sonnet-, deepseek-coder Coding, refactoring, tests

Use pattern matching on model names - don't hardcode specific versions.

Step 3: Match role to tier

Based on the interview:

  • Heavy reasoning/advisory/strategy → reasoning tier
  • Research/writing/creative → balanced tier
  • Code-focused → code tier (or balanced if not available)
  • High-volume/monitoring → fast tier

Step 4: Select and confirm

Pick the best available model for the role. In the summary card, add:

🤖 Model: [selected model] ([tier] - [brief reason])

If multiple good options exist or you're unsure, ask: "For a [role type] role, I'd suggest [model] (good balance of capability and cost). Or [alternative] if you want [deeper reasoning / faster responses / lower cost]. Preference?"

Notes

  • Don't assume any specific provider - work with what's available
  • Cheaper is better when capability is sufficient
  • The user's default model isn't always right for every agent
  • If only one model is available, use it and note it in the summary

Optional Extras

After the summary is confirmed, offer:

  1. "Want to set up periodic performance reviews?"

    • If yes: ask preferred frequency (weekly, biweekly, monthly)
    • Create a cron job that triggers a review conversation
    • Review covers: what went well, what's not working, scope/permission adjustments
    • At the end of each review, ask: "Want to keep this schedule, change frequency, or stop reviews?"
  2. Onboarding assignment (if relevant to the role)

    • Suggest a small first task to test the new agent
    • Something real but low-stakes, so the user can see them in action

What to Generate

Create an agent directory at agents/\x3Cname>/ with:

Always unique (generated fresh):

  • AGENTS.md - Role definition, responsibilities, operational rules, what they do freely vs ask first
  • IDENTITY.md - Name, emoji, creature type, vibe, core principles

Start from template, customize based on interview:

  • SOUL.md - Base from workspace SOUL.md template, customize vibe/boundaries sections
  • TOOLS.md - Populated with inferred tools and access notes
  • HEARTBEAT.md - Empty or with initial periodic tasks if relevant to role

Symlink to shared (default, opinionated):

  • USER.md../../USER.md (they need to know who they work for)
  • MEMORY.md../../MEMORY.md (shared team context)

Mention to the user: "I've linked USER.md and MEMORY.md so they know who you are and share team context. You can change this later if you want them more isolated."

Naming

Use craft/role-based names. Check TOOLS.md for the full naming taxonomy:

  • Research: Scout, Observer, Surveyor
  • Writing: Scribe, Editor, Chronicler
  • Code: Smith, Artisan, Engineer
  • Analysis: Analyst, Assessor, Arbiter
  • Creative: Muse, Artisan
  • Oversight: Auditor, Reviewer, Warden

Check existing agents to avoid name conflicts. Suggest a name that fits the role, but let the user override.

Team Awareness

Before generating, check agents/ for existing team members. Note:

  • Potential overlaps with existing roles
  • Gaps this new hire fills
  • How they'll interact with existing agents

Mention any relevant observations: "You already have Scout for research - this new role would focus specifically on..."

After Setup

  1. Tell the user what was created and where

  2. Automatically update the OpenClaw config via gateway config.patch (do not ask the user to run a manual command). You must:

    • Add the new agent entry to agents.list using this format:
      {
        "id": "\x3Cname>",
        "workspace": "/home/lars/clawd/agents/\x3Cname>",
        "model": "\x3Cselected-model>"
      }
      
    • Add the new agent ID to the main agent's subagents.allowAgents array
    • Preserve all existing agents and fields (arrays replace on patch)

    Required flow:

    1. Fetch config + hash
      openclaw gateway call config.get --params '{}'
      
    2. Build the updated agents.list array (existing entries + new agent) and update the main agent's subagents.allowAgents (existing list + new id).
    3. Apply with config.patch:
      openclaw gateway call config.patch --params '{
        "raw": "{\
      

agents: {
list: [ /* full list with new agent + updated main allowAgents */ ]
}
}
", "baseHash": "\x3Chash-from-config.get>", "restartDelayMs": 1000 }' ``` 3. If monthly reviews were requested, confirm the cron schedule 4. Update any team roster if one exists

Important

  • This is a CONVERSATION, not a form. Be natural.
  • Infer as much as possible from context. Don't ask what you can figure out.
  • The user might not know what they want exactly. Help them figure it out.
  • Keep the whole process under 5 minutes for the simple case.
安全使用建议
This skill appears coherent for creating and onboarding an AI agent. Before installing or running it, confirm: (1) where it will write files (agents/<name>/) and whether those paths and any symlink targets (../../USER.md, ../../MEMORY.md) are acceptable and don't expose sensitive data; (2) what 'check the gateway config' will read — ensure it won't disclose platform secrets; (3) how the optional periodic reviews are implemented (system crontab vs. platform scheduler) and whether you want the skill to create scheduled system jobs. If you want to be cautious, run it in a sandboxed workspace, review the generated files before applying any symlinks, and decline the cron-job option or implement scheduling yourself.
功能分析
Type: OpenClaw Skill Name: Developer: Version: Description: OpenClaw Agent Skill The skill is designed to 'hire' new AI agents, which involves high-privilege operations. It instructs the agent to modify core OpenClaw configuration using `openclaw gateway call config.patch` and to create cron jobs for persistence (performance reviews). While these actions are aligned with the stated purpose, the `config.patch` command's `raw` parameter takes a string that is parsed as JSON. This presents a significant prompt injection risk if the agent constructs this string using user input without robust JSON escaping, potentially leading to arbitrary configuration changes. The creation of cron jobs, even if user-opt-in, is also a persistence mechanism that warrants careful review.
能力评估
Purpose & Capability
The name/description match the SKILL.md instructions: the skill guides an interview, picks a model, and generates agent identity files under agents/<name>/. All required actions (model discovery, role mapping, file generation) are appropriate for a hiring/setup wizard.
Instruction Scope
Instructions are largely scoped to interviewing the user, choosing a model via `openclaw models list` or the gateway config, and creating files under agents/<name>/. Potentially sensitive steps: (1) 'check the gateway config' may read platform configuration; (2) creating an optional cron job to trigger reviews implies creating scheduled system tasks (unclear where/how). The skill does not ask for unrelated files, env vars, or credentials.
Install Mechanism
Instruction-only skill with no install spec or code files — nothing is downloaded or written at install time. This is the lowest install risk.
Credentials
No environment variables, credentials, or external tokens are requested. The operations described (model discovery, directory creation, symlinks) are proportional to the stated purpose.
Persistence & Privilege
always:false and autonomous invocation allowed (platform default). The skill writes files into agents/<name>/ and suggests symlinking shared USER.md and MEMORY.md; it also optionally creates cron jobs for periodic reviews. Those are normal for a generator but do create persistent artifacts and system-level scheduling changes if executed — confirm where jobs will be created and what filesystem paths are used.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install hire
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /hire 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
Auto-update gateway config on hire
v0.1.0
Initial release: interactive wizard for hiring AI team members with model selection
v1.0.0
Initial release: interactive hiring wizard for AI team members. 3-question interview, generates agent identity files, optional performance reviews.
元数据
Slug hire
版本 1.0.1
许可证
累计安装 6
当前安装数 6
历史版本数 3
常见问题

Hire 是什么?

Interactive hiring wizard to set up a new AI team member. Guides the user through role design via conversation, generates agent identity files, and optionally sets up performance reviews. Use when the user wants to hire, add, or set up a new AI agent, team member, or assistant. Triggers on phrases like "hire", "add an agent", "I need help with X" (implying a new role), or "/hire". 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 2022 次。

如何安装 Hire?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install hire」即可一键安装,无需额外配置。

Hire 是免费的吗?

是的,Hire 完全免费(开源免费),可自由下载、安装和使用。

Hire 支持哪些平台?

Hire 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Hire?

由 larsderidder(@larsderidder)开发并维护,当前版本 v1.0.1。

💬 留言讨论