ccsinfoQuery and analyze Claude Code session data from a remote server. Use when asked to inspect Claude Code sessions, view conversation history, check tool calls,...
Install via ClawdBot CLI:
clawdbot install myakove/ccsinfoInstall ccsinfo CLI:
Install ccsinfo CLIRequires:
Access and analyze Claude Code session data from a remote ccsinfo server running on the user's machine.
Server Repository: https://github.com/myk-org/ccsinfo
The ccsinfo server must be running on the machine that has Claude Code session data.
Install and run the server:
# Install ccsinfo
uv tool install git+https://github.com/myk-org/ccsinfo.git
# Start the server (accessible on LAN)
ccsinfo serve --host 0.0.0.0 --port 9999
The server reads Claude Code session data from ~/.claude/projects/ and exposes it via REST API.
For full server documentation, see: https://github.com/myk-org/ccsinfo
The ccsinfo CLI tool must be installed. Check if installed:
which ccsinfo
If not installed, run the installation script:
bash scripts/install.sh
Set the CCSINFO_SERVER_URL environment variable to point to your server:
export CCSINFO_SERVER_URL=http://192.168.1.100:9999
Add this to your shell profile (.bashrc, .zshrc, etc.) to persist across sessions.
All commands automatically connect to the remote server via $CCSINFO_SERVER_URL.
ccsinfo sessions list
ccsinfo sessions show <session-id>
ccsinfo sessions messages <session-id>
ccsinfo search sessions "search term"
ccsinfo stats global
ccsinfo sessions list
ccsinfo sessions show <id>
ccsinfo sessions messages <id>
ccsinfo sessions tools <id>
# Search across all sessions
ccsinfo search sessions "refactor"
# Search message content
ccsinfo search messages "fix bug"
# Search prompt history
ccsinfo search history "implement feature"
# Show all pending tasks
ccsinfo tasks pending
# List tasks for a session
ccsinfo tasks list -s <session-id>
# Show specific task details
ccsinfo tasks show <task-id> -s <session-id>
# Overall usage stats
ccsinfo stats global
# Daily activity breakdown
ccsinfo stats daily
# Analyze trends over time
ccsinfo stats trends
# List all projects
ccsinfo projects list
# Show project details
ccsinfo projects show <project-id>
# Project statistics
ccsinfo projects stats <project-id>
Most commands support --json for machine-readable output:
ccsinfo sessions list --json
ccsinfo stats global --json
This is useful for parsing results programmatically or filtering with jq.
Session IDs support partial matching - use the first few characters:
ccsinfo sessions show a1b2c3 # matches a1b2c3d4-e5f6-7890-abcd-ef1234567890
For complete command reference, see cli-commands.md.
# Verify server URL is set
echo $CCSINFO_SERVER_URL
# Test connection (list sessions)
ccsinfo sessions list
# Check if ccsinfo is installed
which ccsinfo
# Check version
ccsinfo --version
bash scripts/install.sh
AI Usage Analysis
Analysis is being generated⦠refresh in a few seconds.
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
Provides a 7-step debugging protocol plus language-specific commands to systematically identify, verify, and fix software bugs across multiple environments.
A comprehensive skill for using the Cursor CLI agent for various software engineering tasks (updated for 2026 features, includes tmux automation guide).
Write, run, and manage unit, integration, and E2E tests across TypeScript, Python, and Swift using recommended frameworks.
Control and operate Opencode via slash commands. Use this skill to manage sessions, select models, switch agents (plan/build), and coordinate coding through Opencode.
Coding style memory that adapts to your preferences, conventions, and patterns for consistent coding.