用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/kmavrodis/kratos-agent --skill time-off-approvals命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | time-off-approvals |
| description | List and decide on pending PTO requests with explicit confirmation before approving or denying |
| enabled | true |
Use this skill when the user asks about time-off requests they need to approve, wants to action a specific request, or asks "what's pending for me?" (e.g. "What PTO is pending my approval?", "Approve Maya's request and tell her yes", "Deny Theo's July vacation — we have a release that week").
This skill includes a write tool (workday_approve_time_off_request). Follow the confirmation pattern strictly.
workday_list_time_off with approver_id=<user> and status: "Pending"workday_search_employees_by_name → workday_list_time_off with employee_id=<found> and status: "Pending"workday_list_time_off and filter by id, or read straight from a prior resultBefore approving or denying, show the user exactly what you'll do:
I'll approve PTO request PTO-3003:
- Employee: Theo Nakamura (EMP-2001) — Senior Platform Engineer
- Type: Vacation
- Dates: 14 Jul 2026 → 18 Jul 2026 (5 working days)
- Reason: Wedding
- Submitted: 28 May 2026
Confirm to approve? (yes / deny / cancel)
Use ask_user to pause for the user's response. Wait.
workday_approve_time_off_request with decision: "Approved" and an optional note if the user gave onedecision: "Denied". Ask for a note that will be shown to the employee.After the write succeeds, confirm:
workday_approve_time_off_request without explicit confirmation in the same turn.14 Jul 2026 for the user but ISO (2026-07-14) in tool calls.