UNPKG

jido

Version:

A CLI tool to automate your development workflows using named flows. Simplifies task automation with readable config and plugin support.

9 lines (8 loc) 314 B
import chalk from "chalk"; export const flowLogger = (flows) => { console.log(`\n${chalk.blue("Available flows:")}`); flows.forEach((flow) => { const { name, description, steps } = flow; console.log(`${chalk.yellow(`-- ${name}:`)} ${description || "No description provided."}`); }); };