smol-workflow-engine 0.3.1

Rust implementation of the smol-workflows engine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
export const meta = {
  name: "cli-args",
  description: "Exercise CLI-provided workflow args",
};

export default async function workflow() {
  return {
    args,
    result: await agent(`hello ${args["my-arg1"]}`),
  };
}