用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/MikeTreml/MissionControl --skill job-evaluation命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | job-evaluation |
| description | Analyze and evaluate jobs for internal equity and leveling using point-factor methods |
| allowed-tools | ["Read","Write","Glob","Grep","Bash"] |
| metadata | {"specialization":"human-resources","domain":"business","category":"Compensation and Benefits","skill-id":"SK-012","dependencies":["Job evaluation methodologies","Career frameworks"]} |
The Job Evaluation skill provides capabilities for analyzing and evaluating jobs to establish internal equity, create job architecture, and support compensation decisions. This skill enables systematic job leveling through point-factor methods and career framework development.
const jobEvaluation = {
job: {
title: 'Senior Software Engineer',
family: 'Engineering',
department: 'Product Engineering',
manager: 'Engineering Manager'
},
factors: [
{
name: 'Knowledge',
weight: 25,
subfactors: [
{ name: 'Education', score: 4, maxScore: 6 },
{ name: 'Experience', score: 5, maxScore: 6 },
{ name: 'Technical Complexity', score: 5, maxScore: 6 }
]
},
{
name: 'Problem Solving',
weight: 25,
subfactors: [
{ name: 'Analysis', score: 5, maxScore: 6 },
{ name: 'Creativity', score: 4, maxScore: 6 }
]
},
{
name: 'Impact',
weight: ,
: [
{ : , : , : },
{ : , : , : }
]
},
{
: ,
: ,
: [
{ : , : , : },
{ : , : , : }
]
}
]
};
const careerFramework = {
family: 'Engineering',
track: 'Individual Contributor',
levels: [
{
code: 'IC1',
title: 'Associate Engineer',
pointRange: { min: 100, max: 200 },
gradeLevel: 'P1',
characteristics: {
scope: 'Task-level with guidance',
autonomy: 'Close supervision',
impact: 'Own work only'
}
},
{
code: 'IC2',
title: 'Software Engineer',
pointRange: { min: 201, max: 350 },
gradeLevel: 'P2',
characteristics: {
scope: 'Project components',
autonomy: 'General guidance',
impact: 'Team contributions'
}
}
// ... additional levels
]
};
This skill integrates with the following HR processes:
| Process | Integration Points |
|---|---|
| job-evaluation-leveling.js | Full evaluation workflow |
| salary-benchmarking.js | Market matching |
| succession-planning.js | Career framework |
| Metric | Description | Target |
|---|---|---|
| Jobs Evaluated | Percentage of jobs with evaluation | 100% |
| Evaluation Currency | Jobs reviewed in last 2 years | 100% |
| Internal Equity | Same-level pay variance | <10% |
| Framework Coverage | Jobs mapped to framework | 100% |
| Appeal Rate | Evaluation appeals per year | <5% |