Agent Tracer banner
hashika-kalisetty hashika-kalisetty

Agent Tracer

Development community

Description

A browser-based trace viewer designed to provide deep visibility into Claude Code agents and commands

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

agent-tracer

[![npm](https://img.shields.io/npm/v/agent-tracer)](https://www.npmjs.com/package/agent-tracer) [![GitHub](https://img.shields.io/badge/GitHub-hashika--kalisetty%2Fagent--tracer-blue?logo=github)](https://github.com/hashika-kalisetty/agent-tracer)

A browser-based trace viewer designed to provide deep visibility into Claude Code agents and commands. Agent-tracer offers a live, interactive view of agent hierarchies, subagents, tool calls, token usage, and cost as Claude Code operates. Sessions are automatically persisted across restarts, enabling seamless inspection and analysis of agent activity over time.

[![Watch the demo](https://img.youtube.com/vi/3iX8kQGw1VA/maxresdefault.jpg)](https://youtu.be/3iX8kQGw1VA)

Requirements

  • Node.js 18+
  • Claude Code CLI

Installing prerequisites

Node.js

**macOS / Linux / Unix**

# macOS — Homebrew
brew install node

# Ubuntu / Debian
sudo apt install -y nodejs npm

# Fedora / RHEL
sudo dnf install nodejs

# Any platform — nvm (recommended for version control)
curl -fsSL https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
nvm install --lts

# Or download a binary from https://nodejs.org

**Windows**

# winget
winget install OpenJS.NodeJS.LTS

# Or download the installer from https://nodejs.org

Verify: `node --version` should print `v18` or higher.

Claude Code

**macOS / Linux / WSL** (auto-updates)

curl -fsSL https://claude.ai/install.sh | bash

**macOS — Homebrew**

brew install --cask claude-code

Does not auto-update. Run `brew upgrade claude-code` periodically.

**Windows — PowerShell** (auto-updates)

irm https://claude.ai/install.ps1 | iex

**Windows — CMD**

curl -fsSL https://claude.ai/install.cmd -o install.cmd && install.cmd && del install.cmd

Windows requires [Git for Windows](https://git-scm.com/downloads/win) installed first.

**Windows — WinGet**

winget install Ant