🎁 Get the FREE AI Skills Starter Guide β€” Subscribe β†’
BytesAgainBytesAgain
πŸ¦€ ClawHub✦ BytesAgain

Bytesagain Workflow Builder

by @loutai0307-prog

Create and run multi-step shell workflows with status tracking. Use when automating deployment sequences, chaining build steps, running CI pipelines locally,...

Versionv1.0.3
Downloads313
Installs1
TERMINAL
clawhub install bytesagain-workflow-builder

πŸ“– About This Skill


description: "Create and run multi-step shell workflows with status tracking. Use when automating deployment sequences, chaining build steps, running CI pipelines locally, or tracking multi-stage task execution." author: BytesAgain homepage: https://bytesagain.com source: https://github.com/bytesagain/ai-skills

bytesagain-workflow-builder

Build, run, and track multi-step workflows from the terminal. Define pipeline steps with shell commands, execute them in sequence, and monitor status with detailed progress tracking.

Usage

bytesagain-workflow-builder create ""
bytesagain-workflow-builder add-step  "" ""
bytesagain-workflow-builder run 
bytesagain-workflow-builder status 
bytesagain-workflow-builder list
bytesagain-workflow-builder export 
bytesagain-workflow-builder template 

Commands

  • create β€” Create a new named workflow and get its ID
  • add-step β€” Add a shell command step to a workflow
  • run β€” Execute all steps in sequence, stopping on failure
  • status β€” Show per-step execution status and output
  • list β€” List all workflows with step counts and last run time
  • export β€” Export workflow definition as JSON
  • template β€” Show starter templates (ci, deploy)
  • Examples

    bytesagain-workflow-builder create "Release Pipeline"
    bytesagain-workflow-builder add-step wf001 "Run Tests" "npm test"
    bytesagain-workflow-builder add-step wf001 "Build" "npm run build"
    bytesagain-workflow-builder add-step wf001 "Deploy" "rsync -av dist/ server:/var/www/"
    bytesagain-workflow-builder run wf001
    bytesagain-workflow-builder status wf001
    

    Requirements

  • bash
  • python3
  • When to Use

    Use when automating multi-step processes, building CI-like pipelines locally, tracking deployment steps, or managing repeatable task sequences with clear pass/fail status.

    ⚑ When to Use

    Use when automating multi-step processes, building CI-like pipelines locally, tracking deployment steps, or managing repeatable task sequences with clear pass/fail status.

    πŸ’‘ Examples

    bytesagain-workflow-builder create "Release Pipeline"
    bytesagain-workflow-builder add-step wf001 "Run Tests" "npm test"
    bytesagain-workflow-builder add-step wf001 "Build" "npm run build"
    bytesagain-workflow-builder add-step wf001 "Deploy" "rsync -av dist/ server:/var/www/"
    bytesagain-workflow-builder run wf001
    bytesagain-workflow-builder status wf001