npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@qingwave/cclens

v0.2.0

Published

Visual dashboard & CLI for Claude Code — manage agents, sessions, skills, and configs from UI or terminal.

Readme

What is Claude Code Lens?

This project is a fork of claude-code-agents-ui originally created by Ngxba.

Open-source visual orchestration for Claude Code

If Claude Code is the engine, CCLens is the dashboard

Claude Code Lens is a Nuxt 3-based visual dashboard and CLI tool for managing Claude Code agents, commands, skills, workflows, and plugins. It provides a GUI layer and terminal-native CLI on top of the ~/.claude directory, allowing users to create, edit, and organize their Claude Code configuration without touching markdown files directly.

It looks like a studio — but under the hood it has relationship graphs, real-time metrics, visual workflow builders, and terminal emulation.

Manage your agents visually, not through scattered markdown.

| | Step | Example | | ------ | --------------- | ------------------------------------------------------------------ | | 01 | Define the agent | Create a "Senior Frontend" agent with specific instructions. | | 02 | Build skills | Import or create custom tools and capabilities for your team. | | 03 | Run & Monitor | Execute commands in the terminal and watch real-time metrics. |

COMING SOON: Desktop App — Run CCLens as a standalone desktop application for even tighter integration with your local environment.

If it's in your .claude folder, it's here.

CCLens is right for you if

  • ✅ You want a visual way to manage your Claude Code agents
  • ✅ You coordinate many different commands and skills and want to see how they connect
  • ✅ You want to monitor token usage and costs in real-time
  • ✅ You want to build multi-step workflows visually instead of manually chaining agents
  • ✅ You want a clean, real-time chat interface for testing agent behaviors
  • ✅ You find editing scattered .claude files cumbersome or disorganized

Features

Quickstart

Install globally (recommended)

# npm
npm install -g @qingwave/cclens && cclens

# bun
bun install -g @qingwave/cclens && cclens

Open http://localhost:3030 — CCLens will automatically load your ~/.claude setup.

Requirements: Node.js 22+

Try without installing

npx @qingwave/cclens
# or
bunx @qingwave/cclens

Run from source

git clone https://github.com/qingwave/claude-code-lens.git
cd claude-code-lens
bun install
bun run dev

Requirements: Bun and Node.js 22+

CLI Mode

No server needed. Run commands directly from your terminal:

cclens -s "fix login bug"       # Search sessions by content, select to resume
cclens sessions                 # Browse recent sessions, select to resume
cclens export "auth bug" -o out.md  # Export a session to markdown
cclens cleanup                  # Remove empty sessions
cclens projects                 # List all projects
cclens rename ~/work/old ~/work/new  # Rename a project in ~/.claude
cclens agents                   # List agents
cclens skills / commands / workflows / plugins / memory / mcp
cclens stats                    # Overview: tokens, cost, activity
cclens -h                       # Show all commands

Problems CCLens solves

| Without CCLens | With CCLens | | ------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | | ❌ You edit scattered markdown files in ~/.claude and lose track of which agent uses which skill. | ✅ A single visual control layer shows you exactly how everything connects with relationship graphs. | | ❌ You have no visibility into how many tokens you're using or what the actual cost of a session is until it's over. | ✅ Real-time metrics surface token usage and costs as they happen, helping you stay within budget. | | ❌ Chaining agents together requires manual coordination and jumping between multiple terminal windows. | ✅ Visual workflow builder lets you chain agents into pipelines and inspect intermediate results easily. | | ❌ Testing a new prompt or agent behavior requires re-running CLI commands and manually parsing output. | ✅ Agent Studio provides a clean chat interface with SSE streaming for instant feedback and debugging. | | ❌ Finding and importing community skills is a manual process of cloning repos and copying files. | ✅ GitHub import flow lets you point to a repo and choose which skills to import directly into your setup. |

Why CCLens is special

CCLens handles the visual orchestration of Claude Code correctly.

| | | | --------------------------------- | ------------------------------------------------------------------------------------------------------------- | | Real-time Context Monitoring. | Tracks tokens, costs, file changes, and tool calls as they happen in your terminal sessions. | | Visual Relationship Mapping. | Automatically detects links between agents, commands, and skills to build a live dependency graph. | | Native Claude Code Integration.| Built directly on top of the @anthropic-ai/claude-agent-sdk for authentic agent interactions. | | SSE-powered Agent Studio. | Streams agent thinking, tool use, and text deltas for a responsive, real-time testing experience. | | Workflow Visualization. | Models complex AI pipelines as nodes and edges, making multi-step processes easy to understand. | | Zero-Config Data Layer. | Directly reads and writes to your existing ~/.claude directory—no new database or account required. |

What CCLens is not

| | | | ---------------------------- | -------------------------------------------------------------------------------------------------------------------- | | Not a replacement for CLI.| It's a GUI companion. You can still use the Claude CLI alongside it whenever you want. | | Not an LLM provider. | We don't provide models. CCLens uses your existing Anthropic API keys and Claude Code setup. | | Not a general-purpose IDE.| It's specifically optimized for the Claude Code ecosystem and .claude configurations. | | Not a hosted service. | CCLens runs locally on your machine for maximum privacy and access to your local files. |

FAQ

Where is my data stored? Everything is stored in your standard ~/.claude directory. CCLens reads and writes directly to those files.

Do I need a separate Anthropic API key? CCLens uses the same environment variables as your Claude Code setup. If anthropic is configured in your shell, CCLens will find it.

Can I still use the CLI? Yes! CCLens is a companion. Changes you make in the UI reflect in your .claude files immediately, and vice versa.

How does the relationship graph work? It scans your agent, command, and skill files for references to each other (like agent: in frontmatter or /command in text) and builds the graph dynamically.

Development

bun run dev          # Start dev server at http://localhost:3030
bun run build        # Build for production
bun run preview      # Preview production build
bun run typecheck    # Run TypeScript type checking

Roadmap

  • ✅ Visual Agent Editor
  • ✅ Relationship Graph
  • ✅ Workflow Builder
  • ✅ GitHub Skill Import
  • ✅ Real-time Metrics (Tokens/Cost)
  • ✅ Integrated Terminal Emulator
  • ✅ Chat-based Agent Studio
  • ✅ Marketplace & Plugin System
  • ✅ CLI Mode (search, sessions, agents, memory, stats...)
  • ⚪ Desktop Application
  • ⚪ Artifacts & Deployments
  • ⚪ Multiple Session History

Community & Contributing

We welcome contributions! See the CONTRIBUTING.md for details.

Star History

Star History Chart

License

MIT © 2026 qingwave, based on claude-code-agents-ui by Ngxba