Workato · Arazzo Workflow

Workato Turn a Recipe into a Genie Skill

Version 1.0.0

Convert an existing recipe into a skill and assign it to an AI agent.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub AgenticAPI ManagementAutomationB2BEmbedded iPaaSEnterpriseIntegrationiPaaSOrchestrationWorkflowsArazzoWorkflows

Provider

workato

Workflows

recipe-to-genie-skill
Create a skill from a recipe and assign it to a genie.
Confirms a recipe exists, converts it into a skill, verifies the skill, and assigns the skill to the target genie.
4 steps inputs: genieId, recipeId outputs: assignedSkills, skillId, skillName
1
getRecipe
Confirm the source recipe exists before converting it into a skill.
2
createSkill
Convert the recipe into a recipe-backed skill.
3
confirmSkill
Read the created skill back to confirm the conversion succeeded.
4
assignSkill
Assign the new skill to the genie as an actionable tool.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Workato Turn a Recipe into a Genie Skill
  summary: Convert an existing recipe into a skill and assign it to an AI agent.
  description: >-
    Bridges the Developer API and Agent Studio. The workflow reads a recipe to
    confirm it exists, converts it into a recipe-backed skill, reads the skill
    to confirm the conversion, and assigns the new skill to a genie so the
    agent gains the recipe as an actionable tool. Because two operationIds are
    drawn from different specs, source-qualified operationIds are used. Every
    step spells out its request inline so the flow can be read and executed
    without opening the underlying OpenAPI description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-610.60
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-610.60
      capability_name: Artificial Intelligence Management
      spec: workato-genies-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: geniesApi
  url: ../openapi/workato-genies-api-openapi.yml
  type: openapi
- name: recipesApi
  url: ../openapi/workato-recipes-api-openapi.yml
  type: openapi
- name: skillsApi
  url: ../openapi/workato-skills-api-openapi.yml
  type: openapi
workflows:
- workflowId: recipe-to-genie-skill
  summary: Create a skill from a recipe and assign it to a genie.
  description: >-
    Confirms a recipe exists, converts it into a skill, verifies the skill, and
    assigns the skill to the target genie.
  inputs:
    type: object
    required:
    - recipeId
    - genieId
    properties:
      recipeId:
        type: integer
        description: The recipe to convert into a skill.
      genieId:
        type: integer
        description: The genie that should receive the new skill.
  steps:
  - stepId: getRecipe
    description: Confirm the source recipe exists before converting it into a skill.
    operationId: $sourceDescriptions.recipesApi.getRecipe
    parameters:
    - name: id
      in: path
      value: $inputs.recipeId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      recipeName: $response.body#/name
  - stepId: createSkill
    description: Convert the recipe into a recipe-backed skill.
    operationId: $sourceDescriptions.skillsApi.createSkill
    requestBody:
      contentType: application/json
      payload:
        recipe_id: $inputs.recipeId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      skillId: $response.body#/id
      skillName: $response.body#/name
  - stepId: confirmSkill
    description: Read the created skill back to confirm the conversion succeeded.
    operationId: $sourceDescriptions.skillsApi.getSkill
    parameters:
    - name: id
      in: path
      value: $steps.createSkill.outputs.skillId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      backingRecipeId: $response.body#/recipe_id
  - stepId: assignSkill
    description: Assign the new skill to the genie as an actionable tool.
    operationId: $sourceDescriptions.geniesApi.assignSkillsToGenie
    parameters:
    - name: id
      in: path
      value: $inputs.genieId
    requestBody:
      contentType: application/json
      payload:
        skill_ids:
        - $steps.createSkill.outputs.skillId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      assignedSkills: $response.body#/items
  outputs:
    skillId: $steps.createSkill.outputs.skillId
    skillName: $steps.createSkill.outputs.skillName
    assignedSkills: $steps.assignSkill.outputs.assignedSkills

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/workato-recipe-to-genie-skill-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.