workato-api
Workato Developer API reference and execution framework. Use this skill whenever: (1) the user asks about Workato recipes, connections, jobs, lookup tables, folders, projects, API platform, or workspace configuration via REST API, curl, or httpx, (2) the user wants to programmatically query, inspect, start/stop, or manage Workato workspace resources via direct API calls (not via the Platform CLI), (3) the user mentions Workato API endpoints, API tokens, API rate limits, or needs request/response schemas for Workato REST resources, (4) you need to make Workato API calls via curl/httpx to answer a question or complete a task. This skill covers ALL Workato Developer API endpoints and provides curl-based execution patterns. There is no Workato Developer SDK — use bash/curl (or Python httpx) to call the REST API directly. For CLI-based workspace management, use the workato-platform-cli plugin instead. For building custom connectors, use the workato-connector-sdk plugin instead.
What this skill does
# Workato Developer API
This skill enables you to query and manage a Workato workspace via the Developer API. There is no SDK for the Developer API — all interactions use REST calls via curl or Python httpx.
> **Tip:** For interactive workspace management (pull/push projects, manage recipes/connections),
> the Workato Platform CLI (`pip install workato-platform-cli`) provides a higher-level interface.
> See the `workato-platform-cli` plugin.
## Workspace Configuration
Prefer environment variables for runtime configuration. If a `.local.md` file exists in this skill directory, read it only for workspace-specific local notes (workspace ID, data center, jq path). Never write tokens or workspace-specific values to tracked files.
- `WORKATO_API_TOKEN` — Bearer token (required). From Workato API Client (Workspace Admin > API Clients).
- `WORKATO_WORKSPACE_ID` — Workspace ID override.
- `WORKATO_BASE_URL` — Base URL override (default: `https://www.workato.com`).
## Authentication
```bash
# Token is in the environment as WORKATO_API_TOKEN
# All requests use Bearer token auth:
curl -s -H "Authorization: Bearer $WORKATO_API_TOKEN" \
"https://www.workato.com/api/<endpoint>"
```
If `WORKATO_API_TOKEN` is not set, tell the user to configure it. The token comes from a Workato API Client (Workspace Admin > API Clients).
**Base URLs by data center:**
- US: `https://www.workato.com/api/`
- EU: `https://app.eu.workato.com/api/`
- JP: `https://app.jp.workato.com/api/`
- SG: `https://app.sg.workato.com/api/`
- AU: `https://app.au.workato.com/api/`
- Event Streams: `https://event-streams.workato.com/api/v1/`
Default to US (`www.workato.com`) unless overridden by `WORKATO_BASE_URL` or `.local.md`.
## How to Use This Skill
1. **Identify which resource** the user is asking about from the Reference Files table below
2. **Read the corresponding reference file** for endpoint details, parameters, and response shapes
3. **Execute via curl** using the patterns in this file
4. **Parse responses with jq** — use `jq` (ensure it's installed; override path via `JQ` env var if needed)
5. **Handle pagination** according to the endpoint's pattern (see Response Patterns below)
For a complete index of all endpoints across all resources, see `references/endpoints-index.md`.
## Reference Files
Each file maps 1:1 to a Workato API resource category. Read the relevant file when you need endpoint details.
| Resource | Reference File | Key Endpoints |
|----------|---------------|---------------|
| Introduction & Auth | `references/introduction.md` | Base URLs, auth, HTTP codes |
| Recipes | `references/endpoints/recipes.md` | GET/POST/PUT/DELETE recipes, start/stop, reset trigger, poll now |
| Jobs | `references/endpoints/jobs.md` | List/get jobs, resume a job |
| Connections | `references/endpoints/connections.md` | List/create/update/delete/disconnect connections |
| Folders | `references/endpoints/folders.md` | List/create/delete folders and projects |
| Projects (Build/Deploy) | `references/endpoints/projects.md` | Build, deploy, list deployments |
| Lookup Tables | `references/endpoints/lookup-tables.md` | List tables, list/lookup/add/update/delete rows |
| Environment Properties | `references/endpoints/environment-properties.md` | List/upsert env properties by prefix |
| Project Properties | `references/endpoints/project-properties.md` | List/upsert project-scoped properties |
| Event Streams | `references/endpoints/event-streams.md` | Consume/publish messages, topic management |
| API Clients (Developer) | `references/endpoints/api-clients.md` | List/create/update/delete/regenerate dev API clients |
| API Platform | `references/endpoints/api-platform.md` | API collections, endpoints, platform clients, access profiles |
| Connectors | `references/endpoints/connectors.md` | Get connector metadata, list all platform connectors |
| Custom Connectors | `references/endpoints/custom-connectors.md` | Search/create/update/release/share custom connectors |
| Custom OAuth Profiles | `references/endpoints/custom-oauth-profiles.md` | List/create/update/delete OAuth profiles |
| Roles | `references/endpoints/roles.md` | List/copy custom roles |
| Workspace Collaborators | `references/endpoints/workspace-collaborators.md` | List/get/update members, invite collaborators |
| Workspace Details | `references/endpoints/workspace-details.md` | GET /api/users/me |
| Recipe Lifecycle Mgmt | `references/endpoints/recipe-lifecycle-management.md` | Export manifests, package export/import |
| On-Premise Agents | `references/endpoints/on-premise-agents.md` | List/create/delete OPA groups and agents |
| Test Automation | `references/endpoints/test-automation.md` | Run test cases, get results |
| Environment Management | `references/endpoints/environment-management.md` | Clear secrets cache, audit logs |
| All Endpoints Index | `references/endpoints-index.md` | Complete endpoint table across all resources |
## Response Envelope Patterns
Different endpoints use different response shapes — this matters for parsing with jq:
| Pattern | Endpoints | Shape | jq accessor |
|---------|-----------|-------|-------------|
| **Paginated items** | Recipes | `{ items: [...], count, page, per_page }` | `.items[]` |
| **Nested result** | Dev API Clients | `{ result: { items: [...], count, page, per_page } }` | `.result.items[]` |
| **Bare array** | Connections, Folders, Lookup Tables, Roles, Projects, On-Prem Agents | `[...]` | `.[]` |
| **Data/total** | Members, Activity Logs | `{ data: [...], total }` | `.data[]` |
| **Job-specific** | Jobs | `{ items: [...], job_count, job_succeeded_count, job_failed_count }` | `.items[]` |
| **Flat object** | Users/me, Properties | `{ key: value, ... }` | `.` |
## Common Workflows
### List all running recipes
```bash
curl -s -H "Authorization: Bearer $WORKATO_API_TOKEN" \
"https://www.workato.com/api/recipes?running=true&per_page=100" \
> /tmp/workato_response.json \
&& jq '.items[] | {id, name, last_run_at}' /tmp/workato_response.json
```
### Get recent failed jobs for a recipe
```bash
curl -s -H "Authorization: Bearer $WORKATO_API_TOKEN" \
"https://www.workato.com/api/recipes/RECIPE_ID/jobs?status=failed" \
> /tmp/workato_response.json \
&& jq '.items[] | {id, title, started_at, error}' /tmp/workato_response.json
```
### Search lookup table rows
```bash
curl -s -H "Authorization: Bearer $WORKATO_API_TOKEN" \
"https://www.workato.com/api/lookup_tables/TABLE_ID/rows?by[column_name]=value" \
> /tmp/workato_response.json \
&& jq '.' /tmp/workato_response.json
```
### Get workspace overview
```bash
curl -s -H "Authorization: Bearer $WORKATO_API_TOKEN" \
"https://www.workato.com/api/users/me" \
> /tmp/workato_response.json \
&& jq '{name, recipes_count, active_recipes_count, plan_id}' /tmp/workato_response.json
```
## Safety Rules
For Codex, treat this skill as explicit-invocation only. Do not proactively call authenticated Workato endpoints unless the user has clearly asked for Workato API execution in the current task.
**Before executing any write operation** (POST, PUT, DELETE that creates, updates, or deletes data):
1. Confirm with the user what will be changed
2. Show the exact API call you plan to make
3. Wait for explicit approval
**Read-only operations** (GET) can be executed without confirmation.
**Rate limits:**
- Custom Connectors API: 1 request/second
- Event Streams (legacy domain): 1000 requests/minute
- General: no documented global rate limit, but be reasonable
## Execution Pattern
Always save response to a temp file first, then parse — this avoids pipe issues with jq:
```bash
curl -s -H "Authorization: Bearer $WORKATO_API_TOKEN" \
"https://www.workato.com/api/ENDPOINT" \
> /tmp/workato_response.json \
&& jq 'QUERY' /tmp/workato_response.json
```
For write operations:
```bash
curl -s -X POST \
-H "Authorization: Bearer $WORKATO_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"key": "value"}' \
"https://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.