51mee-com/51mee-resume-profile/SKILL.md
简历画像。触发场景:用户要求生成候选人画像;用户想了解候选人的多维度标签和能力评估。
npx skillsauth add openclaw/skills 51mee-resume-profileInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
读取简历文件,使用大模型生成候选人全维度画像标签。
```text
{简历文本内容}
扮演一个简历分析专家,详细分析上面的简历画像
export interface Skills {
job_skills: Array<{
tag: string; // 技能名称
type: string; // 类型:后端开发/前端开发等
weight: number; // 权重 0-100
}>;
soft_skills: Array<{ tag: string }>;
hobbies: Array<{ tag: string }>;
languages: Array<{ tag: string }>;
certificates: Array<{ tag: string }>;
awards: Array<{ tag: string }>;
}
export interface BasicItem {
tag: string; // 如:男、30~40岁
type: string; // 类型描述
}
export interface EducationItem {
start_date: string;
end_date: string;
school: string;
major: string;
degree: string;
}
export interface JobExpItem {
position: string;
position_type: string;
industry: string;
company_level: string;
start_date: string;
end_date: string;
company: string;
}
export interface PredictedPositionType {
c1: string; // 一级职能
c2: string; // 二级职能
c3: string; // 三级职能
weight: number; // 权重 0-100
}
export interface PredictedIndustryC1 {
c1: string; // 行业名称
weight: number; // 权重 0-100
}
export interface Stability {
average_job_time: number; // 平均工作时长(月)
average_job_type_time: number; // 平均职能时长(月)
average_industry_time: number; // 平均行业时长(月)
long_job_time_num: number; // 长时间工作经历数
short_job_time_num: number; // 短时间工作经历数
job_stability: string; // 稳定/不稳定
}
export interface Capacity {
education: number; // 教育指数 0-10
honor: number; // 荣誉指数 0-10
language: number; // 语言能力 0-10
management: number; // 管理能力 0-10
job_exp: number; // 职业经历 0-10
social_exp: number; // 实践经历 0-10
}
export interface Highlight {
title: string; // 亮点名称
content: string; // 亮点内容
type: string; // 亮点类型
}
export interface Risk {
title: string; // 风险点名称
content: string; // 风险点内容
type: string; // 风险类型
}
// 返回的是这个对象
export interface ResumeAnalysisData {
skills: Skills;
basic: BasicItem[];
education: EducationItem[];
job_exp: JobExpItem[];
predicted_pos_types: PredictedPositionType[];
predicted_industries_c1: PredictedIndustryC1[];
stability: Stability;
predicted_salary: string; // 如 "15000-18000元/月"
capacity: Capacity;
highlights: Highlight[];
risks: Risk[];
}
## 返回数据结构
```json
{
"skills": {
"job_skills": [
{"tag": "Java", "type": "后端开发", "weight": 95}
],
"soft_skills": [{"tag": "团队协作"}],
"hobbies": [{"tag": "篮球"}],
"languages": [{"tag": "英语 CET-6"}],
"certificates": [{"tag": "PMP认证"}],
"awards": [{"tag": "优秀员工"}]
},
"basic": [
{"tag": "男", "type": "性别"},
{"tag": "30~35岁", "type": "年龄"}
],
"education": [...],
"job_exp": [...],
"predicted_pos_types": [
{"c1": "技术", "c2": "后端开发", "c3": "Java", "weight": 90}
],
"stability": {
"average_job_time": 36,
"job_stability": "稳定"
},
"predicted_salary": "25000-35000元/月",
"capacity": {
"education": 8,
"honor": 6,
"language": 7,
"management": 5,
"job_exp": 8,
"social_exp": 6
},
"highlights": [
{"title": "大厂经验", "content": "5年BAT工作经历", "type": "经验"}
],
"risks": [
{"title": "跳槽频繁", "content": "近3年换了4份工作", "type": "稳定性"}
]
}
## 候选人画像
### 基础信息
[遍历 basic]
### 核心技能 (Top 5)
| 技能 | 类型 | 权重 |
|------|------|------|
| [tag] | [type] | [weight] |
### 能力评估
| 维度 | 评分 |
|------|------|
| 教育背景 | [education]/10 |
| 工作经历 | [job_exp]/10 |
| 管理能力 | [management]/10 |
### 职业预测
- **职能**: [c1] > [c2] > [c3]
- **行业**: [c1]
- **薪资**: [predicted_salary]
- **稳定性**: [job_stability]
### 亮点 ⭐
[遍历 highlights]
- **[title]**: [content]
### 风险点 ⚠️
[遍历 risks]
- **[title]**: [content]
tools
Use when the user wants to connect to, test, or use the McDonalds service at mcp.mcd.cn, including checking authentication, probing MCP endpoints, listing tools, or calling McDonalds MCP tools through a reusable local CLI.
development
Web scraping platform — Twitter/X data, Vinted marketplace, and general web scraping API
development
SlowMist AI Agent Security Review — comprehensive security framework for skills, repositories, URLs, on-chain addresses, and products (Claude Code version)
data-ai
去除中文文本中的 AI 写作痕迹,使其读起来自然。基于维基百科 AI 写作特征指南,检测 24 种 AI 模式。触发词:humanizer-cn、去除 AI 痕迹、去除 AI 写作痕迹、中文文本人性化。