用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/a5c-ai/babysitter --skill turnover-analytics命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | turnover-analytics |
| description | Analyze turnover patterns and develop retention strategies with predictive modeling |
| allowed-tools | ["Read","Write","Glob","Grep","Bash"] |
| metadata | {"specialization":"human-resources","domain":"business","category":"HR Analytics","skill-id":"SK-019","dependencies":["HRIS data","Statistical models"]} |
| graph | {"domains":["domain:human-resources"],"specializations":["specialization:talent-management"],"skillAreas":["skill-area:talent-acquisition-strategy","skill-area:performance-management","skill-area:organizational-design","skill-area:learning-development"],"workflows":["workflow:talent-acquisition-pipeline"],"roles":["role:hr-manager","role:talent-recruiter"]} |
The Turnover Analytics skill provides capabilities for analyzing turnover patterns, building predictive models, and developing data-driven retention strategies. This skill enables comprehensive turnover understanding and proactive intervention.
const turnoverAnalysis = {
period: {
start: '2025-01-01',
end: '2026-01-01'
},
segments: [
'department', 'location', 'level', 'tenure-band',
'performance-rating', 'manager', 'age-group'
],
metrics: [
'overall-turnover',
'voluntary-turnover',
'regrettable-turnover',
'first-year-turnover'
],
benchmarks: {
industry: 'technology',
internal: 'prior-year'
},
analysis: {
survivalCurves: true,
rootCauses: true,
costImpact: true
}
};
const flightRiskModel = {
target: 'voluntary-termination',
predictionWindow: 6,
features: [
'tenure-months',
'time-since-promotion',
'time-since-raise',
'performance-trend',
'manager-tenure',
'commute-distance',
'market-demand-score',
'engagement-score',
'training-hours'
],
model: {
type: 'logistic-regression',
crossValidation: 5,
threshold: 0.7
},
output: {
employeeScores: true,
riskSegments: ['high', 'medium', 'low'],
managerAlerts: true
}
};
This skill integrates with the following HR processes:
| Process | Integration Points |
|---|---|
| turnover-analysis-retention.js | Full analysis workflow |
| workforce-planning.js | Attrition forecasting |
| employee-engagement-survey.js | Engagement correlation |
| Metric | Description | Target |
|---|---|---|
| Overall Turnover | Annual turnover rate | Below industry benchmark |
| Regrettable Turnover | High performer departures | <10% |
| First-Year Turnover | New hires leaving in year 1 | <15% |
| Model Accuracy | Prediction accuracy (AUC) | >0.75 |
| Intervention Success | Retention rate of intervened employees | +20% vs. control |