From 94c52db8961b6661bc580e87efa7dab927b39a26 Mon Sep 17 00:00:00 2001 From: Geoff Seemueller Date: Sat, 9 Nov 2024 14:17:38 -0500 Subject: [PATCH] update README --- README.md | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 801838b..95502e1 100644 --- a/README.md +++ b/README.md @@ -58,9 +58,41 @@ graph TD ``` ## Installation - +Use as a library: ```bash npm install workflow-function-manifold +``` +For a very basic demonstration, invoke the CLI via npx: +```shell +$ npx workflow-function-manifold + +🔄 Executing Workflow... + +📍 Step: Nested: Data Validation + Prompt: "validate the input" + ✓ Validating data structure + ✅ Execution complete + +📍 Step: Nested: Data Cleaning + Prompt: "clean the data" + ↪ Navigation successful + ✓ Cleaning data + ✅ Execution complete + +📍 Step: Main: Data Analysis + Prompt: "analyze the results" + ↪ Navigation successful + ✓ Performing data analysis + ✅ Execution complete + +📍 Step: Main: Data Transformation + Prompt: "transform the output" + ↪ Navigation successful + ✓ Transforming results + ✅ Execution complete + +🎉 Workflow Demonstration Complete! + ``` ## Quick Start