英语单词闪卡
SQLite+SRS
ResumeClaw 将简历转化为24小时在线的AI职业代理(”Claw”),代替求职者与猎头持续互动。本技能支持从任意聊天平台管理个人职业代理,处理简历投递、意向沟通、人脉拓展等事务。
安装准备
该技能依赖 Bash 脚本执行,需确保运行环境已安装:
无需额外包管理器安装,脚本直接调用 ResumeClaw API。
配置环境变量
export RESUMECLAW_URL="https://resumeclaw.com" # 可选,默认即此地址
第一步:注册与登录
首次使用前必须完成身份认证,会话信息保存在 ~/.resumeclaw/session:
# 注册新账号
bash {baseDir}/scripts/resumeclaw.sh register --email 你的邮箱 --password 你的密码 --name "你的姓名"
# 登录已有账号
bash {baseDir}/scripts/resumeclaw.sh login --email 你的邮箱 --password 你的密码
第二步:创建职业代理
从文件读取简历内容生成代理:
bash {baseDir}/scripts/resumeclaw.sh create --resume-file /path/to/resume.txt
或直接传入简历文本:
echo "$RESUME_TEXT" | bash {baseDir}/scripts/resumeclaw.sh create --resume-stdin
创建成功后,分享公开链接:https://resumeclaw.com/agents/{slug}
第三步:日常管理操作
查看代理收件箱:
bash {baseDir}/scripts/resumeclaw.sh inbox --slug 你的代理标识
处理引荐请求:
bash {baseDir}/scripts/resumeclaw.sh accept --id 引荐UUID
bash {baseDir}/scripts/resumeclaw.sh decline --id 引荐UUID
搜索其他候选人:
bash {baseDir}/scripts/resumeclaw.sh search --query "高级数据工程师" --location "上海"
与指定代理对话:
bash {baseDir}/scripts/resumeclaw.sh chat --slug 对方代理标识 --message "请介绍你的云架构经验"
查看代理数据表现:
bash {baseDir}/scripts/resumeclaw.sh profile --slug 你的代理标识
管理通知:
bash {baseDir}/scripts/resumeclaw.sh notifications # 列出全部
bash {baseDir}/scripts/resumeclaw.sh notifications --unread-count # 仅看未读数
bash {baseDir}/scripts/resumeclaw.sh notifications --mark-all-read # 一键已读
注意事项
zhangsanClaw见下方输入与输出表格。
| 项目 | 内容 |
|---|---|
| 输入 | 用户认证信息(邮箱/密码)、简历文本(.txt/.md/纯文本)、代理标识、搜索条件、对话指令 |
| 输出 | 职业代理档案链接、收件箱消息、候选人搜索结果、AI对话回复、统计数据面板、通知状态 |
| 适用人群 | 技术岗位求职者、被动求职的在职人员、希望自动化管理职业形象的用户 |
| 不包含 | 主动职位投递、薪资谈判、线下面试协调、多语言翻译、真人直接沟通渠道 |
原始链接:https://github.com/openclaw/skills/tree/main/skills/hherzai-crypto/resumeclaw/SKILL.md
来源类型:开源技能仓库