200+ modules for any workflow

The module registry
for RobinPath

Discover, install, and compose automation modules. Connect Slack, Shopify, databases, AI, and everything in between.

slackgithubstripeshopifyopenaidiscordtelegramnotionfirebaseawsgoogle-sheetsemailpostgresredisdockervercellinearjira

Write automations,
not boilerplate

Each module gives you clean, typed functions. No SDKs to configure, no auth flows to build. Just import and use.

200+ modules

Slack, Stripe, Shopify, OpenAI, databases, and more

Secure by default

Keys encrypted at rest, injected at runtime, never in scripts

AI-powered

Describe what you want — the AI writes the script for you

workflow.rp
// Send a Slack alert when Shopify gets an order
shopify.onOrder("created", async (order) => {
  const total = money.format(order.total, "USD")

  await slack.send("#sales", {
    text: `New order from ${order.customer.name} — ${total}`
  })

  await google-sheets.append("Orders", [
    order.id, order.customer.email, total, date.now()
  ])
})

Up and running in 3 minutes

No complex setup. No configuration files. Just install and go.

01

Install the CLI

One command. Works on Mac, Windows, and Linux.

$npm install -g @robinpath/cli
02

Add modules

Pick from 200+ modules for any service or API.

$robinpath add @robinpath/slack
03

Run or schedule

Execute once, or schedule it to run automatically.

$robinpath run workflow.rp

Browse by category

Find the right module for your use case.

Start building your first workflow

Install the CLI and automate something in under 5 minutes. Free and open source.