npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

workato-dev-api

v2.2.0

Published

CLI for the Workato Developer API — recipes, connections, data tables, and more

Readme

workato-dev-api

Zero-dependency CLI and SDK for the Workato Developer API. Built for use with AI coding assistants and programmatic tooling — read and write recipes, connections, data tables, projects, folders, and jobs.


Claude Code

This package ships a Claude Code skill (/workato) that gives Claude full Workato context: recipe structure, wiring syntax, data table column naming, and every CLI command.

Install the skill

Project-level (checked in to your repo, available to anyone who clones it):

npx workato-dev-api auth YOUR_API_TOKEN
npx workato-dev-api bootstrap

This writes .claude/commands/workato.md in your current directory. Commit it alongside your code.

User-level (available in every project on your machine):

npx workato-dev-api auth YOUR_API_TOKEN --user
npx workato-dev-api bootstrap --user

This writes ~/.env and ~/.claude/commands/workato.md.

Using the skill

Once installed, Claude can invoke the skill autonomously whenever it needs Workato context. You can also call it explicitly:

/workato

Workato free sandbox? Just tell Claude — it will update your package.json automatically so the CLI points at the right URL.


Other AI assistants (Cursor, Windsurf, ...)

Run workato bootstrap and copy the generated .claude/commands/workato.md to wherever your assistant reads project context (e.g. .cursorrules, .windsurfrules). The content is plain markdown.


SDK / CLI Reference

Install

npm install -g workato-dev-api

Or use without installing:

npx workato-dev-api <command>

Authentication

Set WORKATO_API_TOKEN in a .env file, or run:

workato auth YOUR_API_TOKEN           # writes to cwd/.env
workato auth YOUR_API_TOKEN --user    # writes to ~/.env

The CLI checks .env files in this order, with later files winning:

  1. <package-dir>/.env
  2. ~/.env
  3. ./.env (cwd) — highest priority

Sandbox configuration

By default the CLI targets app.workato.com. For a Workato free sandbox (trial account), set in your package.json:

{
  "workato": { "sandbox": true }
}

This switches the base URL to app.trial.workato.com.

Commands

Setup

| Command | Description | |---|---| | workato auth <token> [--user] | Save API token to .env (default: cwd; --user: home dir) | | workato bootstrap [--user] | Install the /workato Claude Code skill (project-level by default, --user for user-level) |

Read

| Command | Description | |---|---| | workato get <recipe_id> | Fetch recipe code JSON → saved to recipe_<id>_code.json | | workato list-recipes | List recipes. Filters: --folder <id>, --project <id>, --page <n> | | workato list-projects | List all projects | | workato list-folders | List folders. Filter: --parent <id> | | workato list-connections | List connections. Filter: --folder <id> | | workato list-data-tables | List data tables. Filter: --project <id> | | workato get-data-table <id> | Fetch data table schema and details | | workato get-jobs <recipe_id> | List recent jobs. Filters: --limit <n>, --status <status> | | workato get-job <recipe_id> <job_id> | Fetch a single job |

Write

| Command | Description | |---|---| | workato create "<name>" <code.json> | Create a recipe from a full code JSON file | | workato create-api-trigger "<name>" | Create a recipe with a bare API Platform trigger | | workato update-step <recipe_id> <step_as_id> <patch.json> | Deep-merge a patch into one step (by as ID) | | workato put-code <recipe_id> <code.json> | Replace an entire recipe's code | | workato start <recipe_id> | Start a recipe | | workato stop <recipe_id> | Stop a recipe | | workato delete <recipe_id> | Delete a recipe |

Recipe code structure

A recipe's code is a JSON object. The top-level object is the trigger step; action steps live in code.block[]. Each step has a unique as field (8-char hex) used for cross-step wiring (datapills).

workato get <id> saves the code to recipe_<id>_code.json for inspection and editing before pushing back with put-code.

Development

git clone https://github.com/bill-bishop/workato-dev-api
cd workato-dev-api
cp .env.example .env   # add your token
npm test               # 115 unit tests, no network required

Tests use Node's built-in node:test runner — no extra dependencies.