← Back to Skills Marketplace
ncreighton

Hrflow

by ncreighton · GitHub ↗ · v1.0.0 · MIT-0
macoslinuxwin32 ⚠ suspicious
102
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install hrflow
Description
Automate HR workflows including benefits enrollment, onboarding, and payroll integration. Use when the user needs to streamline employee processes, reduce ma...
README (SKILL.md)

\r \r

Overview\r

\r HRFlow is an AI-driven HR process automation skill that intelligently orchestrates complex employee workflows across your entire HR ecosystem. Whether you're managing benefits enrollment, automating onboarding sequences, or syncing payroll data, HRFlow eliminates manual work and creates frictionless experiences for your team.\r \r Why HRFlow Matters:\r

  • Reduce administrative burden by 70-80% on repetitive HR tasks\r
  • Improve accuracy in payroll, benefits, and compliance workflows\r
  • Personalize employee experiences with AI-powered process recommendations\r
  • Real-time integration with Workday, BambooHR, Gusto, ADP, and custom HRIS systems\r
  • Audit-ready compliance with full workflow logging and approval chains\r \r Key Integrations:\r
  • HRIS: Workday, BambooHR, Namely, TriNet\r
  • Payroll: Gusto, ADP, Paychex, Square Payroll\r
  • Communication: Slack, Microsoft Teams, Email\r
  • Document Management: DocuSign, HelloSign\r
  • Analytics: Tableau, Power BI\r \r ---\r \r

Quick Start\r

\r

Example 1: Automate Benefits Enrollment for New Hires\r

"Set up an automated benefits enrollment workflow for our new hire cohort. \r
Trigger personalized emails with plan comparisons based on employee lifecycle \r
stage, include DocuSign integration for enrollment forms, and sync completed \r
enrollments back to Workday within 24 hours. Send daily Slack summaries to HR."\r
```\r
\r
### Example 2: Create Intelligent Onboarding Sequences\r
```\r
"Build a 30-day AI-driven onboarding workflow that personalizes tasks based on \r
department and role. Include hardware provisioning (auto-order laptop and phone), \r
system access requests (GitHub, Slack, Google Workspace), manager 1-on-1 \r
scheduling, and culture documentation. Notify managers of pending tasks via Teams."\r
```\r
\r
### Example 3: Sync Payroll Changes Across Systems\r
```\r
"Automate our payroll processing: pull updated employee data from BambooHR \r
salary changes, map to Gusto payroll system, validate against tax withholding \r
rules, and if any discrepancies occur, flag for HR review and escalate to \r
slack #payroll-alerts. Generate a compliance report for finance."\r
```\r
\r
### Example 4: Benefits Renewal Campaign with AI Personalization\r
```\r
"Launch our annual benefits renewal: segment employees by tenure and benefits \r
tier, generate personalized communication highlighting plan changes relevant to \r
each segment, track engagement metrics in real-time, and auto-escalate inactive \r
employees to HR for phone outreach."\r
```\r
\r
---\r
\r
## Capabilities\r
\r
### 1. **Intelligent Workflow Orchestration**\r
- Design complex multi-step HR processes with conditional logic\r
- Trigger workflows on events: new hire date, anniversary, role change, performance review\r
- Support approval chains and deadline-driven escalations\r
- Run parallel tasks (e.g., background check + equipment ordering simultaneously)\r
\r
**Usage Example:**\r
```\r
Workflow: New Hire Activation\r
├── Day 1: Send welcome email + equipment order\r
├── Day 3: System access provisioning + manager sync\r
├── Day 7: Benefits enrollment (personalized by role)\r
├── Day 14: Culture onboarding & direct report mapping\r
└── Day 30: 30-day check-in survey\r
```\r
\r
### 2. **Bi-directional HRIS & Payroll Integration**\r
- Real-time data sync between Workday, BambooHR, Gusto, ADP\r
- Automatic field mapping and data transformation\r
- Validation rules to catch errors before they propagate\r
- Audit logs for compliance and troubleshooting\r
- Support for custom HRIS via REST/SOAP APIs\r
\r
**Supported Data Points:**\r
- Employee demographics (name, address, tax ID)\r
- Salary, benefits elections, deductions\r
- Department, manager, cost center assignments\r
- Time off accruals and usage\r
- Performance ratings and promotion flags\r
\r
### 3. **AI-Powered Personalization Engine**\r
- Analyze employee lifecycle stage, role, department, tenure\r
- Generate customized communication and benefits recommendations\r
- Predict opt-out risk and auto-trigger engagement campaigns\r
- Segment audiences for targeted communications\r
- A/B test message variants for maximum engagement\r
\r
### 4. **Multi-Channel Notifications**\r
- Email (with rich HTML templates and merge fields)\r
- Slack (interactive buttons, real-time alerts)\r
- Microsoft Teams (workflow cards, approvals)\r
- SMS (for urgent time-off or paycheck notifications)\r
- In-app notifications (if integrated with employee portal)\r
\r
### 5. **Document Automation & E-Signature**\r
- Auto-generate offer letters, employment agreements, policy acknowledgments\r
- DocuSign/HelloSign integration for e-signatures\r
- Automatic filing and compliance tracking\r
- Template library with pre-built HR documents\r
\r
### 6. **Compliance & Audit Reporting**\r
- Maintain immutable workflow logs for all HR processes\r
- Generate compliance reports for SOC2, GDPR, FCRA\r
- Track approval chains and reviewer signatures\r
- Export audit trails in standardized formats\r
- Real-time compliance violation alerts\r
\r
---\r
\r
## Configuration\r
\r
### Required Environment Variables\r
\r
```bash\r
# HRIS System Authentication\r
export HRIS_API_KEY="your-workday-or-bamboohr-api-key"\r
export HRIS_SYSTEM="workday"  # Options: workday, bamboohr, namely, custom\r
export HRIS_TENANT_ID="your-tenant-id"\r
\r
# Payroll System Authentication\r
export PAYROLL_API_KEY="your-gusto-or-adp-api-key"\r
export PAYROLL_SYSTEM="gusto"  # Options: gusto, adp, paychex, square\r
\r
# Communication Channels\r
export SLACK_WEBHOOK_URL="https://hooks.slack.com/services/YOUR/WEBHOOK/URL"\r
export SLACK_DEFAULT_CHANNEL="#hr-alerts"\r
export SENDGRID_API_KEY="your-sendgrid-key"  # For email\r
\r
# Document Signing\r
export DOCUSIGN_API_KEY="your-docusign-integration-key"\r
export DOCUSIGN_ACCOUNT_ID="your-account-id"\r
\r
# Security & Compliance\r
export ENCRYPTION_KEY="your-256-bit-encryption-key"\r
export AUDIT_LOG_RETENTION_DAYS="2555"  # 7 years\r
export DATA_RESIDENCY="us-east-1"  # GDPR/compliance region\r
```\r
\r
### Optional Configuration\r
\r
```bash\r
# Workflow Settings\r
export WORKFLOW_TIMEOUT_MINUTES="1440"  # Max runtime before auto-fail\r
export APPROVAL_REMINDER_HOURS="24"  # Escalate pending approvals\r
export BATCH_PROCESS_SIZE="100"  # For bulk operations\r
\r
# AI Personalization\r
export PERSONALIZATION_MODEL="openai-gpt4"\r
export SENTIMENT_ANALYSIS_ENABLED="true"\r
export ENGAGEMENT_SCORE_THRESHOLD="0.6"\r
\r
# Custom HRIS Endpoint (if using custom system)\r
export CUSTOM_HRIS_BASE_URL="https://your-hris.company.com/api/v2"\r
export CUSTOM_HRIS_AUTH_TYPE="oauth2"  # or basic, bearer\r
```\r
\r
### Initial Setup\r
\r
1. **Authenticate with HRIS:**\r
   - Generate API key in Workday/BambooHR admin console\r
   - Test connection: `hrf test-hris-connection`\r
\r
2. **Configure Payroll Integration:**\r
   - Link Gusto/ADP account via OAuth\r
   - Map employee fields between HRIS and payroll\r
   - Validate data sync with test batch\r
\r
3. **Set Up Communication Channels:**\r
   - Create Slack app and generate webhook\r
   - Configure SendGrid for transactional email\r
   - Test notifications: `hrf test-notification slack`\r
\r
4. **Document Signing (Optional):**\r
   - Register with DocuSign or HelloSign\r
   - Upload HR document templates\r
   - Assign signer roles and routing\r
\r
---\r
\r
## Example Outputs\r
\r
### Output 1: New Hire Workflow Status Report\r
```\r
HRFlow Workflow Report - New Hire Activation\r
Generated: 2024-01-15 10:30 AM\r
\r
Hire: Sarah Chen | Start Date: 2024-01-15 | Department: Engineering\r
\r
✅ COMPLETED (Day 1):\r
  ✓ Welcome email sent (2024-01-15 09:00)\r
  ✓ Laptop order placed: MacBook Pro 16" (Order #WH-445829)\r
  ✓ Manager notification sent to James Rodriguez\r
\r
⏳ IN PROGRESS (Day 3):\r
  ⏱ System access provisioning (80% complete)\r
    - GitHub: pending manager approval\r
    - Slack workspace: activated\r
    - Google Workspace: active\r
  ⏱ Security training assignment: due 2024-01-18\r
\r
📋 PENDING (Day 7):\r
  ⏰ Benefits enrollment: due 2024-01-22\r
    - Medical: 3 plan options + personalized comparison\r
    - 401(k): auto-enrollment at 3% (adjustable)\r
    - FSA election: recommended based on dependent status\r
  ⏰ I-9 verification: scheduled for 2024-01-20\r
\r
RISK FLAGS: None\r
APPROVAL CHAIN: All completed on-time\r
```\r
\r
### Output 2: Payroll Sync Validation Report\r
```\r
HRFlow Payroll Integration Report\r
Sync Date: 2024-01-15 | Cycle: Bi-weekly\r
\r
SOURCE: BambooHR → DESTINATION: Gusto Payroll\r
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\r
\r
PROCESSED: 487 employee records\r
✅ MATCHED: 483 (99.2%)\r
⚠️  WARNINGS: 3\r
❌ ERRORS: 1\r
\r
WARNINGS (Requires Review):\r
1. Marcus Johnson - Salary change +8% detected\r
   Action: Waiting HR approval in #payroll-alerts\r
2. Priya Patel - Tax withholding mismatch (-$12/paycheck)\r
   Recommendation: Verify W-4 on file\r
3. New hire - Michael Torres - Missing direct deposit info\r
   Action: Auto-sent banking form request\r
\r
ERRORS (Blocked):\r
1. Jennifer Lee - Duplicate employee ID in Gusto\r
   Status: HR contacted, awaiting resolution\r
\r
DATA CONSISTENCY CHECKS:\r
✓ Tax IDs match across systems\r
✓ Deduction codes valid\r
✓ Department mappings correct\r
✓ Benefit plan elections aligned\r
```\r
\r
### Output 3: Benefits Enrollment Campaign Summary\r
```\r
HRFlow Benefits Renewal Campaign - 2024\r
Campaign Dates: Jan 8-22 | Target: 250 employees\r
\r
OVERALL ENGAGEMENT: 92% (230/250)\r
├── Opened email: 98% (245/250)\r
├── Clicked enrollment link: 94% (235/250)\r
└── Completed enrollment: 92% (230/250)\r
\r
BY SEGMENT:\r
Tenure \x3C 1 year:  88% completion (12 pending → escalate to phone)\r
Tenure 1-5 years: 95% completion (5 pending)\r
Tenure 5+ years:  93% completion (9 pending)\r
\r
BY DEPARTMENT:\r
Engineering:  96% ✓ (highest engagement)\r
Sales:        89% (send reminder to Sales Ops)\r
Finance:      94% ✓\r
HR:           100% ✓ (all staff completed)\r
\r
PLAN ELECTIONS TRENDS:\r
Medical plans: No change (69% HMO, 31% PPO)\r
401(k): +3% avg contribution increase (from 5.2% to 5.5%)\r
FSA: 42% enrollment (stable year-over-year)\r
Wellness: +12% uptake in gym benefits\r
\r
NEXT STEPS:\r
→ Phone outreach for 26 pending employees (Jan 23-24)\r
→ Generate finalized census for plan administrators\r
→ Sync all elections to payroll system (Jan 25)\r
→ Send confirmation statements (Jan 26)\r
```\r
\r
---\r
\r
## Tips & Best Practices\r
\r
### 1. **Start with High-ROI Processes**\r
- **First automation:** New hire onboarding (saves 8-12 hours per hire)\r
- **Second:** Benefits enrollment (eliminates manual data entry, reduces errors)\r
- **Third:** Payroll sync validation (prevents costly mistakes)\r
\r
### 2. **Segment Your Audience Strategically**\r
```\r
Create workflows by employee lifecycle stage:\r
├── New hires (0-30 days): intensive onboarding\r
├── Established (30-365 days): integration + development\r
├── Tenured (1+ years): career pathing, benefits optimization\r
└── Offboarding: exit workflows, knowledge transfer\r
```\r
\r
### 3. **Leverage Personalization for Engagement**\r
- Use employee role and seniority to tailor benefits explanations\r
- Reference employee's spouse/dependent status in FSA recommendations\r
- Highlight plan changes most relevant to their demographic\r
- Include manager context in onboarding (direct report names, team norms)\r
\r
### 4. **Set Up Approval Chains Correctly**\r
- Keep approval levels to 2-3 max (faster decisions)\r
- Auto-escalate after 48 hours of inaction\r
- Assign backup approvers to prevent bottlenecks\r
- Use AI to flag "unusual" requests for manual review (e.g., 50% salary increase)\r
\r
### 5. **Monitor Compliance Continuously**\r
- Set alerts for gaps in required training or documentation\r
- Audit audit logs monthly for suspicious patterns\r
- Validate payroll calculations against external benchmarks\r
- Track e-signature compliance (ESIGN Act, UETA)\r
\r
### 6. **Optimize Communication Timing**\r
- Send benefits communications on Tuesdays-Thursdays (higher open rates)\r
- Avoid Mondays (inbox overload) and Fridays (weekend mind-set)\r
- Schedule onboarding tasks before new hire's first day (reduce Day 1 chaos)\r
- Use timezone-aware scheduling for distributed teams\r
\r
### 7. **Test Before Rolling Out to All Employees**\r
- Run workflows on a pilot group (50-100 employees) first\r
- Collect feedback and refine templates\r
- Validate all integrations are passing correct data\r
- Train HR staff on escalation and troubleshooting\r
\r
---\r
\r
## Safety & Guardrails\r
\r
### What HRFlow Will NOT Do\r
\r
**Employee Termination Automation:**\r
- Will not auto-terminate employees or deactivate systems\r
- Requires explicit human approval and manager sign-off for all offboarding\r
- Terminates only after final paycheck calculation is confirmed\r
\r
**Sensitive Compensation Decisions:**\r
- Will not automatically adjust salaries or approve raises\r
- Flags all compensation changes for HR/Finance review\r
- Requires dual sign-off for merit increases above 5%\r
\r
**Data Deletion:**\r
- Will not delete any employee records permanently\r
- Archives all historical data for 7 years (compliance requirement)\r
- Anonymization requires explicit legal review\r
\r
**Surveillance or Monitoring:**\r
- Will not integrate with time-tracking or keystroke monitoring systems\r
- Does not track employee activity beyond workflow completion\r
- Respects employee privacy while managing process metrics\r
\r
### Security Boundaries\r
\r
- **Encryption:** All data encrypted in transit (TLS 1.3) and at rest (AES-256)\r
- **Access control:** Role-based permissions (HR only, Finance only, etc.)\r
- **Audit logging:** Immutable logs of all data access and modifications\r
- **Data residency:** Respects GDPR, CCPA, and regional compliance requirements\r
- **Credential rotation:** API keys rotate every 90 days automatically\r
- **Rate limiting:** API calls throttled to prevent abuse\r
- **PII handling:** Sensitive fields (SSN, banking info) masked in logs\r
\r
### Compliance Certifications\r
\r
- SOC2 Type II compliant\r
- GDPR-ready with data processing agreements\r
- FCRA-compliant for background check workflows\r
- HIPAA-ready for health insurance features\r
- State-level payroll tax compliance (all 50 US states + territories)\r
\r
---\r
\r
## Troubleshooting\r
\r
### Common Issues & Solutions\r
\r
**Issue 1: Payroll Sync Fails with "Field Mismatch" Error**\r
```\r
Error: "Field 'cost_center' not found in Gusto schema"\r
\r
Solution:\r
1
Usage Guidance
Do not provide full production HR or payroll credentials yet. Ask the skill author for a complete, explicit list of environment variables and the minimum scopes required (scoped, read-only tokens where possible; time-limited service accounts). Verify how the skill will access external services (endpoints, webhook destinations), whether it stores or transmits PII, and where audit logs are kept. Prefer sandbox/test accounts with synthetic employee data before connecting to real systems. If you must proceed, require least-privilege API keys, documented consent for any purchases or provisioning, and a privacy/compliance review (SOC2/GDPR/FCRA implications). Finally, verify the source repository and author — the registry metadata origin is unknown; confirm the repo and evaluate code before supplying sensitive credentials.
Capability Analysis
Type: OpenClaw Skill Name: hrflow Version: 1.0.0 The HRFlow skill requires high-privilege access to sensitive HRIS and Payroll systems (Workday, Gusto, etc.) and requests environment variables for API keys and encryption keys in SKILL.md. While the stated purpose is HR automation, the requirement for curl and jq to handle PII and financial data presents a significant attack surface. Additionally, the homepage URL (empire-skills) is a potential red flag due to the 'Empire' nomenclature commonly associated with post-exploitation frameworks.
Capability Assessment
Purpose & Capability
Name/description align with HR automation and the declared env vars (HRIS_API_KEY, PAYROLL_API_KEY, SLACK_WEBHOOK_URL) are plausible. However, the SKILL.md itself lists many additional integrations (DocuSign, Teams, hardware ordering, GitHub provisioning, multiple HRIS/payroll systems) and references environment variables (e.g., HRIS_SYSTEM, HRIS_TENANT_ID, PAYROLL_SYSTEM and likely others) that are not declared in the registry metadata. The declared requirements are incomplete relative to the skill's claimed capabilities.
Instruction Scope
The SKILL.md instructs the agent to orchestrate multi-system workflows, access and sync sensitive employee records (including tax IDs, payroll data), trigger e-signatures, post to Slack, and perform provisioning/order actions. These runtime instructions are broad and may cause the agent to contact many external endpoints and handle PII/financial data. The instructions are also somewhat high-level/vague, giving the agent wide discretion to interact with systems not explicitly authorized.
Install Mechanism
This is an instruction-only skill with no install spec and no code files; nothing is written to disk by an installer. Required binaries (curl, jq) are standard and reasonable for calling APIs and parsing JSON.
Credentials
The registry requires three env vars which are relevant, but SKILL.md documents and implies many additional environment variables and credentials (HRIS_SYSTEM, HRIS_TENANT_ID, PAYROLL_SYSTEM, DocuSign/API tokens, vendor APIs for hardware ordering, Google/Slack/GitHub tokens, etc.) without declaring them. Given the skill processes highly sensitive HR/payroll data, the absence of a complete, explicit list of required credentials and minimum scopes is a significant proportionality and transparency issue.
Persistence & Privilege
The skill is not marked always:true and has no install actions, which is normal. However, because it operates on sensitive HR data and can be invoked autonomously (default platform behavior), confirm the agent's autonomy settings and prefer explicit user approvals for any high-impact actions (payroll syncs, salary changes, hardware purchases).
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install hrflow
  3. After installation, invoke the skill by name or use /hrflow
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of HRFlow – HR process automation and integration skill. - Automates onboarding, benefits enrollment, and payroll integration. - Provides AI-driven workflow orchestration across major HRIS and payroll systems (Workday, BambooHR, Gusto, ADP, etc.). - Offers multi-channel notifications (Slack, Teams, email, SMS) and advanced document automation with e-signature support. - Ensures audit-ready compliance with detailed workflow logging and approval chains. - Enables extensive configuration via environment variables for integrations, communication, and compliance.
Metadata
Slug hrflow
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Hrflow?

Automate HR workflows including benefits enrollment, onboarding, and payroll integration. Use when the user needs to streamline employee processes, reduce ma... It is an AI Agent Skill for Claude Code / OpenClaw, with 102 downloads so far.

How do I install Hrflow?

Run "/install hrflow" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Hrflow free?

Yes, Hrflow is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Hrflow support?

Hrflow is cross-platform and runs anywhere OpenClaw / Claude Code is available (macos, linux, win32).

Who created Hrflow?

It is built and maintained by ncreighton (@ncreighton); the current version is v1.0.0.

💬 Comments