TOKREPO · TOOL
Claude Code logo
CLI · Anthropic

Claude Code

claude.com

What it is

Claude Code is the official Anthropic CLI agent for coding. It runs inside your terminal — any shell, any project — and gives Claude full access to read files, run commands, edit code, and orchestrate long-running multi-step plans. Released in late 2024 by a small team led by Boris Cherny, it became the reference implementation for "agent that works in your real environment, not a sandbox."

It is the tool to reach for when:

  • You want headless agent runs (CI, cron, long refactors).
  • You need a real shell, real filesystem, real git — not a webapp sandbox.
  • You want to compose subagents, slash commands, and hooks instead of mega-prompts.

Why it stands out

Feature What it gives you
Native MCP First-class Model Context Protocol — every MCP server in the ecosystem works
Subagent system .claude/agents/*.md files that Claude dispatches to automatically
Slash commands .claude/commands/*.md with named, parameterized prompts
Hooks Run shell commands on tool-use events (formatters, linters, audit logs)
Plugins A growing marketplace including Anthropic-official plugins like Ralph Wiggum
Headless mode --print, --continue, --resume for CI and scripting
1M context Opus 4.6 / 4.7 with 1M token window for large codebases

How to install

# macOS / Linux / WSL
curl -fsSL https://claude.com/install | bash

# Or via npm
npm install -g @anthropic-ai/claude-code

After install, run claude in any project directory. The first run prompts for your Anthropic API key (Pro plan or pay-as-you-go) and writes a .claude/settings.json template.

What to install in Claude Code

The Claude Code surface is intentionally minimal — the value comes from what you put in .claude/. Three packs cover the day one set:

  • MCP Server Stack — Chrome DevTools, Postgres, Filesystem, GitHub, and the rest
  • Boris Cherny Files — Ralph Wiggum loop + code-simplifier + 5 community subagents
  • Awesome Claude Code Subagents — 130 subagent collection + 8 production picks

Install the three with tokrepo install and you have the same baseline most senior Claude Code users start from.

Common pitfalls

  • Forgetting --max-iterations on Ralph Wiggum loops — burn-token risk. Always cap.
  • MCP scope set to home dir — agent reads ~/.ssh/. Always pass project root.
  • Mixing --continue with edited prompts--resume is the safe option when you want to keep the conversation but change instructions.
  • Hook scripts that hang on stdin — Claude Code waits for them; always close stdin in shell hooks.
10assets·6skills·3configs·1MCPs
All assets

10 assets that work with Claude Code

Config#01
Claude Code Templates — 600+ Agents, Commands & MCPs

Ready-to-use Claude Code configurations: 600+ agents, 200+ commands, 55+ MCPs, and project templates. Install any template with one command.

by TokRepo Curated·342 views
$ tokrepo install claude-code-templates-600-agents-commands-mcps-1cf2f5bc
MCP#02
Pal MCP Server — Multi-Model AI Gateway for Claude Code

MCP server that lets Claude Code use Gemini, OpenAI, Grok, and Ollama as a unified AI dev team. Features model routing, CLI-to-CLI bridge, and conversation continuity across 7+ providers.

by TokRepo Curated·260 views
$ tokrepo install pal-mcp-server-multi-model-ai-gateway-claude-code-09c904b2
Skill#03
Claude SEO — Complete SEO Skill for Claude Code

Universal SEO analysis skill with 15 sub-skills and 12 parallel subagents. Covers technical SEO, E-E-A-T, schema markup, GEO/AEO, local SEO, Google APIs, and PDF reporting. MIT license, 4,000+ stars.

by Skill Factory·165 views
$ tokrepo install claude-seo-complete-seo-skill-claude-code-cb068086
Skill#04
CC Status Board — Smart Status Bar for Claude Code

Add a context meter, AI asset discovery, and session info to your Claude Code status bar. Scans 300+ installed assets (skills, agents, MCP, plugins) and surfaces the most relevant ones as you type. Zero token cost, 100% local.

by henuwangkai·164 views
$ tokrepo install cc-status-board-smart-status-bar-claude-code-e7e9ac68
Skill#05
Get Shit Done (GSD) — Meta-Prompting Dev System for Claude Code

A spec-driven development system with 48.6k GitHub stars. Adds phase-based planning, multi-agent execution, verification gates, and state persistence to Claude Code, Cursor, Gemini CLI and 9 more runtimes. Install with one npx command.

by henuwangkai·150 views
$ tokrepo install get-shit-done-gsd-meta-prompting-dev-system-claude-code-e108cf5c
Config#06
Claude Code Hooks — Automate Pre/Post Task Actions

Complete guide to Claude Code hooks for automating actions before and after tool calls. Set up linting, testing, notifications, and custom validation with shell commands.

by Skill Factory·135 views
$ tokrepo install claude-code-hooks-automate-pre-post-task-actions-ba645a85
Skill#07
Claude Code Agent: K8s Specialist — Kubernetes Operations

Claude Code agent for Kubernetes. Deployment configs, helm charts, troubleshooting, scaling, monitoring, and cluster management.

by Skill Factory·131 views
$ tokrepo install claude-code-agent-k8s-specialist-kubernetes-operations-cc023b17
Skill#08
Awesome Claude Code Subagents — 130+ Specialized Agents

Install 130+ specialized Claude Code subagents across 10 categories: core dev, language experts, infra, security, data/AI, DevEx, and business. Plugin-based with 16.7K GitHub stars.

by Skill Factory·130 views
$ tokrepo install awesome-claude-code-subagents-130-specialized-agents-0929e53d
Config#09
Claude Code CLAUDE.md — Best Practices Template

Production-tested CLAUDE.md template for Claude Code projects. Covers coding conventions, test requirements, git workflow, and project-specific AI instructions.

by Skill Factory·122 views
$ tokrepo install claude-code-claude-md-best-practices-template-b152c845
Skill#10
Ralph Wiggum — Anthropic Official Autonomous Loop Plugin

Official Anthropic plugin that turns Claude Code into an autonomous loop. Adds /ralph-loop and /cancel-ralph for long-running self-improving task execution.

by Anthropic·66 views
$ tokrepo install ralph-wiggum-anthropic-official-autonomous-loop-plugin-5920075d
FAQ

Frequently asked questions

Is Claude Code free?

Claude Code itself is free and open source. You pay for the Claude API tokens it consumes — either via the Anthropic Pro/Team plan (subscription with monthly token quota) or pay-as-you-go API credits. Pricing on claude.com/pricing.

Does Claude Code work on Windows?

Yes via WSL2. Native Windows support shipped in early 2026 but WSL2 remains the smoothest experience because Claude Code uses POSIX shell conventions for hooks and tool calls.

What's the difference between Claude Code and the claude.ai web app?

Claude.ai is a chat interface. Claude Code is an agent — it can read your files, run shell commands, edit code, and chain multi-step actions in your real environment. Claude Code uses the same models (Opus / Sonnet) but with the agent harness wrapped around them.

Can I use Claude Code with another model (Gemini, GPT)?

Officially, no — it ships pointing at Anthropic's API. Community projects let you swap in OpenRouter or local models, but compatibility with Claude Code's tool-use format is tool-specific. The official path is Anthropic models.

Does Claude Code work with monorepos?

Yes. The 1M-context Opus 4.7 build handles repos up to ~500k LOC in a single session. For larger, structure work via subagents that target specific paths, or use the search-specialist subagent for retrieval-then-edit flows.

MORE TOOLS

Browse every tool on the home page

8 tools curated · favicon-fetched logos · type-aware bundles

Back to all tools