Claudeck: Browser UI for Claude Code with Agents, Cost Tracking, and Plugin System

What Claudeck Does
Claudeck is a browser-based user interface that wraps the Claude Code SDK, providing a visual interface for working with Claude Code. It's designed to not get in the way of development workflows.
Key Features and Details
Installation: One command to try it: npx claudeck@latest
1. Autonomous Agent Orchestration
- 4 built-in agents: PR Reviewer, Bug Hunter, Test Writer, Refactoring
- Agent chains and DAGs with visual dependency graph editor
- Orchestrator that auto-delegates tasks to specialist agents
- Full metrics dashboard with cost aggregation and success rates
2. Cost & Token Visibility
- Per-session cost tracking with daily timeline charts
- Input/output token breakdowns
- Streaming token counter
- Error pattern analysis across 9 categories
3. Git Worktree Isolation
- Run any chat or agent task in isolated git worktree
- Merge, diff, or discard results
- Experiment without touching working branch
4. Persistent Cross-Session Memory
- Remembers project knowledge across sessions using SQLite with FTS5 full-text search
- Auto-captures insights from conversations
- Supports manual
/remembercommands - AI-powered memory optimization via Claude Haiku
5. Full-Stack Plugin System
- 7 built-in plugins: Linear, Tasks, Repos, Claude Editor, etc.
- User plugin directory at
~/.claudeck/plugins/that persists across upgrades - Drop in a
client.jsand optionallyserver.js— no fork needed
Additional Features
- Parallel mode: 4 independent chats in 2x2 grid
- Session branching
- Message recall with
↑ - MCP server management
- Telegram notifications with AFK approve/deny
- Skills Marketplace integration
- Installable as PWA
Technical Details
- Zero framework — vanilla JS
- 6 npm dependencies
- No build step
- Works on macOS, Linux, and Windows
- MIT licensed
Links: npm: npmjs.com/package/claudeck, GitHub: github.com/hamedafarag/claudeck
📖 Read the full source: r/ClaudeAI
👀 See Also

Visual Prompting Framework Replaces Text Prompts with Single Image for Claude AI
The Carrying Capacity Principle v9 is a bidirectional structural framework that uses a single flowchart image instead of text prompts for Claude AI. It provides structural diagnosis or generative construction plans based on system parameters or goals.

MCP Server Connects Claude to Agent-to-Agent Marketplace
A developer built an MCP server that exposes five tools and two resources, allowing Claude to search, invoke, and pay for capabilities from other AI agents in a marketplace. The server includes persistent storage in an agent vault and was largely implemented using Claude Code.

EvalShift: Open-source CLI for detecting LLM regressions during model migration
EvalShift is an MIT-licensed Python CLI that compares source vs target LLM outputs across prompts, agents, and tool-calling workflows, generating a local HTML regression report.

Forge: A Claude-based IDE with automated verification and project DNA
Forge is a Claude-based IDE built on VS Code that automatically runs type checking, tests, coverage checks, and import validation before showing code. It includes self-healing loops for failed verification and builds a Project DNA of your codebase patterns.