Actions are the building blocks of Elwood Run. They are small, reusable, and composable units of work that can be combined to create workflows. Find out more at elwood.run
Read the full documentation at elwood.run/docs
The Elwood Run Action SDK provides reusable helpers to make developing actions easier.
# jsr
jsr add @elwood/run-action-sdk
# deno
deno add @elwood/run-action-sdk
# npm
npx jsr add @elwood/run-action-sdk
# import the SDK
import { sdk } from "https://x.elwood.run/a/[email protected]"
# using JSR
import { sdk } from "jsr:@elwood/run-action-sdk"
# get an input variable
const value = await sdk.input.get("name")