workato-connector-sdk-reference
This skill should be used when the user asks about "sdk reference", "actions block reference", "triggers block reference", "object_definitions", "methods block", "pick_lists", "schema block", "http methods workato", "ruby methods workato", or needs API reference documentation for Workato SDK blocks and methods.
What this skill does
# Workato SDK Reference
Comprehensive reference for all Workato Connector SDK blocks, methods, and configuration options.
## Overview
The Workato SDK consists of these main blocks:
| Block | Purpose |
|-------|---------|
| `connection` | Authentication and base configuration |
| `actions` | Operations users can perform |
| `triggers` | Events that start recipes |
| `methods` | Reusable helper functions |
| `object_definitions` | Reusable schema definitions |
| `pick_lists` | Dropdown options |
| `streams` | Large file handling |
## Connection Block
Defines authentication and connection settings.
```ruby
connection: {
fields: Array, # Credential input fields
authorization: Hash, # Auth type and configuration
base_uri: lambda, # Base URL for requests
test: lambda # Connection test
}
```
### Authorization Types
| Type | Use Case |
|------|----------|
| `basic_auth` | Username/password |
| `api_key` | API key in header/query |
| `oauth2` | OAuth 2.0 flows |
| `custom_auth` | Custom auth logic |
| `multi` | Multiple auth options |
| `aws_auth` | AWS Signature v4 |
## Actions Block
Defines connector operations.
```ruby
actions: {
action_name: {
title: String, # Display name
subtitle: String, # Secondary description
description: lambda, # Dynamic description
help: String | lambda, # Help text
config_fields: Array, # Mode selectors
input_fields: lambda, # Input schema
execute: lambda, # Main logic
output_fields: lambda, # Output schema
sample_output: lambda, # Sample data
retry_on_response: Array, # HTTP codes to retry
retry_on_request: Array, # Errors to retry
max_retries: Integer, # Retry count
summarize_input: Array, # Input summary fields
summarize_output: Array # Output summary fields
}
}
```
### Execute Lambda Parameters
```ruby
execute: lambda do |connection, input, extended_input_schema, extended_output_schema, continue|
# connection - credentials hash
# input - user inputs
# extended_input_schema - dynamic schema info
# extended_output_schema - dynamic output schema
# continue - multistep continuation data
end
```
## Triggers Block
Defines event triggers.
```ruby
triggers: {
trigger_name: {
title: String,
description: lambda,
config_fields: Array,
input_fields: lambda,
poll: lambda, # Polling logic
webhook_subscribe: lambda, # Webhook registration
webhook_unsubscribe: lambda, # Webhook cleanup
webhook_notification: lambda, # Webhook handler
dedup: lambda, # Deduplication
output_fields: lambda,
sample_output: lambda
}
}
```
### Poll Lambda Returns
```ruby
poll: lambda do |connection, input, closure|
{
events: Array, # Records to process
next_poll: Any, # Stored in closure
can_poll_more: Boolean # Continue polling?
}
end
```
## Methods Block
Reusable helper functions.
```ruby
methods: {
method_name: lambda do |arg1, arg2|
# Logic here
end
}
```
### Calling Methods
```ruby
result = call('method_name', arg1, arg2)
```
## Object Definitions Block
Reusable field schemas.
```ruby
object_definitions: {
schema_name: {
fields: lambda do |connection, config_fields, object_definitions|
[
{ name: 'field_name', label: 'Label', type: 'string' }
]
end
}
}
```
### Referencing Object Definitions
```ruby
input_fields: lambda do |object_definitions|
object_definitions['schema_name']
end
```
## Pick Lists Block
Dropdown options.
```ruby
pick_lists: {
# Static list
statuses: lambda do
[
['Active', 'active'],
['Inactive', 'inactive']
]
end,
# Dynamic list
objects: lambda do |connection|
get('/api/objects').map { |o| [o['name'], o['id']] }
end,
# Dependent list
fields: lambda do |connection, object_type:|
get("/api/objects/#{object_type}/fields").map { |f| [f['label'], f['name']] }
end
}
```
## HTTP Methods
### Request Methods
| Method | Usage |
|--------|-------|
| `get(url)` | GET request |
| `post(url)` | POST request |
| `put(url)` | PUT request |
| `patch(url)` | PATCH request |
| `delete(url)` | DELETE request |
### Request Modifiers
```ruby
get('/api/records')
.params(key: 'value') # Query parameters
.payload(data) # Request body
.headers('X-Custom' => 'value') # Custom headers
.request_format_json # JSON body (default)
.request_format_xml # XML body
.request_format_www_form_urlencoded # Form body
.request_format_multipart_form # Multipart body
.response_format_json # Parse JSON (default)
.response_format_xml # Parse XML
.response_format_raw # Raw response
```
### Error Handling
```ruby
get('/api/records')
.after_response do |code, body, headers|
# Handle any response
end
.after_error_response(400) do |code, body, headers, message|
# Handle specific error
end
.after_error_response(/4\d{2}/) do |code, body, headers, message|
# Handle error pattern
end
```
## Field Schema
### Field Properties
| Property | Type | Description |
|----------|------|-------------|
| `name` | String | Internal field name |
| `label` | String | Display label |
| `type` | String | Data type |
| `control_type` | String | UI control |
| `optional` | Boolean | Required field? |
| `default` | Any | Default value |
| `hint` | String | Help text |
| `sticky` | Boolean | Always visible |
| `extends_schema` | Boolean | Triggers schema refresh |
| `ngIf` | String | Conditional visibility |
| `pick_list` | String | Dropdown source |
| `toggle_field` | Hash | Toggle input |
### Data Types
| Type | Description |
|------|-------------|
| `string` | Text (default) |
| `integer` | Whole numbers |
| `number` | Decimal numbers |
| `boolean` | True/false |
| `date` | Date only |
| `date_time` | Date and time |
| `timestamp` | Unix timestamp |
| `object` | Nested object |
| `array` | List of items |
### Control Types
| Control | Use Case |
|---------|----------|
| `text` | Single line text |
| `text-area` | Multi-line text |
| `select` | Dropdown |
| `multiselect` | Multiple selection |
| `number` | Number input |
| `integer` | Integer input |
| `checkbox` | Boolean toggle |
| `password` | Masked input |
| `date` | Date picker |
| `date_time` | DateTime picker |
| `email` | Email input |
| `url` | URL input |
| `phone` | Phone input |
## Ruby Methods
### Workato-Specific Methods
```ruby
workato.log(message) # Debug logging
workato.parse_json(string) # Parse JSON
workato.parse_xml(string) # Parse XML
workato.hmac_sha256(data, key) # HMAC SHA256
workato.jwt_encode(payload, key, alg) # JWT encoding
workato.uuid # Generate UUID
workato.trigger_limit # Current trigger limit
workato.resume_url # Wait-for-resume URL
workato.stream.in(data) # Stream input
workato.stream.out(name, input) # Stream output
```
### Allowed Ruby Methods
Common Ruby methods available in SDK:
- String: `split`, `gsub`, `match`, `strip`, `upcase`, `downcase`
- Array: `map`, `select`, `reject`, `find`, `first`, `last`, `flatten`
- Hash: `dig`, `merge`, `slice`, `except`, `each`, `keys`, `values`
- Time: `now`, `parse`, `iso8601`, `strftime`
- Integer: `to_s`, `to_i`, `abs`, `times`
## Reference Files
For complete documentation:
### Core References
- **`references/sdk-reference.md`** - SDK overview
- **`references/sdk-reference__actions.md`** - Actions reference
- **`references/sdk-reference__triggers.md`** - Triggers reference
- **`references/sdk-reference__connection.md`** - Connection referenceRelated 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.