ashby
Ashby API for applicant tracking and recruiting. Use when user mentions "Ashby", "ATS", "applicant tracking", "candidate", "job application", "recruiting pipeline", "job posting", "opening", or "hiring project".
What this skill does
## Troubleshooting
If requests fail, run `zero doctor check-connector --env-name ASHBY_TOKEN` or `zero doctor check-connector --url https://api.ashbyhq.com/application.list --method POST`
Ashby returns `401` when the key is missing and `403` when the key is wrong, deactivated, or lacks permission for the endpoint. A `403` response with `missing_endpoint_permission` means the key is valid but needs the relevant Ashby API permission.
## Authentication
All requests require HTTP Basic Auth with the API key as the username and an empty password. With `curl`, pass the token as:
```bash
-u "$ASHBY_TOKEN:"
```
Ashby's API is RPC-style: endpoints are usually `POST /resource.method`, and request parameters go in JSON bodies. Include both JSON headers on API calls:
```bash
-H "Accept: application/json; version=1" -H "Content-Type: application/json"
```
## Environment Variables
| Variable | Description |
|---|---|
| `ASHBY_TOKEN` | Ashby API key |
## Key Endpoints
Base URL: `https://api.ashbyhq.com`
### 1. List Candidates
`POST /candidate.list`
Requires `candidatesRead`. Supports pagination and incremental sync.
```bash
curl -s -X POST "https://api.ashbyhq.com/candidate.list" \
-u "$ASHBY_TOKEN:" \
-H "Accept: application/json; version=1" \
-H "Content-Type: application/json" \
-d '{"limit": 25}'
```
### 2. Search Candidates
`POST /candidate.search`
Use this for targeted lookup by email or name. Responses are limited, so use `candidate.list` for broad syncs.
```bash
curl -s -X POST "https://api.ashbyhq.com/candidate.search" \
-u "$ASHBY_TOKEN:" \
-H "Accept: application/json; version=1" \
-H "Content-Type: application/json" \
-d '{"email": "[email protected]"}'
```
### 3. List Applications
`POST /application.list`
Requires `candidatesRead`. Useful filters include `status`, `jobId`, `createdAfter`, `limit`, `cursor`, and `syncToken`.
```bash
curl -s -X POST "https://api.ashbyhq.com/application.list" \
-u "$ASHBY_TOKEN:" \
-H "Accept: application/json; version=1" \
-H "Content-Type: application/json" \
-d '{"limit": 25, "status": "Active"}'
```
### 4. List Jobs
`POST /job.list`
Requires `jobsRead`. Lists open, closed, and archived jobs. Include `Draft` in the `status` parameter when draft jobs are needed.
```bash
curl -s -X POST "https://api.ashbyhq.com/job.list" \
-u "$ASHBY_TOKEN:" \
-H "Accept: application/json; version=1" \
-H "Content-Type: application/json" \
-d '{"limit": 25}'
```
### 5. List Openings
`POST /opening.list`
Requires `jobsRead`. Supports pagination and incremental sync.
```bash
curl -s -X POST "https://api.ashbyhq.com/opening.list" \
-u "$ASHBY_TOKEN:" \
-H "Accept: application/json; version=1" \
-H "Content-Type: application/json" \
-d '{"limit": 25}'
```
### 6. List Job Postings
`POST /jobPosting.list`
Requires `jobsRead`. If results will be shown publicly, set `listedOnly` to `true` so unlisted job postings are not displayed.
```bash
curl -s -X POST "https://api.ashbyhq.com/jobPosting.list" \
-u "$ASHBY_TOKEN:" \
-H "Accept: application/json; version=1" \
-H "Content-Type: application/json" \
-d '{"listedOnly": true}'
```
### 7. Public Job Board Postings
`GET /posting-api/job-board/{JOB_BOARD_NAME}`
This endpoint is for public career pages and does not use the API-key auth flow.
```bash
curl -s "https://api.ashbyhq.com/posting-api/job-board/<job-board-name>?includeCompensation=true"
```
### 8. List Projects
`POST /project.list`
Requires `candidatesRead`. Supports pagination and incremental sync.
```bash
curl -s -X POST "https://api.ashbyhq.com/project.list" \
-u "$ASHBY_TOKEN:" \
-H "Accept: application/json; version=1" \
-H "Content-Type: application/json" \
-d '{"limit": 25}'
```
## Pagination and Sync
List endpoints return `results`, `moreDataAvailable`, and, when more pages are available, `nextCursor`. Send the latest `nextCursor` as `cursor` until `moreDataAvailable` is `false`.
```bash
curl -s -X POST "https://api.ashbyhq.com/candidate.list" \
-u "$ASHBY_TOKEN:" \
-H "Accept: application/json; version=1" \
-H "Content-Type: application/json" \
-d '{"limit": 100, "cursor": "<nextCursor>"}'
```
For endpoints with `syncToken`, store the `syncToken` returned on the final page and send it on the next run to fetch only changes:
```bash
curl -s -X POST "https://api.ashbyhq.com/candidate.list" \
-u "$ASHBY_TOKEN:" \
-H "Accept: application/json; version=1" \
-H "Content-Type: application/json" \
-d '{"limit": 100, "syncToken": "<syncToken>"}'
```
If Ashby returns `incremental_sync_too_large` or `sync_token_expired`, discard the stored sync token and run a fresh full sync without `syncToken`.
## Common Workflows
### Find a Candidate by Email
```bash
curl -s -X POST "https://api.ashbyhq.com/candidate.search" \
-u "$ASHBY_TOKEN:" \
-H "Accept: application/json; version=1" \
-H "Content-Type: application/json" \
-d '{"email": "[email protected]"}'
```
### Pull Active Applications for a Job
Replace `<job-id>` with the Ashby job UUID:
```bash
curl -s -X POST "https://api.ashbyhq.com/application.list" \
-u "$ASHBY_TOKEN:" \
-H "Accept: application/json; version=1" \
-H "Content-Type: application/json" \
-d '{"jobId": "<job-id>", "status": "Active", "limit": 100}'
```
### Add a Note to a Candidate
Requires `candidatesWrite`. If the organization uses the beta `X-On-Behalf-Of` flow, pass the Ashby user ID in that header.
```bash
curl -s -X POST "https://api.ashbyhq.com/candidate.createNote" \
-u "$ASHBY_TOKEN:" \
-H "Accept: application/json; version=1" \
-H "Content-Type: application/json" \
-H "X-On-Behalf-Of: <user-id>" \
-d '{"candidateId": "<candidate-id>", "note": "Reached out by email.", "sendNotifications": false}'
```
## Notes
- Ashby API keys are long-lived and should be used from server-side code only.
- API keys have endpoint-level permissions. Request the smallest permissions needed for the workflow.
- Confidential jobs/projects and private candidate fields require explicit permission settings in Ashby.
Related 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.