返回顶部
a

agent-recruiter智能招聘代理

|

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 2.0.0
安全检测
已通过
279
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

agent-recruiter

Agent Recruiter - 招聘 Agent 工具

🎯 一键招聘(推荐)

用法:
bash

基础用法 - 创建常驻 Agent(绑定群聊)


~/.openclaw/workspace-recruiter/skills/agent-recruiter/scripts/recruit-agent.sh id> name> [群聊 ID]

示例:创建 Tim 维护专员,绑定到指定群

~/.openclaw/workspace-recruiter/skills/agent-recruiter/scripts/recruit-agent.sh tim Tim 维护专员 <群聊 ID>

脚本会自动完成:

  1. 1. ✅ 创建 Agent 目录结构 (~/.openclaw/agents//agent/ + ~/.openclaw/workspace-/)
  2. ✅ 生成 agent.json 配置
  3. ✅ 复制 models.json 和 auth-profiles.json
  4. ✅ 生成 SOUL.md、AGENTS.md、IDENTITY.md 模板
  5. ✅ 更新 openclaw.json(添加 agent 和 binding)
  6. ✅ 重启 Gateway



📁 Agent 文件结构(参考 agency-agents)

每个 Agent 包含以下核心文件:

~/.openclaw/
├── agents/
│ └── /
│ └── agent/
│ ├── agent.json # Agent 基本配置
│ ├── models.json # 模型配置
│ └── auth-profiles.json # 认证配置

├── workspace-/
│ ├── SOUL.md # ⭐ Agent 人格和身份(核心)
│ ├── AGENTS.md # 工作区规范
│ ├── IDENTITY.md # 名称、Emoji、Vibe
│ ├── TOOLS.md # 本地工具配置
│ ├── USER.md # 用户信息
│ ├── HEARTBEAT.md # 定期任务清单
│ └── memory/
│ ├── YYYY-MM-DD.md # 每日日志
│ └── MEMORY.md # 长期记忆

└── openclaw.json
├── agents.list[] # Agent 注册列表
└── bindings[] # 消息路由绑定

核心文件说明

文件作用必填
SOUL.mdAgent 的人格、使命、工作流程、成功指标⭐ 必填
AGENTS.md
工作区使用规范、记忆系统、工具指南 | ✅ 推荐 | | IDENTITY.md | 名称、Emoji、Vibe、专业领域 | ✅ 推荐 | | agent.json | OpenClaw 注册配置 | ⭐ 必填 |

📋 SOUL.md 模板结构(参考 agency-agents)

markdown

SOUL.md - Who You Are

🧠 Your Identity & Memory

  • - Role: [核心角色定位]
  • Personality: [性格特点]
  • Memory: [记住的成功模式]
  • Experience: [经历过的案例]

🎯 Your Core Mission

[核心职责 1]

  • - [具体任务]
  • [可量化目标]

[核心职责 2]

  • - [具体任务]
  • [交付标准]

🚨 Critical Rules You Must Follow

[规则类别 1]

  • - [必须遵守的规则]

📋 Your Technical Deliverables

[交付物示例]

code // 代码或模板示例

🔄 Your Workflow Process

Step 1: [阶段名]

  • - [行动]
  • [产出]

💭 Your Communication Style

  • - Be [特质]: 示例表达

📊 Your Success Metrics

Youre successful when:
  • - [可量化指标 1]
  • [可量化指标 2]

🚀 手动创建 Agent(学习用)

步骤 1: 创建目录结构

bash mkdir -p ~/.openclaw/agents//agent mkdir -p ~/.openclaw/workspace-

步骤 2: 创建 agent.json

json { id: , name: , workspace: /Users/junchen/.openclaw/workspace-, agentDir: /Users/junchen/.openclaw/agents//agent, model: modelstudio/qwen3.5-plus }

步骤 3: 复制模型和认证配置

bash cp ~/.openclaw/agents/mike/agent/models.json ~/.openclaw/agents//agent/ cp ~/.openclaw/agents/mike/agent/auth-profiles.json ~/.openclaw/agents//agent/

步骤 4: 创建核心文件

bash

使用模板

cp ~/.openclaw/workspace-recruiter/skills/agent-recruiter/templates/SOUL.md.template ~/.openclaw/workspace-/SOUL.md cp ~/.openclaw/workspace-recruiter/skills/agent-recruiter/templates/AGENTS.md.template ~/.openclaw/workspace-/AGENTS.md cp ~/.openclaw/workspace-recruiter/skills/agent-recruiter/templates/IDENTITY.md.template ~/.openclaw/workspace-/IDENTITY.md

编辑内容

vim ~/.openclaw/workspace-/SOUL.md vim ~/.openclaw/workspace-/IDENTITY.md

步骤 5: 更新 openclaw.json

在 agents.list 添加: json { id: , name: , workspace: /Users/junchen/.openclaw/workspace-, agentDir: /Users/junchen/.openclaw/agents//agent, model: modelstudio/qwen3.5-plus }

在 bindings 添加(绑定群聊):
json
{
type: route,
agentId: ,
match: {
channel: feishu,
peer: {
kind: group,
id: <群聊 ID>
}
}
}

步骤 6: 重启 Gateway

bash openclaw gateway restart

📚 示例 Agent

Tim - 维护专员

参考模板:templates/examples/tim/SOUL.md 和 templates/examples/tim/IDENTITY.md

职责:

  • - 每小时系统健康巡检
  • cron/agent/skill 监控
  • 异常告警和修复

配置:
bash

创建 Tim


./scripts/recruit-agent.sh tim Tim 维护专员 <群聊 ID>

自定义 SOUL.md

vim ~/.openclaw/workspace-tim/SOUL.md

🔧 工具函数

检查 Agent 是否存在

bash ls ~/.openclaw/agents//agent/agent.json 2>/dev/null && echo ✅ 存在 || echo ❌ 不存在

查看 Agent 配置

bash cat ~/.openclaw/agents//agent/agent.json cat ~/.openclaw/workspace-/SOUL.md

查看 Binding 路由

bash cat ~/.openclaw/openclaw.json | grep -A8 agentId:

测试 Gateway 状态

bash openclaw gateway status

列出所有 Agent

bash cat ~/.openclaw/openclaw.json | jq .agents.list[].id

⚠️ 注意事项

  1. 1. agent_id 必须唯一 - 不能与现有 agent 重复
  2. workspace 目录必须存在 - 否则 agent 启动会失败
  3. SOUL.md 是核心 - 定义 Agent 的人格和行为
  4. models.json 和 auth-profiles.json 必须配置 - 否则无法调用模型
  5. Binding 路由的群 ID 必须正确 - 否则消息无法路由
  6. 修改 openclaw.json 后必须重启 Gateway - 配置才能生效

📚 参考资源

  • - agency-agents: https://github.com/msitarzewski/agency-agents
- 144 个专业化 Agent 模板 - 涵盖 Engineering、Design、Marketing、Sales 等 12 个部门 - 专业的 SOUL.md 结构和成功指标定义

-

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 agent-recruiter-1776387903 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 agent-recruiter-1776387903 技能

通过命令行安装

skillhub install agent-recruiter-1776387903

下载

⬇ 下载 agent-recruiter v2.0.0(免费)

文件大小: 15.17 KB | 发布时间: 2026-4-17 13:57

v2.0.0 最新 2026-4-17 13:57
招聘 Agent 工具 - 创建和优化 Agent 的完整流程,参考 agency-agents 模板结构(纯净版,无隐私信息)

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部