Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/iblai/enterprise-agents/workdaynpx skills add iblai/enterprise-agents --skill workdaygit clone --depth 1 https://github.com/iblai/enterprise-agentsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/iblai/enterprise-agents/workday)<a href="https://agentmods.dev/skills/iblai/enterprise-agents/workday"><img src="https://agentmods.dev/badge/skills/iblai/enterprise-agents/workday.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00039 | $0.00622 |
| Opus 5 | $0.00019 | $0.00311 |
| Sonnet 5 | $0.00008 | $0.00124 |
| Haiku 4.5 | $0.00004 | $0.00062 |
Grade A, and why
workday scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 39 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Workday
What it is
Workday is the leading cloud Human Capital Management (HCM) suite, used by large enterprises to manage the full employee lifecycle from recruiting through offboarding. In this segment, HR and onboarding agents use Workday as the authoritative source for employee records, leave balances, job history, and onboarding checklist status. All agent access is read-only and scoped to the information needed to answer employee questions or validate provisioning prerequisites.
When to use this skill
- Looking up an employee's leave balance before answering a time-off question
- Retrieving a new hire's start date, department, and manager for onboarding coordination
- Checking the status of onboarding tasks assigned to a new employee
- Confirming job title, cost center, or reporting structure for an access provisioning request
- Retrieving job history for an employee to answer a compensation or tenure question
Credentials
This skill authenticates using variables from ~/.openclaw/.env (template: .env.example at the config root). Required variables:
WORKDAY_BASE_URL- tenant base URL (e.g.https://wd3-impl-services1.workday.com/ccx/service/mycompany)WORKDAY_USERNAME- integration system user (ISU) usernameWORKDAY_PASSWORD- integration system user passwordWORKDAY_TENANT- Workday tenant ID
Key operations
GET /Human_Resources/v43.0/workers/{worker_id}- retrieve worker profileGET /Human_Resources/v43.0/workers?Search_Text=...- search workers by name or emailGET /Absence_Management/v43.0/leave_requests_for_worker- fetch leave balancesGET /Talent/v43.0/job_history/{worker_id}- retrieve job change historyGET /Staffing/v43.0/workers/{worker_id}/worker_status- get employment status
Notes
- Workday uses SOAP/XML as the primary API protocol (WWS); a REST-based API (Workday REST) is available for select domains.
- Always use an Integration System User (ISU) account with minimum necessary domain security permissions.
- PII fields (SSN, date of birth, bank details) must be excluded from agent-accessible security segments.
- Workday sandboxes (Implementation, Sandbox Preview) have separate tenant URLs; test against a non-production tenant.
- API versioning is date-based (v43.0); pin the version and update during Workday's bi-annual release window.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 6d ago First seen · 39 lines · 39 tokens per session scan A 7900f2e86f32
workday is a skill published in the GitHub repository iblai/enterprise-agents (11 stars, last pushed 2mo ago), licensed MIT. It adds 39 tokens to every session and 622 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
chatbot
Use when a support or sales bot on a live website must behave: persona/system prompt, grounding so it cannot invent prices or policy, jailbreak and injection defense, the human handoff, launch metrics and kill switch. NOT the agent loop or RAG index under it (that is building-agents), NOT a human answering one ticket…
vf-performance
Use when reviewing code for performance issues, profiling hot paths, benchmarking before/after changes, or optimizing runtime, build, request latency, or bundle size.
flywheel
Development flywheel - autonomous cycle of run, observe, fix, verify. Use for continuous development with browser automation.
veryfront
Build Veryfront apps. Use for real-time errors, route preview, HMR control, and scaffolding pages/APIs/components/AI tools.
vf-error-handling
Use when creating new errors, migrating error classes to registry, catching/handling errors, or working with the VeryfrontError system.
vf-security-checklist
Use when touching auth, user input validation, file paths, redirects, WebSocket, uploads, rate limiting, CORS, or any security-sensitive code in veryfront.