- Add session-summary-v3.png screenshot for hook documentation - Add GitHub issue templates (bug report, feature request, question) - Add new skills: ccboard, guide-recap, landing-page-generator, release-notes-generator, skill-creator Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1.3 KiB
1.3 KiB
| name | description | category |
|---|---|---|
| dashboard | Launch ccboard TUI dashboard | monitoring |
Dashboard Command
Launch the interactive ccboard TUI to visualize and monitor your Claude Code usage.
Features
- 8 Interactive Tabs: Dashboard, Sessions, Config, Hooks, Agents, Costs, History, MCP
- Real-time Monitoring: File watcher for live updates
- MCP Management: Server status and configuration
- Cost Tracking: Token usage and pricing analytics
- Session Explorer: Browse and search conversation history
- File Editing: Press
eto edit files in $EDITOR
Usage
# Launch TUI dashboard
/dashboard
# Alternative: run directly
ccboard
Navigation
1-8: Jump to specific tabTab/Shift+Tab: Navigate tabsq: QuitF5: Refresh datae: Edit selected fileo: Reveal file in finder
Requirements
ccboard must be installed. If not installed, run:
/ccboard-install
Implementation
#!/bin/bash
# Check if ccboard is installed
if ! command -v ccboard &> /dev/null; then
echo "❌ ccboard is not installed"
echo ""
echo "Install with:"
echo " /ccboard-install"
echo ""
echo "Or manually:"
echo " cargo install ccboard"
exit 1
fi
# Launch ccboard TUI
exec ccboard