Dashboard Commands

Start and manage the Bootspring real-time dashboard.

Synopsis#

Loading code block...

Description#

The dashboard provides a visual interface for monitoring your project, viewing todos, tracking workflows, and more.

Options#

OptionDescription
--port <port>Custom port (default: 3456)
--openOpen in browser automatically
--stopStop the dashboard
--statusCheck dashboard status

Usage#

Start Dashboard#

Loading code block...

Output:

Starting Bootspring Dashboard... Dashboard running at: http://localhost:3456 Press Ctrl+C to stop

Start on Custom Port#

Loading code block...

Start and Open Browser#

Loading code block...

Check Status#

Loading code block...

Output (running):

Dashboard Status ═══════════════════════════════════════════════════════════════════ Status: Running URL: http://localhost:3456 PID: 12345 Stop with: bootspring dashboard --stop

Output (stopped):

Dashboard Status ═══════════════════════════════════════════════════════════════════ Status: Stopped Start with: bootspring dashboard

Stop Dashboard#

Loading code block...

Output:

Dashboard stopped

Dashboard Features#

Project Overview#

┌─────────────────────────────────────────────────────────────────┐ │ Project: my-awesome-app │ ├─────────────────────────────────────────────────────────────────┤ │ │ │ Health: Good ● Phase: Development │ │ Stack: Next.js 14 Database: PostgreSQL │ │ │ │ Open Todos: 3 Active Workflow: feature-development │ │ Last Updated: 5m ago Bootspring: v1.2.3 │ │ │ └─────────────────────────────────────────────────────────────────┘

Todo List#

View and manage todos:

  • See pending and completed tasks
  • Mark items complete
  • Add new tasks
  • Clear completed items

Workflow Progress#

Track active workflows:

  • Current phase status
  • Progress percentage
  • Phase history
  • Artifacts generated

Agent Activity#

Monitor agent usage:

  • Recent agent invocations
  • Suggested agents for current context
  • Agent response history

Quality Metrics#

Code quality at a glance:

  • Lint status
  • Test coverage
  • Type errors
  • Security issues

Configuration#

Dashboard Settings#

Loading code block...

Running in Background#

The dashboard runs as a detached process:

Loading code block...

Troubleshooting#

Port Already in Use#

Error: Port 3456 is already in use

Solutions:

  1. Use a different port: bootspring dashboard --port 4000
  2. Stop existing process: bootspring dashboard --stop
  3. Find and kill the process: lsof -i :3456

Dashboard Not Loading#

  1. Check status: bootspring dashboard --status
  2. Restart: bootspring dashboard --stop && bootspring dashboard
  3. Check logs in .bootspring/dashboard.log

Cannot Connect#

  1. Verify URL: http://localhost:3456
  2. Check firewall settings
  3. Try different browser