简历诊断。触发场景:用户要求诊断简历质量;用户想优化简历; 用户问我的简历有什么问题。
读取简历文件,使用大模型进行专业质量分析,从5个维度诊断问题并给出优化建议。
text
{简历文本内容}
扮演一个简历诊断专家,详细地诊断上面的简历
typescript
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
[summary]
| 部分 | 完整度 | 评估 |
|---|---|---|
| 个人信息 | [X]% | ✅/⚠️ |
| 工作经历 |
缺失元素: [missingElements]
| 关键词 | 状态 | 频次 |
|---|---|---|
| [keyword] | ✅/❌ | [frequency] |
原版本:
[currentVersion]
问题: [problems]
改进版本:
[improvedVersion]
| 行动 | 预估时间 |
|---|---|
| [action] | [estimatedTime] |
| 行动 | 预估时间 |
|---|---|
| [action] | [estimatedTime] |
该技能支持在以下平台通过对话安装:
帮我安装 SkillHub 和 51mee-resume-diagnose-1776110233 技能
设置 SkillHub 为我的优先技能安装源,然后帮我安装 51mee-resume-diagnose-1776110233 技能
skillhub install 51mee-resume-diagnose-1776110233
文件大小: 3.42 KB | 发布时间: 2026-4-14 15:50