smol-workflow-engine 0.3.0

Rust implementation of the smol-workflows engine.
Documentation
export const meta = {
  name: "module-result",
  description: "Exercise top-level module-result workflows",
  phases: [{ title: "ModuleResult" }],
};

phase("ModuleResult");
log("module result args", args);

const [first, second] = await parallel([
  () => agent(`first: ${args["my-arg1"]}`),
  () => agent(`second: ${args["my-arg2"]}`),
]);

export default {
  first,
  second,
  args,
};