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#
| Option | Description |
|---|---|
--watch | Live updating view |
--interval <ms> | Refresh interval for watch mode (default: 2000) |
--graph | Show workflow dependency graph |
--pipeline | Show only pipeline view |
--details | Show only workflow details |
--tasks | Show only task overview |
--json | Output 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 --jsonViews#
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 1000Press Ctrl+C to exit watch mode.
Related Commands#
bootspring watch- File watchingbootspring health- Health overviewbootspring status- Workflow status