@handoffkit/recipes
v1.15.0
Published
Offline JavaScript workflow recipes for HandoffKit.
Downloads
657
Maintainers
Readme
@handoffkit/recipes
Small offline workflow recipes for JavaScript HandoffKit apps.
import { Agent } from "@handoffkit/core";
import { RecipeRunner, WorkflowTemplate } from "@handoffkit/recipes";
const recipe = WorkflowTemplate.planExecuteReview({
name: "release-checklist",
task: "Prepare a local release checklist.",
planner: new Agent({ name: "Planner" }),
executor: new Agent({ name: "Executor" }),
reviewer: new Agent({ name: "Reviewer" }),
});
console.log(new RecipeRunner(recipe).run().toMarkdown());