deel
Deel API for global payroll and contractors. Use when user mentions "Deel", "contractors", "global payroll", or "EOR".
What this skill does
## Troubleshooting
If requests fail, run `zero doctor check-connector --env-name DEEL_TOKEN` or `zero doctor check-connector --url https://api.letsdeel.com/rest/v2/contracts --method GET`
## Contracts
### List Contracts
```bash
curl -s "https://api.letsdeel.com/rest/v2/contracts?limit=20" \
--header "Authorization: Bearer $DEEL_TOKEN"
```
Params: `limit` (max 100), `offset`, `statuses` (comma-separated), `types`, `worker_name`, `team_id`.
### Get Contract Details
```bash
curl -s "https://api.letsdeel.com/rest/v2/contracts/<contract-id>" \
--header "Authorization: Bearer $DEEL_TOKEN"
```
### Create Contractor Contract
```bash
curl -s -X POST "https://api.letsdeel.com/rest/v2/contracts" \
--header "Authorization: Bearer $DEEL_TOKEN" \
--header "Content-Type: application/json" \
-d "{\"type\": \"pay_as_you_go\", \"title\": \"Software Developer\", \"worker_email\": \"[email protected]\", \"currency\": \"USD\", \"rate\": 5000, \"cycle\": \"monthly\", \"start_date\": \"2026-05-01\", \"scope\": \"Full-stack development\"}"
```
Contract types: `pay_as_you_go` (contractor), `ongoing` (employee/EOR), `milestone` (project-based).
### Update Contract
```bash
curl -s -X PATCH "https://api.letsdeel.com/rest/v2/contracts/<contract-id>" \
--header "Authorization: Bearer $DEEL_TOKEN" \
--header "Content-Type: application/json" \
-d "{\"title\": \"Senior Software Developer\"}"
```
### Get Contract Amendments
```bash
curl -s "https://api.letsdeel.com/rest/v2/contracts/<contract-id>/amendments" \
--header "Authorization: Bearer $DEEL_TOKEN"
```
### Create Contract Amendment
```bash
curl -s -X POST "https://api.letsdeel.com/rest/v2/contracts/<contract-id>/amendments" \
--header "Authorization: Bearer $DEEL_TOKEN" \
--header "Content-Type: application/json" \
-d "{\"rate\": 6000, \"effective_date\": \"2026-07-01\"}"
```
### Terminate Contract
```bash
curl -s -X POST "https://api.letsdeel.com/rest/v2/contracts/<contract-id>/terminations" \
--header "Authorization: Bearer $DEEL_TOKEN" \
--header "Content-Type: application/json" \
-d "{\"termination_date\": \"2026-06-30\", \"reason\": \"End of project\"}"
```
### Send Contract Invitation
```bash
curl -s -X POST "https://api.letsdeel.com/rest/v2/contracts/<contract-id>/invitations" \
--header "Authorization: Bearer $DEEL_TOKEN"
```
### Get Contract Preview
```bash
curl -s "https://api.letsdeel.com/rest/v2/contracts/<contract-id>/preview" \
--header "Authorization: Bearer $DEEL_TOKEN"
```
## EOR Contracts
### Create EOR Contract
```bash
curl -s -X POST "https://api.letsdeel.com/rest/v2/eor" \
--header "Authorization: Bearer $DEEL_TOKEN" \
--header "Content-Type: application/json" \
-d "{\"country\": \"DE\", \"worker_email\": \"[email protected]\", \"job_title\": \"Product Manager\", \"salary\": 80000, \"currency\": \"EUR\", \"start_date\": \"2026-06-01\"}"
```
### Get EOR Contract Details
```bash
curl -s "https://api.letsdeel.com/rest/v2/eor/contracts/<contract-id>/details" \
--header "Authorization: Bearer $DEEL_TOKEN"
```
### Get EOR Start Date Availability
```bash
curl -s "https://api.letsdeel.com/rest/v2/eor/start-date" \
--header "Authorization: Bearer $DEEL_TOKEN"
```
### Get EOR Country Validations
```bash
curl -s "https://api.letsdeel.com/rest/v2/eor/validations/<country-code>" \
--header "Authorization: Bearer $DEEL_TOKEN"
```
## People
### List People
```bash
curl -s "https://api.letsdeel.com/rest/v2/people?limit=20" \
--header "Authorization: Bearer $DEEL_TOKEN"
```
### Get Person Details
```bash
curl -s "https://api.letsdeel.com/rest/v2/people/<hris-profile-id>" \
--header "Authorization: Bearer $DEEL_TOKEN"
```
### Get Current User
```bash
curl -s "https://api.letsdeel.com/rest/v2/people/me" \
--header "Authorization: Bearer $DEEL_TOKEN"
```
### Get Person's Custom Fields
```bash
curl -s "https://api.letsdeel.com/rest/v2/people/<worker-id>/custom_fields" \
--header "Authorization: Bearer $DEEL_TOKEN"
```
### Update Person's Department
```bash
curl -s -X PUT "https://api.letsdeel.com/rest/v2/people/<id>/department" \
--header "Authorization: Bearer $DEEL_TOKEN" \
--header "Content-Type: application/json" \
-d "{\"department_id\": \"<department-id>\"}"
```
### Update Personal Info
```bash
curl -s -X PATCH "https://api.letsdeel.com/rest/v2/people/<worker-id>/personal" \
--header "Authorization: Bearer $DEEL_TOKEN" \
--header "Content-Type: application/json" \
-d "{\"first_name\": \"Jane\", \"last_name\": \"Doe\"}"
```
## Time Off
### List All Time Off Requests
```bash
curl -s "https://api.letsdeel.com/rest/v2/time_offs?limit=20" \
--header "Authorization: Bearer $DEEL_TOKEN"
```
### List Time Off by Profile
```bash
curl -s "https://api.letsdeel.com/rest/v2/time_offs/profile/<hris-profile-id>" \
--header "Authorization: Bearer $DEEL_TOKEN"
```
### Get Time Off Entitlements
```bash
curl -s "https://api.letsdeel.com/rest/v2/time_offs/profile/<hris-profile-id>/entitlements" \
--header "Authorization: Bearer $DEEL_TOKEN"
```
### Get Time Off Policies
```bash
curl -s "https://api.letsdeel.com/rest/v2/time_offs/profile/<hris-profile-id>/policies" \
--header "Authorization: Bearer $DEEL_TOKEN"
```
### Create Time Off Request
```bash
curl -s -X POST "https://api.letsdeel.com/rest/v2/time_offs" \
--header "Authorization: Bearer $DEEL_TOKEN" \
--header "Content-Type: application/json" \
-d "{\"contract_id\": \"<contract-id>\", \"type\": \"vacation\", \"start_date\": \"2026-04-01\", \"end_date\": \"2026-04-05\", \"reason\": \"Family vacation\"}"
```
Types: `vacation`, `sick_leave`, `personal`, `parental`, etc. Use `GET /time_offs/profile/{id}/policies` to discover available types.
### Review Time Off Request
```bash
curl -s -X POST "https://api.letsdeel.com/rest/v2/time_offs/review" \
--header "Authorization: Bearer $DEEL_TOKEN" \
--header "Content-Type: application/json" \
-d "{\"time_off_id\": \"<time-off-id>\", \"status\": \"approved\"}"
```
### Update Time Off Request
```bash
curl -s -X PATCH "https://api.letsdeel.com/rest/v2/time_offs/<time-off-id>" \
--header "Authorization: Bearer $DEEL_TOKEN" \
--header "Content-Type: application/json" \
-d "{\"end_date\": \"2026-04-07\"}"
```
### Delete Time Off Request
```bash
curl -s -X DELETE "https://api.letsdeel.com/rest/v2/time_offs/<time-off-id>" \
--header "Authorization: Bearer $DEEL_TOKEN"
```
## Invoice Adjustments
### List Invoice Adjustments
```bash
curl -s "https://api.letsdeel.com/rest/v2/invoice-adjustments?limit=20" \
--header "Authorization: Bearer $DEEL_TOKEN"
```
### Get Invoice Adjustment
```bash
curl -s "https://api.letsdeel.com/rest/v2/invoice-adjustments/<id>" \
--header "Authorization: Bearer $DEEL_TOKEN"
```
### List Adjustments for Contract
```bash
curl -s "https://api.letsdeel.com/rest/v2/contracts/<contract-id>/invoice-adjustments" \
--header "Authorization: Bearer $DEEL_TOKEN"
```
### Create Invoice Adjustment
```bash
curl -s -X POST "https://api.letsdeel.com/rest/v2/invoice-adjustments" \
--header "Authorization: Bearer $DEEL_TOKEN" \
--header "Content-Type: application/json" \
-d "{\"contract_id\": \"<contract-id>\", \"amount\": 500, \"currency\": \"USD\", \"type\": \"bonus\", \"description\": \"Performance bonus Q1 2026\"}"
```
### Update Invoice Adjustment
```bash
curl -s -X PATCH "https://api.letsdeel.com/rest/v2/invoice-adjustments/<id>" \
--header "Authorization: Bearer $DEEL_TOKEN" \
--header "Content-Type: application/json" \
-d "{\"amount\": 750, \"description\": \"Updated performance bonus\"}"
```
### Delete Invoice Adjustment
```bash
curl -s -X DELETE "https://api.letsdeel.com/rest/v2/invoice-adjustments/<id>" \
--header "Authorization: Bearer $DEEL_TOKEN"
```
## Adjustments (Generic)
### List Adjustment Categories
```bash
curl -s "https://api.letsdeel.com/rest/v2/adjustments/categories" \
--header "Authorization: Bearer $DEEL_TOKEN"
```
### CRelated in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.