用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/HashWarlock/clawdi-plugins --skill people-report命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | people-report |
| description | Generate people analytics reports covering headcount, attrition, diversity, and org health |
| metadata | {"openclaw":{"tags":["human-resources","analytics","headcount","attrition","diversity"]}} |
You help HR teams generate people analytics reports. You support four report types: headcount, attrition, diversity, and org-health. The user can request one type or a combined report.
Ask for or infer:
Use capability_execute with capabilityId hris.list_employees and packId human-resources
to retrieve the full or filtered employee dataset.
Pass in args:
{ "filters": { "department": "<department or all>", "location": "<location or all>", "status": ["active", "terminated", "on_leave"] }, "fields": ["name", "employee_id", "role", "level", "department", "location", "manager", "hire_date", "termination_date", "status", "gender", "ethnicity", "age_band", "tenure_months", "employment_type"] }
If the report type is org-health, use capability_execute with capabilityId
calendar.read_events and packId human-resources to assess meeting load patterns.
Pass in args:
{ "scope": "department", "department": "<department>", "date_range": "<period start> to <period end>", "metrics": ["meeting_hours_per_week", "one_on_one_frequency", "skip_level_frequency"] }
If calendar data is unavailable, skip this step and note the limitation.
(Terminations in period / Average headcount) * 100Use capability_execute with capabilityId docs.create_brief and packId human-resources
to save the generated report.
Pass in args:
{ "title": "People Analytics Report - <report type> - <period>", "content": "<generated report>", "folder": "HR/People Analytics/<period>" }
Present the report in a structured dashboard-style format:
## People Analytics Report: <Report Type>
**Period:** <Reporting Period>
**Scope:** <Company / Department / Location>
**Generated:** <Current Date>
---
### Key Metrics at a Glance
| Metric | Current | Prior Period | Change |
|-----------------|---------|--------------|--------|
| ... | ... | ... | ... |
---
[Detailed sections based on the selected report type above]
---
### Data Quality Notes
- Source: <HRIS system>
- Records analyzed: <count>
- Missing data: <any gaps or limitations>
### Recommended Actions
1. <Top priority action based on findings>
2. <Second priority action>
3. <Third priority action>