Cc Tools banner
Veraticus Veraticus

Cc Tools

Testing community intermediate

Description

High-performance Go implementation of Claude Code utilities. Provides statusline generation and MCP management with minimal overhead.

Installation

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

README

cc-tools

High-performance Go implementation of Claude Code utilities. Provides statusline generation and MCP management with minimal overhead.

Features

📊 Rich Statusline

  • Model & cost tracking - Current model, token usage, running costs
  • Git awareness - Branch, dirty status, uncommitted file count
  • Environment context - Kubernetes cluster, AWS profile, custom workspace
  • Visual indicators - Token usage bars, color-coded states
  • Performance - Cached results with 20-second refresh

🎛️ Development Controls

  • MCP management - Enable/disable context servers per-project
  • Debug logging - Detailed execution logs for troubleshooting
  • No daemon required - Direct execution, no background processes

Installation

Claude Code Hooks

cc-tools provides the statusline hook that you can use in Claude Code itself.

  • cc-tools-statusline - Generates the rich statusline

Download Pre-built Binaries

Download the latest release from [GitHub Releases](https://github.com/Veraticus/cc-tools/releases):

# Download and extract binaries
wget https://github.com/Veraticus/cc-tools/releases/latest/download/cc-tools-linux-amd64.tar.gz
tar -xzf cc-tools-linux-amd64.tar.gz

# Move to ~/.claude/bin/ (or any directory in your PATH)
mkdir -p ~/.claude/bin
mv cc-tools-statusline ~/.claude/bin/
chmod +x ~/.claude/bin/cc-tools-*

Build from Source (NixOS)

# Build with Nix
nix-build

# Copy the required binaries
cp ./result/bin/cc-tools-statusline ~/.claude/bin/

Build from Source (Go)

# Build all binaries
make build

# Copy the required binaries
cp build/cc-tools-statusline ~/.claude/bin/

Claude Code Configuration

Add to your `~/.claude/settings.json`:

{
  "statusLine": {
    "type": "command",
    "command": "~/.claude/bin/cc-tools-statusline",
    "padding": 0
  }
}

Control Commands

...