Claude code 10

How to set up Claude Code tools

Issue #1033

Claude Code is Anthropic’s CLI for coding with AI. Getting a good setup makes a real difference — the right terminal, hooks for awareness, and the right tools to keep Claude running until the job is done.

Terminal

Ghostty is a fast, …

How to use Claude Code hooks

Issue #1032

Claude Code runs fast. Sometimes too fast — you walk away, come back, and have no idea if it finished or is still working. Hooks solve this.

A hook is a shell command that runs automatically at specific points in Claude’s lifecycle. …

How to run Claude Code indefinitely

Issue #1031

Claude Code is good at completing tasks, but it stops when it thinks it’s done. For small, well-scoped work that’s fine. For larger projects — building out a feature, getting a test suite green, or scaffolding an entire app — …

How to use beads to manage tasks with Claude Code

Issue #1030

Most task systems give Claude a flat list and hope for the best. Beads is different. It tracks dependencies between tasks and only surfaces work that is actually ready — no blockers, no wasted effort.

Let’s use beads via its CLI …

How to use claude-mem to retrieve previous context in Claude Code

Issue #1029

Claude Code ships with two built-in memory systems. CLAUDE.md lets you write persistent instructions. Auto memory lets Claude write its own notes across sessions. Understanding both — and then knowing when to add claude-mem on top — is …

How to delegate tasks in parallel with sub agents and worktree in Claude Code

Issue #1028

Running one Claude session at a time is fine for small tasks. For larger work — building a feature while fixing a bug, writing tests while refactoring — you need parallelism. Claude Code provides two tools for this: sub-agents and git …

What we can learn from Claude Code source leak

Issue #1027

On March 31, 2026, Anthropic accidentally shipped a 59.8MB sourcemap file with a routine update to Claude Code. The file, bundled into npm package version 2.1.88, exposed nearly 2,000 files and 500,000 lines of source code to anyone who …

How to use Claude Code with tips from Boris Cherny

Issue #1026

Boris Cherny created Claude Code. He also uses it more heavily than almost anyone. He runs dozens of sessions at once, automates team workflows, and uses features most developers haven’t tried. These are his techniques.

Run Multiple …

What AI tools to use with Claude Code

Issue #1021

Claude Code has built-in memory, but power users want more. These tools add deeper context tracking, task management, and access to the wider ecosystem.

Context & Memory

Tools that help Claude remember.

claude-mem

Saves what Claude …

How to connect MCP server in Claude Code

Issue #1008

Model Context Protocol (MCP) allows Claude Code to connect to external tools, databases, and services. See the official MCP documentation for more details.

Scopes and Configuration Storage

MCP servers have three scope levels that …