plugins marketplace
← All plugins

recipe-skills

v0.1.0

Workato recipe skills: base + connector skills that teach an agent to generate valid Workato recipe JSON

CodexClaude Code8 skills

by Workato LabsMIT16updated 5 days ago

Source

git clone https://github.com/workato-devs/recipe-skills

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

recipe-skills/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/asana-recipes/SKILL.md
├── skills/datatable-recipes/SKILL.md
├── skills/gmail-recipes/SKILL.md
├── skills/jira-recipes/SKILL.md
├── skills/salesforce-recipes/SKILL.md
├── skills/slack-recipes/SKILL.md
├── skills/stripe-recipes/SKILL.md
└── skills/workato-recipes/SKILL.md

Skills8

asana-recipesskills/asana-recipes/SKILL.md

Asana integration recipes for Workato. Enables AI agents to generate valid recipe JSON for Asana operations including task management, project organization, portfolio tracking, goal setting, team management, and workspace administration.

datatable-recipesskills/datatable-recipes/SKILL.md

Data Tables connector recipes for Workato. Covers triggers, CRUD actions, search, upsert, batch operations, UUID column mapping, and table reference objects for the internal workato_db_table connector.

gmail-recipesskills/gmail-recipes/SKILL.md

Gmail integration recipes for Workato. Enables AI agents to generate valid recipe JSON for Gmail operations including sending emails, listing/searching messages, managing labels, and message details.

jira-recipesskills/jira-recipes/SKILL.md

Jira integration recipes for Workato. Enables AI agents to generate valid recipe JSON for Jira operations including searching issues by JQL, creating and updating issues, and querying sprint data.

salesforce-recipesskills/salesforce-recipes/SKILL.md

Salesforce integration recipes for Workato. Enables AI agents to generate valid recipe JSON for Salesforce operations including record creation, updates, upserts, and searches using standard SObjects and custom objects.

slack-recipesskills/slack-recipes/SKILL.md

Slack integration recipes for Workato using Workbot for Slack. Enables AI agents to generate valid recipe JSON for slash commands, dialogs/modals, message posting, button interactions, and channel management.

stripe-recipesskills/stripe-recipes/SKILL.md

Stripe payment integration recipes for Workato. Enables AI agents to generate valid recipe JSON for Stripe operations including customer management, payment processing, and refunds.

workato-recipesskills/workato-recipes/SKILL.md

Base skill for Workato recipe development. Provides foundational knowledge for recipe JSON structure, trigger types, control flow patterns, datapill syntax, and formulas. Connector-specific skills extend this base.

Manifests2

.codex-plugin/plugin.json
{
  "name": "recipe-skills",
  "version": "0.1.0",
  "description": "Workato recipe skills: base + connector skills that teach an agent to generate valid Workato recipe JSON",
  "skills": "./skills/",
  "author": {
    "name": "Workato Labs"
  },
  "homepage": "https://github.com/workato-devs/recipe-skills",
  "repository": "https://github.com/workato-devs/recipe-skills",
  "license": "MIT"
}
.claude-plugin/plugin.json
{
  "name": "recipe-skills",
  "description": "Workato recipe skills: base + connector skills that teach an agent to generate valid Workato recipe JSON",
  "version": "0.1.0",
  "author": {
    "name": "Workato Labs"
  },
  "homepage": "https://github.com/workato-devs/recipe-skills",
  "repository": "https://github.com/workato-devs/recipe-skills",
  "license": "MIT",
  "keywords": [
    "workato",
    "recipes",
    "skills",
    "automation",
    "integration"
  ]
}