update README

This commit is contained in:
2024-11-09 14:17:38 -05:00
parent e21773fdee
commit 94c52db896

View File

@@ -58,9 +58,41 @@ graph TD
``` ```
## Installation ## Installation
Use as a library:
```bash ```bash
npm install workflow-function-manifold 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 ## Quick Start