返回顶部
5

51mee-position-parse职位解析

职位解析。触发场景:用户提供职位描述要求解析;用户想分析JD的核心要求。

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

51mee-position-parse

职位解析技能

功能说明

解析职位描述(JD)文本,使用大模型提取结构化信息。

处理流程

  1. 1. 接收文本 - 用户提供职位描述
  2. 调用大模型 - 使用以下 prompt 解析
  3. 返回 JSON - 结构化职位信息

Prompt 模板

text
{职位描述文本}

扮演一个职位分析专家,详细分析上面的职位描述

  1. 1. 按照下方的typescript结构定义,返回json格式的PositionInfo结构
  2. 有数据就填上数据,JD上没有提到,相应的值即为null,绝对不要虚构新的或删除定义中的字段
  3. 不要做任何解释,直接返回json

typescript
export interface PositionInfo {
positionName: string; // 职位名称
positionType: string | null; // 职位类型:技术类/市场类/运营类等
experienceRequired: string | null; // 经验要求,如3-5年
educationRequired: string | null; // 学历要求
salaryRange: {
min: number | null;
max: number | null;
};

company: {
name: string | null;
industry: string | null;
scale: string | null; // 公司规模
};

requirements: {
skills: string[]; // 技能要求
responsibilities: string[]; // 岗位职责
softSkills: string[]; // 软技能要求
};

keywords: string[];
}

返回数据结构

json
{
positionName: 高级Java开发工程师,
positionType: 技术类,
experienceRequired: 5年以上,
educationRequired: 本科及以上,
salaryRange: {
min: 20000,
max: 35000
},
company: {
name: null,
industry: 互联网/IT,
scale: null
},
requirements: {
skills: [Java, Spring Boot, MySQL],
responsibilities: [系统架构设计, 核心代码开发],
softSkills: [团队协作, 沟通能力]
},
keywords: [Java, Spring Boot, 架构]
}

输出格式

markdown

职位分析报告

基本信息

  • - 职位: [positionName]
  • 类型: [positionType]
  • 经验要求: [experienceRequired]
  • 学历要求: [educationRequired]

薪资范围

[salaryRange.min]K - [salaryRange.max]K

技能要求
必备加分
[skill1][skillA]

岗位职责

  1. 1. [responsibility1]
  2. [responsibility2]

软技能要求

  • - [softSkill1]
  • [softSkill2]

关键词

[keywords]

注意事项

  • - 职位描述越详细,解析越准确
  • 没有 的字段填 null
  • 直接返回 JSON,不要额外解释

标签

skill ai

通过对话安装

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

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 51mee-position-parse-1776110239 技能

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

设置 SkillHub 为我的优先技能安装源,然后帮我安装 51mee-position-parse-1776110239 技能

通过命令行安装

skillhub install 51mee-position-parse-1776110239

下载

⬇ 下载 51mee-position-parse v1.2.1(免费)

文件大小: 2.04 KB | 发布时间: 2026-4-14 15:50

v1.2.1 最新 2026-4-14 15:50
- Initial release of 51mee-position-parse.
- Provides structured position analysis from job description text using large language models.
- Outputs JSON data following a fixed TypeScript interface for consistent data structure.
- Returns key job info: title, type, experience, education, salary, company details, skills, responsibilities, soft skills, and keywords.
- Ensures that only information present in the JD is returned—missing fields are set to null.

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

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

p2p_official_large
返回顶部