51mee-com/51mee-resume-diagnose/SKILL.md
简历诊断。触发场景:用户要求诊断简历质量;用户想优化简历; 用户问我的简历有什么问题。
npx skillsauth add openclaw/skills 51mee-resume-diagnoseInstall 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.
读取简历文件,使用大模型进行专业质量分析,从5个维度诊断问题并给出优化建议。
```text
{简历文本内容}
扮演一个简历诊断专家,详细地诊断上面的简历
export type ReportLevel = '优秀' | '良好' | '中等' | '差';
export interface ResumeDiagnosisReport {
overall: {
score: number;
level: ReportLevel;
starRating: number;
summary: string;
};
dimensions: {
contentCompleteness: ContentCompletenessAnalysis;
structureRationality: StructureRationalityAnalysis;
formatStandardization: FormatStandardizationAnalysis;
keywordOptimization: KeywordOptimizationAnalysis;
languageExpression: LanguageExpressionAnalysis;
};
criticalIssues: {
mustFix: CriticalIssue[];
shouldFix: CriticalIssue[];
niceToFix: CriticalIssue[];
};
optimization: ResumeOptimizationPlan;
rewriteSuggestions: RewriteSuggestion[];
}
export interface CriticalIssue {
dimension: string;
severity: '严重' | '主要' | '次要';
description: string;
location: string;
suggestedFix: string;
}
export interface ContentCompletenessAnalysis {
score: number;
level: ReportLevel;
sections: {
personalInfo: { completeness: number; missingFields: string[] };
workExperience: {
completeness: number;
checks: {
hasCompanyNames: boolean;
hasJobTitles: boolean;
hasTimePeriods: boolean;
hasResponsibilities: boolean;
hasAchievements: boolean;
hasQuantifiableResults: boolean;
};
missingElements: string[];
};
projectExperience: { completeness: number };
education: { completeness: number };
skills: { completeness: number };
};
}
export interface StructureRationalityAnalysis {
score: number;
level: ReportLevel;
organization: {
flowLogical: boolean;
recommendedOrder: string[];
actualOrder: string[];
};
contentArrangement: {
chronological: {
reverseChronological: boolean;
timeGaps: string[];
};
};
readability: {
paragraphStructure: { avgParagraphLength: number; bulletPointsUsed: boolean };
headingStructure: { clearHeadings: boolean };
};
}
export interface FormatStandardizationAnalysis {
score: number;
level: ReportLevel;
consistency: {
spacingConsistency: boolean;
dateFormat: { consistentFormat: boolean; formatUsed: string };
nameFormatting: { consistentCompanyFormat: boolean };
};
errorCheck: {
spelling: { errorCount: number; errors: string[] };
grammar: { errorCount: number };
punctuation: { errorCount: number };
};
}
export interface KeywordOptimizationAnalysis {
score: number;
level: ReportLevel;
keywords: {
jobSpecific: {
requiredKeywords: { keyword: string; found: boolean; frequency: number }[];
matchRate: { requiredMatched: number };
};
actionVerbs: {
verbsUsed: { verb: string; strength: string }[];
recommendations: { weakVerb: string; strongAlternatives: string[] }[];
};
};
}
export interface LanguageExpressionAnalysis {
score: number;
level: ReportLevel;
clarityConciseness: {
readability: { avgSentenceLength: number; passiveVoice: number };
conciseness: { fillerWords: string[] };
};
professionalismPersuasiveness: {
professionalTone: boolean;
persuasiveness: { achievementOriented: boolean };
};
}
export interface ResumeOptimizationPlan {
actionPlan: {
highPriority: { action: string; estimatedTime: string }[];
mediumPriority: { action: string; estimatedTime: string }[];
lowPriority: { action: string; estimatedTime: string }[];
};
}
export interface RewriteSuggestion {
section: string;
currentVersion: string;
problems: string[];
improvedVersion: string;
difficulty: '简单' | '中等' | '困难';
}
## 输出模板
```markdown
# 📋 简历诊断报告
## 综合评分
**总分**: [score]/100 ⭐⭐⭐⭐
**等级**: [level]
> [summary]
---
## 📊 详细诊断
### 1. 内容完整性 ([score]/100)
| 部分 | 完整度 | 评估 |
|------|--------|------|
| 个人信息 | [X]% | ✅/⚠️ |
| 工作经历 | [X]% | ✅/⚠️ |
| 项目经历 | [X]% | ✅/⚠️ |
| 教育背景 | [X]% | ✅/⚠️ |
| 技能展示 | [X]% | ✅/⚠️ |
**缺失元素**: [missingElements]
### 2. 结构合理性 ([score]/100)
- 章节顺序: ✅/❌ [flowLogical]
- 时间倒序: ✅/❌ [reverseChronological]
- 平均段落长度: [avgParagraphLength] 词
### 3. 格式与规范 ([score]/100)
- 格式一致性: ✅/⚠️
- 拼写错误: [errorCount] 处
- 日期格式: ✅/⚠️ [consistentFormat]
### 4. 关键词优化 ([score]/100)
**关键词匹配度**: [matchRate]%
| 关键词 | 状态 | 频次 |
|--------|------|------|
| [keyword] | ✅/❌ | [frequency] |
### 5. 语言表达 ([score]/100)
- 专业语气: ✅/⚠️
- 成就导向: ✅/⚠️
- 平均句长: [avgSentenceLength] 词
---
## 🚨 关键问题
### 必须修复 ([N]项)
1. **[description]**
- 位置: [location]
- 修复: [suggestedFix]
### 建议修复 ([N]项)
1. [description]
### 可选优化 ([N]项)
1. [description]
---
## ✍️ 重写建议
### [section]
**原版本**:
> [currentVersion]
**问题**: [problems]
**改进版本**:
> [improvedVersion]
---
## ✅ 优化计划
### 高优先级
| 行动 | 预估时间 |
|------|----------|
| [action] | [estimatedTime] |
### 中优先级
| 行动 | 预估时间 |
|------|----------|
| [action] | [estimatedTime] |
---
_预计总优化时间: [X]小时_
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 写作痕迹、中文文本人性化。