π¦ 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,...
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 IDadd-step β Add a shell command step to a workflowrun β Execute all steps in sequence, stopping on failurestatus β Show per-step execution status and outputlist β List all workflows with step counts and last run timeexport β Export workflow definition as JSONtemplate β 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
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