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#

bootspring visualize [options]

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#

1# Full visualization 2bootspring visualize 3 4# Live updating view 5bootspring visualize --watch 6 7# Include dependency graph 8bootspring visualize --graph 9 10# Pipeline view only 11bootspring visualize --pipeline 12 13# JSON output 14bootspring visualize --json

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:

bootspring visualize --watch --interval 1000

Press Ctrl+C to exit watch mode.