NikiforovAll

Ccdashboard — Development skill for Claude Code

Development community

OpenTelemetry visualization for Claude Code.

How to install Ccdashboard

This entry records only its repository, not the path inside it, so there is no exact command to give. Open NikiforovAll/ccdashboard and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Ccdashboard does

OpenTelemetry visualization for Claude Code.

Alternatives in Development

  • Chart Master — Chart Master — Financial Visualization Agent 192 ★
  • Work Graph — Generate dependency graph visualization for work items 62 ★
  • Viz — Visualization Development 52 ★

README

ccdashboard

![ccdashboard banner](assets/cover.png)

A CLI tool to manage observability dashboards for Claude Code telemetry visualization.

Features

  • Grafana Stack (default): Grafana + Prometheus + OpenTelemetry Collector with pre-configured dashboards
  • Aspire Dashboard: Lightweight .NET Aspire Dashboard option
  • Auto-detects Podman or Docker
  • Both stacks can run simultaneously
  • Auto-provisioned Grafana dashboards

Prerequisites

  • Container runtime: Either Podman or Docker
  • Bash: Works on Linux, macOS, and Windows (via Git Bash/WSL)

Installation

# Clone or download the repository
git clone 
cd ccdashboard
chmod +x ccdashboard

# Optionally add to PATH
ln -s $(pwd)/ccdashboard ~/.local/bin/ccdashboard

Quick Start

Grafana Stack (Default)

# Start Grafana + Prometheus + OTel Collector
./ccdashboard start

# Enable Claude Code telemetry
eval "$(./ccdashboard env)"

# Open Grafana dashboard at http://localhost:3000 (admin/admin)

Aspire Dashboard

# Start Aspire Dashboard
./ccdashboard aspire start

# Enable Claude Code telemetry
eval "$(./ccdashboard aspire env)"

# Dashboard URL will be printed in the logs

Usage

Command Structure

ccdashboard [stack] [command]

**Stacks:**

  • grafana - Grafana + Prometheus + OTel Collector (default)
  • aspire - .NET Aspire Dashboard

**Commands:**

  • start - Start the dashboard (default)
  • stop - Stop the dashboard
  • restart - Restart the dashboard
  • status - Show dashboard status
  • env - Print environment variables for sourcing
  • help - Show help message

Examples

# Grafana (default)
./ccdashboard                        # Start Grafana stack
./ccdashboard grafana start          # Explicit Grafana start
./ccdashboard status                 # Check Grafana status
./ccdashboard stop                   # Stop Grafana stack
eval "$(./ccdashboard env)"