hreng-skills
1
总安装量
1
周安装量
#78311
全站排名
安装命令
npx skills add https://github.com/clous-ai/agents --skill hreng-skills
Agent 安装分布
amp
1
cline
1
opencode
1
cursor
1
continue
1
kimi-cli
1
Skill 文档
HR Engineering Skills Inventory
Overview
Map engineering team capabilities, identify gaps against current and future roadmap needs, and turn that into a concrete training and hiring plan.
When to Use
Use this skill when:
- You need a skills matrix for a team or org.
- Youâre planning roadmap delivery and want to check if skills coverage is sufficient.
- You want to reduce key-person dependencies and plan knowledge transfer.
- Youâre deciding between training vs. hiring vs. outsourcing.
Do not use this skill when:
- The focus is an individualâs promotion or level expectations â use
hreng-ladder. - Youâre diagnosing performance or burnout issues â use
hreng-perf-diagnoseorhreng-burnout.
Inputs Required
- Team roster and roles (names, titles, levels).
- Roadmap initiatives and timelines (next 6â18 months).
- Any existing skill assessments or certifications.
- Constraints: budget, time for training, hiring freezes, vendor policies.
Outputs Produced
- A structured skills matrix JSON per
templates/skills-matrix.json. - A manager-readable matrix (
templates/skills-matrix.md). - A gap analysis + training/hiring plan (
templates/skills-gap-analysis.md,templates/training-plan.md).
Tooling Rule
- If MCP tools are available, prefer them for roster/org data (HRIS, Slack groups, GitHub org).
- Always base outputs on the provided templates before adding freeform commentary.
Core Pattern
- Inventory current skills (self-assessment + manager calibration).
- Map roadmap needs (what capabilities are required when).
- Compute gaps (coverage vs. required level and timing).
- Prioritize gaps by impact and urgency.
- Choose mitigations: training, hiring, role changes, or vendor support.
Skills Matrix Template
Use templates/skills-matrix.json as the canonical structure. A typical instance:
{
"team": "Platform Engineering",
"assessment_date": "2026-01-22",
"skills": [
{
"category": "Backend",
"skills": [
{
"name": "Python",
"team_coverage": {
"expert": ["Alice", "Bob"],
"proficient": ["Carol", "Dave"],
"learning": ["Eve"],
"none": []
},
"criticality": "high",
"roadmap_need": "high"
},
{
"name": "Go",
"team_coverage": {
"expert": [],
"proficient": ["Alice"],
"learning": ["Bob"],
"none": ["Carol", "Dave", "Eve"]
},
"criticality": "medium",
"roadmap_need": "high",
"gap": "Need 2 experts for Q2 microservices rewrite"
}
]
}
],
"training_plan": [
{
"skill": "Go",
"priority": "high",
"action": "2 engineers to complete Go training by Q2",
"budget": "$2,000",
"timeline": "12 weeks"
}
]
}
Gap Analysis Process
- Map current skills
- Start with self-assessments (e.g., learning/proficient/expert).
- Calibrate with manager/lead to avoid inflated or under-stated levels.
- Capture breadth vs. depth (e.g., âproficient in React, expert in Djangoâ).
- Map roadmap requirements
- For each major initiative, list required skills and depth (e.g., â2 experts in Kubernetes by Q3â).
- Include non-technical skills: product sense, stakeholder management, security, reliability.
- Identify gaps
- Skills with high roadmap need but few/no experts.
- Single-point-of-failure skills (only one expert across team/org).
- Emerging capabilities (e.g., ML, data platform) with no coverage yet.
- Prioritize gaps
- Prioritize by criticality à time-to-need:
- High criticality + near-term â urgent.
- Medium criticality + long-term â plan but donât panic.
- Prioritize by criticality à time-to-need:
- Plan mitigation
- Training: courses, pairing, stretch projects, internal workshops.
- Hiring: new roles or backfills (coordinate with
hreng-hire-intake). - Vendors/consultants: short-term coverage while building internal capability.
Using Supporting Resources
Templates
templates/skills-matrix.jsonâ Structured team skills inventory.templates/skills-matrix.mdâ Human-readable matrix for managers.templates/skills-gap-analysis.mdâ Gap analysis and roadmap risk view.templates/training-plan.mdâ Structured training roadmap.
References
references/overview.md,references/checklist.md,references/data-sources.mdâ Process and data sources.references/mitigation-playbook.mdâ Training, hiring, and vendor mitigation options.references/output-schema.mdâ Skills matrix and gap output structure.
Scripts
scripts/check-hreng-skills.shâ Pre-run checks for the skill.scripts/validate-hreng-skills.pyâ Validate skills matrix JSON and gap analysis structure.
Common Mistakes
- Treating self-assessment as ground truth without calibration.
- Focusing only on current stack, ignoring planned roadmap changes.
- Ignoring soft skills and leadership capabilities needed for scale.
- Over-relying on a single expert instead of building a bench.
- Creating a matrix but not turning it into concrete training or hiring actions.
The output should make it obvious which 3â5 skill gaps matter most and exactly what the team plans to do about each one.