YAML Workflow Executor Command Line Interface

Sub-skill of yaml-workflow-executor: Command-Line Interface (+1).

vamseeachanta 93f819a 736 B Updated

File contents

Command-Line Interface (+1)

Command-Line Interface

import argparse
import sys

def main():
    parser = argparse.ArgumentParser(
        description='Execute YAML-defined workflows'
    )
    parser.add_argument(
        'config',

*See sub-skills for full details.*

## Bash Wrapper


```bash
#!/bin/bash
# scripts/run_workflow.sh

CONFIG_FILE="${1:?Usage: $0 <config.yaml> [--override key=value]}"
shift

# Activate environment if needed
if [ -f ".venv/bin/activate" ]; then
    source .venv/bin/activate
fi

# Run workflow
python -m workflow_executor "$CONFIG_FILE" "$@"

vamseeachanta/workspace-hub/tree/main/.agents/skills/_archive/development/yaml-workflow-executor/command-line-interface commit 93f819a82d

Frequently asked questions

npx skillmds@latest add vamseeachanta/yaml-workflow-executor-command-line-interface