Claude Code
Claude Code: Deep Coding at Terminal Velocity \ Anthropic
- I Tested Claude Code for a Week - Here's What I Found
- GitHub - thedotmack/claude-mem: A Claude Code plugin that automatically captures everything Claude does during your coding sessions, compresses it with AI (using Claude's agent-sdk), and injects relevant context back into future sessions. ⭐ 45k
- ccusage
- I Spent 2000 Hours Coding With LLMs in 2025. Here are my Favorite Claude Code Usage Patterns : r/ClaudeAI
- Code Review for Claude Code | Claude
- Using Claude Code Remote Control - YouTube
claude remote-control- Only available with
claude loginand not with VertexAI
- Auto mode for Claude Code | Claude
- Auto mode provides a safer long-running alternative to --dangerously-skip-permissions.
- Claude Code on Google Vertex AI - Claude Code Docs
Claude Code Features
- CLAUDE.md: A project memory file to define custom rules and conventions. Claude reads at the start of every session.
- Permissions: Control which tools Claude can and can't use.
- Plan Mode: Claude plans before it acts. You can review them before any code changes.
- Checkpoints: Automatic snapshots of your project to revert to if something goes wrong.
- Skills: Reusable instruction files Claude follows automatically.
- Hooks: Run custom shell scripts on lifecycle events like PreToolUse or PostToolUse.
- MCP: Connect Claude to any external tools like databases and third-party services.
- Plugins: Extend Claude with third-party integrations containing skills, MCPs, and hooks.
- Context: Feed Claude what it needs and manage the current context window with /context.
- Slash Commands: Create shortcuts for tasks you run often. Type / and pick from your saved commands.
- Compaction: Compress long conversations to save tokens.
- Subagents: Spawn parallel agents for complex tasks. Divide large multi-step workflows and run them simultaneously.
Commands
brew install --cask claude-code
claude
claude --login
claude --think
# Print Mode: Runs a one-off task (e.g., "fix tests") and exits.
claude -p "query"
- /compact: Manually shrinks the conversation history to save tokens while preserving key context.
- /init: Initializes a
CLAUDE.mdfile in your project to store local coding standards and instructions. - /model: Quickly switch between models (e.g., switching to
haikufor fast tasks oropusfor complex logic). - /review: Triggers a code review of your current changes or a specific file.
- /rewind: (Double-tap
Escor type/rewind) Opens a menu to undo recent code changes or revert the conversation. - /mcp: Manages Model Context Protocol servers (connecting Claude to tools like Jira, Slack, or databases).
- /clear: This wipes the old context
- /powerup: interactive lessons teaching Claude Code features with animated demos
Monitoring
- /cost: It will display a breakdown of Input Tokens, Output Tokens, and Cache Hits/Misses, along with a total USD estimate for the current session.
- /stats: Displays your current token usage and rate limit status.
# Install directly from PyPI with uv (easiest)
uv tool install claude-monitor
# Run from anywhere
claude-monitor # or cmonitor, ccmonitor for short
Conversations - ~/.claude/projects/
npm install -g @kimuson/claude-code-viewer
claude-code-viewer --port 3400
GSD
GSD 2.0
The original GSD was a collection of markdown prompts installed into ~/.claude/commands/. It relied entirely on the LLM reading those prompts and doing the right thing. That worked surprisingly well — but it had hard limits:
- No context control. The LLM accumulated garbage over a long session. Quality degraded.
- No real automation. "Auto mode" was the LLM calling itself in a loop, burning context on orchestration overhead.
- No crash recovery. If the session died mid-task, you started over.
- No observability. No cost tracking, no progress dashboard, no stuck detection.
GSD v2 solves all of these because it's not a prompt framework anymore — it's a TypeScript application that controls the agent session.
npm install -g gsd-pi@latest
# From within the project directory
/gsd migrate
# Or specify a path
/gsd migrate ~/projects/my-old-project
/gsd auto
`/gsd` and `/gsd next` # — Step Mode
GSD - Get Shit Done | AI Coding Framework
GSD 1.0
# start claude
claude --dangerously-skip-permissions
claude --enable-auto-mode
/gsd:update
/gsd:autonomous
/gsd:new-project
/gsd:discuss-phase 1
/gsd:plan-phase 1
/gsd:execute-phase 1
/gsd:verify-work 1
/gsd:resume-work
/gsd:do
/gsd:quick
/gsd:fast
/gsd:new-milestone
/gsd:stats
/gsd:progress
/gsd:settings
/gsd:settings workflow.skip_discuss false
/gsd:autonomous
# see all workflows of GSD
ls ~/.claude/get-shit-done/workflows/
~/.gsd/defaults.json
{
"mode": "yolo",
"granularity": "coarse",
"model_profile": "balanced",
"commit_docs": true,
"parallelization": true,
"git": {
"branching_strategy": "none",
"quick_branch_template": null
},
"workflow": {
"research": false,
"plan_check": false,
"verifier": false,
"auto_advance": true,
"nyquist_validation": false,
"ui_phase": false,
"ui_safety_gate": false,
"research_before_questions": true,
"skip_discuss": true
},
"hooks": {
"context_warnings": false
}
}
Agent System Overview - Get Shit Done
Others / Agents / Skills
- GitHub - affaan-m/everything-claude-code: The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond. · GitHub ⭐ 141k
- GitHub - garrytan/gstack: Use Garry Tan's exact Claude Code setup: 15 opinionated tools that serve as CEO, Designer, Eng Manager, Release Manager, Doc Engineer, and QA · GitHub ⭐ 65k
- GitHub - obra/superpowers: An agentic skills framework & software development methodology that works. · GitHub ⭐ 136k
- GitHub - bytedance/deer-flow: An open-source long-horizon SuperAgent harness that researches, codes, and creates. With the help of sandboxes, memories, tools, skill, subagents and message gateway, it handles different levels of tasks that could take minutes to hours. · GitHub ⭐ 58k
- GitHub - openclaw/openclaw: Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞 · GitHub ⭐ 349k
- GitHub - msitarzewski/agency-agents: A complete AI agency at your fingertips - From frontend wizards to Reddit community ninjas, from whimsy injectors to reality checkers. Each agent is a specialized expert with personality, processes, and proven deliverables. · GitHub ⭐ 72k
- GitHub - FujiwaraChoki/MoneyPrinterV2: Automate the process of making money online. · GitHub ⭐ 29k
- Documentations
- Use docs programmatically - Docs by LangChain
- GitHub - langchain-ai/langchain-skills · GitHub ⭐ 492
npx skills add langchain-ai/langchain-skills --skill '*' --yes --global
- Superpowers VS. GSD VS. Others.
- GitHub - nidhinjs/prompt-master: A Claude skill that writes the accurate prompts for any AI tool. Zero tokens or credits wasted. Full context and memory retention · GitHub
Frontend Agents
- GitHub - microsoft/playwright-mcp: Playwright MCP server · GitHub ⭐ 30k
claude mcp add playwright npx @playwright/mcp@latest
claude plugin install frontend-design@claude-plugins-officialclaude plugin install context7@claude-plugins-officialclaude plugin install code-simplifier@claude-plugins-official- GitHub - ChromeDevTools/chrome-devtools-mcp: Chrome DevTools for coding agents · GitHub ⭐ 33k
/plugin marketplace add ChromeDevTools/chrome-devtools-mcp/plugin install chrome-devtools-mcp- Ex - Check the performance of https://developers.chrome.com
- GitHub - browserbase/skills: Claude Agent SDK with a web browsing tool · GitHub
- How frontend developer is using Claude Code for automated UI bug fixing and browser testing?
Codebase
- GitHub - yasasbanukaofficial/claude-code: 🚀 Open source Claude Code CLI source code. Advanced AI Agent for developers. Includes TypeScript codebase for LLM tool-calling, agentic workflows, and terminal UI. Remember this is just the skeleton not the brain itself. Found by Chaofan Shou. · GitHub ⭐ 407
- GitHub - codeaashu/claude-code: Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands. · GitHub ⭐ 746
- Reddit - Claude Code Source Leak Megathread