Intelligent resume parsing and candidate screening with bias-reduction capabilities
Parses resumes and screens candidates while reducing bias through standardized evaluation methods.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
The Resume Parsing and Screening skill provides intelligent resume analysis and candidate evaluation capabilities. This skill enables structured data extraction, skills matching, fit scoring, and bias-reduction through standardized evaluation methods.
const parseConfig = {
format: 'auto-detect',
extractFields: [
'contact',
'experience',
'education',
'skills',
'certifications'
],
normalization: {
titles: true,
companies: true,
skills: 'standard-taxonomy'
},
redFlagRules: {
maxGapMonths: 12,
minTenureMonths: 12,
flagJobHopping: true
}
};
const scoringCriteria = {
jobRequirements: {
requiredSkills: ['Python', 'SQL', 'Machine Learning'],
preferredSkills: ['AWS', 'Spark', 'Docker'],
minExperienceYears: 5,
education: {
required: 'Bachelors',
preferredFields: ['Computer Science', 'Data Science']
}
},
weights: {
requiredSkills: 40,
preferredSkills: 20,
experience: 25,
education: 15
},
thresholds: {
autoAdvance: 80,
review: 60,
autoReject: 40
}
};
This skill integrates with the following HR processes:
| Process | Integration Points |
|---|---|
| full-cycle-recruiting.js | Candidate screening, ranking |
| structured-interview-design.js | Interview focus areas |
| Metric | Description | Target |
|---|---|---|
| Screening Accuracy | Correlation with interview performance | >0.7 |
| Time to Screen | Minutes per resume | <5 min |
| Adverse Impact | Score distribution across groups | No significant difference |
| False Positive Rate | Low-fit candidates advanced | <15% |
| False Negative Rate | High-fit candidates rejected | <10% |
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.