← Back to Skills Marketplace
spyqwer1

boss-geek

by SPYQWER1 · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ⚠ suspicious
85
Downloads
1
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install boss-geek
Description
通过 Chrome 登录态操作 BOSS直聘,支持职位搜索、查看详情、向HR打招呼及管理聊天消息。
README (SKILL.md)

BOSS直聘求职者工具

OpenCLI 插件,复用 Chrome 登录态操作 BOSS直聘。

前置条件

  1. 安装 OpenCLI

    npm install -g @jackwener/opencli
    

    或访问: https://github.com/jackwener/opencli

  2. 在 Chrome 中登录 zhipin.com

  3. 安装 OpenCLI Chrome 扩展

  4. 安装插件: opencli plugin install github:SPYQWER1/opencli-plugin-boss-geek

命令速查

命令 功能 示例
search 搜索职位 opencli boss-geek search 前端 --city 杭州
recommend 推荐职位 opencli boss-geek recommend --limit 10
detail 职位详情 opencli boss-geek detail \x3Csecurity-id>
greet 打招呼 opencli boss-geek greet \x3Csecurity-id> --text "您好"
chatlist 聊天列表 opencli boss-geek chatlist
chatmsg 聊天记录 opencli boss-geek chatmsg \x3Cuid> --security-id \x3Cid>
send 发送消息 opencli boss-geek send \x3Cuid> "消息内容"

ID 说明

  • securityId: 用于 detailgreet,从 search/recommendsecurity_id 字段获取
  • encryptUid: 用于 chatmsgsend,从 chatlistencrypt_uid 字段获取

注意: recommend 返回的职位可能已下线,建议先用 detail 验证。

详细用法

search - 搜索职位

opencli boss-geek search \x3C关键词> \
  --city \x3C城市> \
  --experience \x3C经验> \
  --degree \x3C学历> \
  --salary \x3C薪资> \
  --limit \x3C数量>

参数:

  • --city: 城市 (北京/上海/杭州/深圳等)
  • --experience: 应届/1-3年/3-5年/5-10年/10年以上
  • --degree: 大专/本科/硕士/博士
  • --salary: 3K以下/3-5K/5-10K/10-15K/15-20K/20-30K/30-50K/50K以上

greet - 打招呼

# 使用默认招呼语
opencli boss-geek detail \x3Csecurity-id>

# 自定义招呼语
opencli boss-geek greet \x3Csecurity-id> --text "我对这个职位很感兴趣"

chatmsg - 聊天记录

opencli boss-geek chatmsg \x3Cencrypt-uid> --security-id \x3Csecurity-id>

需要同时提供 encrypt_uidsecurity_id,两者都来自 chatlist 命令。

常见工作流

工作流 1: 搜索并打招呼

# 1. 搜索职位
opencli boss-geek search 前端 --city 杭州 --limit 10

# 2. 查看详情
opencli boss-geek detail \x3Csecurity-id>

# 3. 打招呼
opencli boss-geek greet \x3Csecurity-id> --text "您好,我对这个职位很感兴趣"

工作流 2: 回复消息

# 1. 查看聊天列表
opencli boss-geek chatlist --limit 20

# 2. 查看聊天记录
opencli boss-geek chatmsg \x3Cencrypt-uid> --security-id \x3Csecurity-id>

# 3. 回复消息
opencli boss-geek send \x3Cencrypt-uid> "好的,我稍后发简历给您"

错误处理

  • Cookie 过期: 在 Chrome 中重新登录 zhipin.com
Usage Guidance
该技能需要你在 Chrome 中登录 zhipin.com 并安装 OpenCLI、OpenCLI 的 Chrome 扩展及来自 github:SPYQWER1 的 opencli 插件。安装这些第三方组件会把你的浏览器会话交给外部代码——有泄露或滥用的风险。安装前请: 1) 在 GitHub 上打开并审查 SPYQWER1/opencli-plugin-boss-geek 与 @jackwener/opencli 的源代码、issues、发布者信誉;确认没有明显的数据外发或后门逻辑; 2) 仅从受信任来源安装扩展/包,优先选择长期维护且有众多用户的项目; 3) 在隔离环境(临时浏览器配置文件或容器)中先行测试,避免暴露主账号登录态; 4) 若不愿冒险,可手动在浏览器中执行相应操作而不安装插件,或要求开发者提供更详尽的权限说明与代码审计证明。
Capability Analysis
Type: OpenClaw Skill Name: boss-geek Version: 1.0.1 The skill bundle functions as a set of instructions for an AI agent to install and use external software, specifically a global NPM package (@jackwener/opencli) and a plugin from a GitHub repository (SPYQWER1/opencli-plugin-boss-geek). This introduces significant supply chain risks, as the agent is directed to execute installation commands for unverified third-party code that requires access to the user's browser session and login state on zhipin.com. While the stated intent is job-seeking automation, the reliance on external, potentially unvetted execution environments and the requirement for broad permissions make it high-risk.
Capability Assessment
Purpose & Capability
技能宣称通过 Chrome 登录态在 BOSS直聘 上搜索职位、查看详情、打招呼和管理聊天;SKILL.md 的命令和工作流与此目的直接对应,未看到与声明功能不相关的必要依赖。
Instruction Scope
运行说明要求安装 OpenCLI、OpenCLI 的 Chrome 扩展,并通过 `opencli plugin install github:SPYQWER1/opencli-plugin-boss-geek` 安装一个第三方插件。该插件/扩展将以浏览器登录态操作 zhipin.com——说明中没有限制插件的权限或说明如何审计其行为,存在越权读取/发送浏览器会话、消息、cookie 等敏感数据的可能。说明不会让代理读取本地文件或环境变量,但把关键能力外包给未验证的外部组件。
Install Mechanism
技能本身无 install spec,但明确指导用户全局安装 npm 包和从 GitHub 安装 opencli 插件,并安装 Chrome 扩展。这些安装会下载并执行第三方代码(npm 包、GitHub 仓库、浏览器扩展),来源(特别是 github:SPYQWER1 的仓库和扩展)未在说明中验证或注明可信性——这显著提高了被植入恶意逻辑或数据窃取代码的风险。
Credentials
技能不请求环境变量或额外凭据,但明确依赖用户在 Chrome 中已登录 zhipin.com(即浏览器 cookie/会话)。让第三方插件/扩展使用你的浏览器登录态是功能所需但高度敏感:登录态可用于读取/发送消息、查看个人信息或在你名义下执行操作。文档中未提供如何限制或审计这些凭据的建议。
Persistence & Privilege
技能本身不设置 always:true,也不会直接修改其他技能或系统设置。但要求安装的 Chrome 扩展和 opencli 插件会长期驻留在用户系统/浏览器中,拥有持久访问登录态的能力——若这些组件未经审计,这种持久性放大了风险。
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install boss-geek
  3. After installation, invoke the skill by name or use /boss-geek
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.1
- 新增 OpenCLI 安装前置说明,并在描述中注明需先安装 OpenCLI。 - 更新前置条件,增加 OpenCLI 安装命令和官方仓库链接。 - 其余功能与命令未变。
v1.0.0
Initial release of boss-geek, a job seeker tool for BOSS直聘 via OpenCLI. - Enables job search, position recommendation, viewing details, greeting HR, chat list, and messaging. - Requires Chrome login on zhipin.com and the OpenCLI Chrome extension. - Provides CLI commands for common job-seeking actions and workflows. - Includes guidance on required IDs and error handling (e.g., expired cookies). - Detailed instructions and usage examples for each command.
Metadata
Slug boss-geek
Version 1.0.1
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is boss-geek?

通过 Chrome 登录态操作 BOSS直聘,支持职位搜索、查看详情、向HR打招呼及管理聊天消息。 It is an AI Agent Skill for Claude Code / OpenClaw, with 85 downloads so far.

How do I install boss-geek?

Run "/install boss-geek" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is boss-geek free?

Yes, boss-geek is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does boss-geek support?

boss-geek is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created boss-geek?

It is built and maintained by SPYQWER1 (@spyqwer1); the current version is v1.0.1.

💬 Comments