recipe-skills: Command for Claude Code

.claude/commands/workato-recipes.md

workato-recipes is a command for Claude Code from workato-devs/recipe-skills. It costs 0 tokens per session (654 once invoked), scanned A, original, MIT.

A guide for creating Workato recipes, which are automated workflows connecting services and actions. It explains triggers, API endpoints, data references, control flow, connections, and recipe JSON structure.

In plain words
What is it for?
Building callable or API-triggered recipes, defining every input field including nested fields, adding conditions and error handling, configuring connections, and generating Workato API artifacts.
Why use it?
It helps prevent missing input definitions that can cause Workato to silently discard data. It also provides the structure needed for recipes to receive requests and handle conditions or errors.

Command for Claude Code

Written for Claude Code: installed under .claude/.

This is workato-devs/recipe-skills's own configuration. It tells Claude Code how to work on recipe-skills itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything recipe-skills configures →

Part of the recipe-skills plugin — 8 skills, 7 commands shipped together

Reuse

Borrowing it

Nothing to install: this file belongs to workato-devs/recipe-skills. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/workato-devs/recipe-skills/main/.claude/commands/workato-recipes.md
Clone the repo
git clone --depth 1 https://github.com/workato-devs/recipe-skills

Made for: Claude Code.

Or install recipe-skills, the plugin that ships this one along with the rest of its 8 skills, 7 commands.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for workato-recipes

README.md
[![agentmods](https://agentmods.dev/badge/commands/workato-devs/recipe-skills/workato-recipes.svg)](https://agentmods.dev/commands/workato-devs/recipe-skills/workato-recipes)
Your own site
<a href="https://agentmods.dev/commands/workato-devs/recipe-skills/workato-recipes"><img src="https://agentmods.dev/badge/commands/workato-devs/recipe-skills/workato-recipes.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 654 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.00654
Opus 5 $0.00000 $0.00327
Sonnet 5 $0.00000 $0.00131
Haiku 4.5 $0.00000 $0.00065

Measured 8d ago against content hash b8c726b350b1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

workato-recipes scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/commands/workato-recipes.md · 92 lines

How it starts

The opening of the file, as written. The whole thing — 92 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Workato Recipes Base Skill

You are now equipped with foundational knowledge for writing Workato recipe JSON. This skill covers platform fundamentals that apply to ALL connector recipes.

CRITICAL WARNING: extended_input_schema

The extended_input_schema MUST fully define ALL fields in the action's input object, including nested objects. If any input field is missing from the schema, Workato will silently drop that data during execution, causing cascading failures.

This affects ALL connectors. Complex connectors (Salesforce, NetSuite, etc.) are particularly vulnerable.

Always verify: Every field in input has a matching entry in extended_input_schema, including nested objects.

Capabilities

With this skill loaded, you can:

  • Generate recipes with different trigger types (API endpoint, callable recipe)
  • Generate API platform artifact files (endpoint, collection, connection)
  • Structure control flow (if/else, try/catch)
  • Write correct datapill references
  • Configure recipe settings and connections

Trigger Types

API Endpoint (External HTTP access)

{
  "provider": "workato_api_platform",
  "name": "receive_request",
  "keyword": "trigger"
}

Use response_index to return different HTTP status codes.

Callable Recipe (Internal recipe calls)

{
  "provider": "workato_recipe_function",
  "name": "execute",
  "keyword": "trigger"
}

Use return_result to return values.

Quick Reference

Datapill Format

#{_dp('{\"pill_type\":\"output\",\"provider\":\"PROVIDER\",\"line\":\"STEP_ALIAS\",\"path\":[\"field\"]}')}"

If/Else (else is INSIDE if block)

{
  "keyword": "if",
  "block": [
    { /* true action */ },
    { "keyword": "else", "block": [{ /* false action */ }] }
  ]
}

Try/Catch (catch is INSIDE try block)

{
  "keyword": "try",
  "block": [
    { /* action */ },
    { "keyword": "catch", "provider": null, "block": [{ /* error handling */ }] }
  ]
}

Block Requirements

  • Every block needs: number, keyword, uuid, as (as optional on try)
  • Actions need: provider
  • If/else: NO provider
  • Catch: "provider": null

Read the full file on GitHub · 92 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 92 lines · 0 tokens per session scan A b8c726b350b1

Subscribe to this mod's changes

workato-recipes is a command published in the GitHub repository workato-devs/recipe-skills (18 stars, last pushed 9d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 654 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.