51mee-com/51mee-resume-parse/SKILL.md
简历解析。触发场景:用户上传简历文件要求解析、提取结构化信息。
npx skillsauth add openclaw/skills 51mee-resume-parseInstall 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.
读取简历文件(PDF/DOC/DOCX/JPG/PNG),使用大模型提取结构化信息。
```html
{简历文本内容}
扮演一个简历分析专家,详细地分析上面的简历
export interface WorkExperience {
startDate: string | null;
endDate: string | null;
company: string;
industry: string | null;
department: string | null;
positionName: string;
blueCollarPosition: boolean | null;
responsibility: string | null;
workPerformance: string | null;
current: boolean | null;
workDesc: string | null;
};
export interface ProjectExperience {
name: string;
startDate: string | null;
endDate: string | null;
roleName: string | null;
projectDesc: string | null;
};
export interface EducationExperience {
startDate: string | null;
endDate: string | null;
school: string;
major: string | null;
degreeName: string | null; // 高中、本科、专科、硕士、博士、其它
};
export interface ResumeInfo {
name: string | null;
gender: number | null; // 0=男, 1=女
age: string | null;
birthday: string | null;
description: string | null;
workExpList: WorkExperience[];
projExpList: ProjectExperience[];
eduExpList: EducationExperience[];
expectPosition: {
positionName: string | null;
lowSalary: number | null;
highSalary: number | null;
locationName: string | null;
};
contact: {
phone: string | null;
weixin: string | null;
email: string | null;
};
keywords: string[];
awards: string[];
englishCertificates: string[];
professionalSkills: string;
}
## 返回数据结构
```json
{
"name": "张三",
"gender": 0,
"age": "30",
"birthday": "1995-01-15",
"description": "5年Java开发经验...",
"workExpList": [...],
"projExpList": [...],
"eduExpList": [...],
"expectPosition": {...},
"contact": {...},
"keywords": ["Java", "Spring"],
"awards": ["优秀员工"],
"englishCertificates": ["CET-6"],
"professionalSkills": "精通Java..."
}
## 简历解析结果
### 基本信息
- **姓名**: [name]
- **性别**: [男/女]
- **年龄**: [age]
- **生日**: [birthday]
### 联系方式
- **手机**: [phone]
- **微信**: [weixin]
- **邮箱**: [email]
### 工作经历
[遍历 workExpList]
### 项目经历
[遍历 projExpList]
### 教育经历
[遍历 eduExpList]
### 期望职位
- **职位**: [positionName]
- **薪资**: [lowSalary]K-[highSalary]K
- **地点**: [locationName]
### 关键词
[keywords]
### 奖项
[awards]
### 英语证书
[englishCertificates]
### 专业技能
[professionalSkills]
Y-m-dnulltools
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 写作痕迹、中文文本人性化。