Add skill-creator, landing-page-generator, ccboard, guide-recap, and release-notes-generator with genericized content (no personal refs, FR→EN translation, placeholder URLs/paths). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2.3 KiB
2.3 KiB
| name | description | category |
|---|---|---|
| ccboard-install | Install or update ccboard | setup |
Install ccboard Command
Install or update the ccboard binary via cargo.
What is ccboard?
ccboard is a comprehensive TUI/Web dashboard for monitoring and managing Claude Code:
- 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 Analytics: Token usage and pricing tracking
- Session Explorer: Browse and search conversation history
- Dual Interface: Terminal (TUI) and Web UI
Requirements
- Rust: Version 1.70 or higher
- Cargo: Rust package manager (comes with Rust)
If Rust is not installed:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Usage
# Install ccboard
/ccboard-install
# Or manually
cargo install ccboard
Installation Process
- Checks if cargo is installed
- Detects existing ccboard installation
- Prompts for update confirmation if already installed
- Installs via
cargo install ccboard --force - Verifies installation and shows version
After Installation
Once installed, use these commands:
/dashboard- Launch TUI dashboard/mcp-status- Open MCP servers tab/costs- Open costs analysis/sessions- Browse sessions history/ccboard-web- Launch web interface
Or run directly:
ccboard # Launch TUI
ccboard web # Launch web UI
ccboard --help # Show all options
Troubleshooting
Cargo not found
# Install Rust and cargo
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# Reload shell
source $HOME/.cargo/env
Installation fails
# Update Rust toolchain
rustup update
# Try manual installation from source
git clone https://github.com/{OWNER}/ccboard
cd ccboard
cargo install --path crates/ccboard
Permission denied
# Ensure ~/.cargo/bin is in PATH
echo 'export PATH="$HOME/.cargo/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
Implementation
#!/bin/bash
# Run installation script
exec "$(dirname "$0")/../scripts/install-ccboard.sh"
Uninstallation
To remove ccboard:
cargo uninstall ccboard