Community연구 & 데이터 분석github.com

ComposioHQ/Workday-Automation

Workday HR 운영 자동화 – 자연어 명령으로 직원 관리, 휴가 요청, 잔여 휴가 조회, 직원 데이터 처리를 수행합니다.

지원 대상Claude Code~Codex CLI~Cursor
npx skills add https://github.com/ComposioHQ/awesome-codex-skills/tree/main/composio-skills/workday-automation
AI Overview & Summary

이 스킬은 Claude Code 내에서 자연어 명령을 통해 Workday HR 운영을 자동화합니다. 사용자는 직원 검색 및 목록 조회, 휴가 요청 생성, 휴가 자격 확인, 잔여 휴가 조회, 현재 사용자 프로필 확인, 휴가 내역 조회 등 6가지 주요 워크플로우를 명령어로 실행할 수 있습니다. Rube MCP 서버를 Claude Code 설정에 추가하고 Workday 계정을 인증하면 바로 사용 가능합니다. 이 스킬은 Composio 플랫폼을 기반으로 하며, Workday의 비즈니스 프로세스와 연동되어 실제 HR 업무 처리 흐름을 지원합니다. 특히 휴가 요청 생성 시 올바른 Worker ID, 휴가 유형 ID, 제출 액션 ID를 사용해야 하며, 날짜 형식은 `yyyy-mm-dd`를 준수해야 합니다. 페이징 한도는 최대 100건이며, 기본값은 20건입니다. 이 스킬은 터미널을 벗어나지 않고도 Workday HR 작업을 효율적으로 처리할 수 있도록 설계되었습니다.

Ask in your favorite AI

Open a new chat with this agent skill pre-loaded.

문서

Workday Automation

Automate your Workday HR operations directly from Claude Code. Look up workers, create time off requests, check absence balances, and validate time off eligibility -- all without leaving your terminal.

Toolkit docs: composio.dev/toolkits/workday


Setup

  1. Add the Rube MCP server to your Claude Code config with URL: https://rube.app/mcp
  2. When prompted, authenticate your Workday account through the connection link provided
  3. Start automating your HR workflows with natural language

Core Workflows

1. Search and List Workers

Retrieve worker information with search and pagination.

Tool: WORKDAY_LIST_WORKERS

Search for workers named "Sarah" and include terminated employees

Key parameters:

  • search -- search by name or worker ID (case-insensitive, space-delimited for OR search)
  • includeTerminatedWorkers -- include terminated workers in results
  • limit (default 20, max 100) / offset -- pagination controls

2. Create Time Off Requests

Submit time off requests for workers with full business process support.

Tool: WORKDAY_CREATE_TIME_OFF_REQUEST

Create a vacation request for worker abc123 for March 15-17, 2026 (8 hours each day)

Key parameters:

  • ID (required) -- Workday worker ID
  • businessProcessParameters (required) -- must include action with id field (use "d9e4223e446c11de98360015c5e6daf6" for submit action)
  • days (required) -- array of time off entries, each with:
    • date (required) -- date in yyyy-mm-dd format
    • timeOffType (required) -- object with id of the eligible absence type
    • dailyQuantity -- hours or days quantity
    • comment, start, end, position, reason -- optional fields
  • businessProcessParameters.comment -- optional business process comment

3. Check Time Off Eligibility

Validate which dates a worker can take off before submitting a request.

Tool: WORKDAY_GET_WORKER_VALID_TIME_OFF_DATES

Check if worker abc123 is eligible to take time off on March 15, 2026

Key parameters:

  • ID (required) -- Workday worker ID
  • date -- specific date to validate (yyyy-mm-dd)
  • position -- filter by specific position ID
  • timeOff -- filter by specific time off plan/type ID
  • limit (max 100) / offset -- pagination

4. View Absence Balances

Check remaining time off balances for workers across all plans.

Tool: WORKDAY_LIST_ABSENCE_BALANCES

Show me absence balances for all workers in the organization
  • Retrieves balances for time off plans and leave of absence types
  • Can be filtered by worker ID, category, and effective date

5. Get Current User Profile

Retrieve the authenticated worker's profile information.

Tool: WORKDAY_GET_CURRENT_USER

Show me my Workday profile information
  • No parameters required
  • Returns the authenticated worker's profile
  • Use this first to get the worker ID for subsequent operations

6. View Time Off History

Retrieve time off details and history for a specific worker.

Tool: WORKDAY_GET_WORKER_TIME_OFF_DETAILS

Show me the time off history for worker abc123
  • Retrieves a collection of time off details for the specified worker
  • Useful for auditing time off usage and remaining balances

Known Pitfalls

  • Worker ID resolution: Always call WORKDAY_GET_CURRENT_USER or WORKDAY_LIST_WORKERS first to resolve Workday worker IDs. Worker IDs are Workday-specific UUIDs, not employee numbers.
  • Time off type IDs must be valid: The timeOffType.id in WORKDAY_CREATE_TIME_OFF_REQUEST must reference a valid eligible absence type for that worker. Use the "Get Worker Eligible Absence Types" flow to discover valid type IDs.
  • Submit action ID: The businessProcessParameters.action.id should be "d9e4223e446c11de98360015c5e6daf6" for the submit action. Using an incorrect ID will cause the business process to fail.
  • Date format: All date fields use yyyy-mm-dd format. ISO 8601 with timestamps is not accepted for date-only fields.
  • Pagination limits: The maximum limit is 100 across all Workday endpoints. Default is 20. Always paginate for complete datasets.
  • Business process approval: Creating a time off request initiates the business process but does not guarantee approval. The request enters the normal approval workflow.

Quick Reference

Tool SlugDescription
WORKDAY_LIST_WORKERSSearch and list workers with staffing info
WORKDAY_GET_CURRENT_USERGet the authenticated worker's profile
WORKDAY_CREATE_TIME_OFF_REQUESTSubmit a time off request (requires ID, businessProcessParameters, days)
WORKDAY_GET_WORKER_VALID_TIME_OFF_DATESCheck time off date eligibility (requires ID)
WORKDAY_LIST_ABSENCE_BALANCESRetrieve absence balances across time off plans
WORKDAY_GET_WORKER_TIME_OFF_DETAILSGet time off history for a worker

Powered by Composio

Individual skills in this repo

This repo contains 20 individual skills — each has its own dedicated page.

ComposioHQ/-21risk-automation

Automate 21risk tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/-2chat-automation

Automate 2chat tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/ably-automation

Automate Ably tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/abstract-automation

Automate Abstract tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/abuselpdb-automation

Automate Abuselpdb tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/abyssale-automation

Automate Abyssale tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/accelo-automation

Automate Accelo tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/accredible-certificates-automation

Automate Accredible Certificates tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/acculynx-automation

Automate Acculynx tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/active-campaign-automation

Automate ActiveCampaign tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/addresszen-automation

Automate Addresszen tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/adobe-automation

Automate Adobe tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/adrapid-automation

Automate Adrapid tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/adyntel-automation

Automate Adyntel tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/aeroleads-automation

Automate Aeroleads tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/aero-workflow-automation

Automate Aero Workflow tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/affinda-automation

Automate Affinda tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/affinity-automation

Automate Affinity tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/agencyzoom-automation

Automate Agencyzoom tasks via Rube MCP (Composio). Always search tools first for current schemas.

ComposioHQ/agent-deep-links

Build, validate, and troubleshoot deep links for Codex, Cursor, VS Code, Visual Studio, and similar tools. Use when users ask for clickable links (especially in Slack) that open threads, files, folders, or app settings.

관련 스킬