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"]}`), }; }