← ClaudeAtlas

claude-code-devlisted

How to develop, modify, and extend the Claude Code codebase following its established programming style, patterns, and conventions. Use this skill whenever working on the claude-code source — adding tools, commands, utils, components, types, hooks, services, or fixing bugs. Also use when the user asks about claude-code architecture, coding standards, file organization, or wants to understand how the codebase works. This skill ensures all contributions match the existing codebase style exactly.
Vinniphonetic360/clear-code · ★ 0 · AI & Automation · score 72
Install: claude install-skill Vinniphonetic360/clear-code
# Claude Code Development Style Guide This skill captures the programming style, patterns, and conventions used in the Claude Code codebase (`@anthropic-ai/claude-code`). Each topic below links to a dedicated deep-dive document with comprehensive examples and rules extracted from the actual source. ## Summary **Claude Code** is an ESM TypeScript Node.js CLI application using Ink (React for terminals) for its UI, esbuild for transpilation, and Bun internally for feature flags and dead code elimination. Key stack: TypeScript, Zod v4, lodash-es, React/Ink, esbuild. ## Detailed Guides (Resource Files) Each topic below is covered in depth in its own resource file within this skill's directory. Read the relevant file before working on that area of the codebase. | # | Topic | File | Summary | |---|---|---|---| | 01 | **Project Overview** | `01-project-overview.md` | Tech stack, build system, runtime environment, key dependencies | | 02 | **Directory Structure** | `02-directory-structure.md` | Full `src/` layout, file organization patterns, where things go | | 03 | **Import Conventions** | `03-import-conventions.md` | `.js` extensions, `import type`, lodash cherry-picks, feature flags, cycle breaking | | 04 | **Naming Conventions** | `04-naming-conventions.md` | camelCase/PascalCase/UPPER_SNAKE rules, file naming, safety names | | 05 | **TypeScript Patterns** | `05-typescript-patterns.md` | Branded types, discriminated unions, `as const`, `satisfies`, Zod schemas, generics | |