技能详情(站内镜像,无评论)
作者:51mee @51mee-com
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.2.1
统计:⭐ 0 · 136 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :良性
Package:51mee-com/51mee-position-parse
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill is internally consistent: it is an instruction-only JD (职位描述) parser that uses an LLM prompt to extract structured JSON and does not request extra credentials, installs, or file/system access.
目的
Name/description (职位解析) match the actual instructions: receive a job description, run an LLM prompt, and return structured JSON. No unrelated env vars, binaries, or installs are requested.
说明范围
SKILL.md confines the agent to taking the provided JD, calling the model with a fixed prompt template, and returning JSON. That scope is appropriate. Note: the prompt instructs 'do not fabricate' but parsing accuracy depends on the LLM and hallucination remains a residual risk.
安装机制
No install spec and no code files — instruction-only skill. This minimizes on-disk risk.
证书
No environment variables, credentials, or config paths are required. Requested access is minimal and proportional to the stated purpose.
持久
always:false and no mentions of modifying agent/system config. The skill does not request persistent or elevated privileges.
综合结论
This skill looks coherent and low-risk: it simply sends the job description text to the platform LLM and returns structured JSON. Before using it, avoid submitting sensitive personal data (candidate PII or confidential company details), because those will be sent to the model. Also validate parsed outputs (the skill asks the model not to invent values, but LLMs can still hallucinate). If you need offline/local parsing or stronger privacy guara…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「51mee Position Parse」。简介:职位解析。触发场景:用户提供职位描述要求解析;用户想分析JD的核心要求。。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/51mee-com/51mee-position-parse/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: 51mee-position-parse
description: 职位解析。触发场景:用户提供职位描述要求解析;用户想分析JD的核心要求。
---
# 职位解析技能
## 功能说明
解析职位描述(JD)文本,使用大模型提取结构化信息。
## 处理流程
1. **接收文本** - 用户提供职位描述
2. **调用大模型** - 使用以下 prompt 解析
3. **返回 JSON** - 结构化职位信息
## Prompt 模板
```
```text
{职位描述文本}
```
扮演一个职位分析专家,详细分析上面的职位描述
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. [responsibility1]
2. [responsibility2]
### 软技能要求
- [softSkill1]
- [softSkill2]
### 关键词
[keywords]
```
## 注意事项
- 职位描述越详细,解析越准确
- 没有 的字段填 `null`
- 直接返回 JSON,不要额外解释