bootspring visualize

Terminal-based workflow visualization.

Overview#

The visualize command provides ASCII-art visualizations of your workflows, tasks, and project status directly in the terminal.

Usage#

Loading code block...

Options#

OptionDescription
--watchLive updating view
--interval <ms>Refresh interval for watch mode (default: 2000)
--graphShow workflow dependency graph
--pipelineShow only pipeline view
--detailsShow only workflow details
--tasksShow only task overview
--jsonOutput as JSON

Examples#

Loading code block...

Views#

Pipeline View#

Shows workflow phases as a pipeline:

┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐ │ Detect │ → │ Analyze │ → │ Config │ → │ Complete │ │ ✓ │ │ ✓ │ │ ◎ │ │ ○ │ └──────────┘ └──────────┘ └──────────┘ └──────────┘

Dependency Graph#

Shows task dependencies:

┌─────────────┐ │ Setup Auth │ └──────┬──────┘ │ ┌──────▼──────┐ │ Add Routes │ └──────┬──────┘ │ ┌───────┴───────┐ ▼ ▼ ┌───────┐ ┌───────┐ │ Tests │ │ Docs │ └───────┘ └───────┘

Task Overview#

Shows task status summary:

Tasks: 5 open, 12 complete (70%) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ██████████████████████░░░░░░░░░░░░

Watch Mode#

Live mode refreshes automatically:

Loading code block...

Press Ctrl+C to exit watch mode.