Claude Code Configuration

December 14, 2025 · View on GitHub

Personal Claude Code configuration repository containing agents, skills, commands, and coding standards for AI-assisted development workflows.

Overview

This repository provides a comprehensive configuration for Claude Code, Anthropic's CLI for Claude. It includes:

  • 100+ specialized agents organized by domain
  • 60+ reusable skills for common development tasks
  • Custom slash commands for streamlined workflows
  • Coding standards for multiple languages and frameworks

Repository Structure

.claude/
├── CLAUDE.md              # Global instructions & behavior rules
├── agents/                # Specialized AI agents by category
│   ├── 01-core-development/
│   ├── 02-language-specialists/
│   ├── 03-infrastructure/
│   ├── 04-quality-security/
│   ├── 05-data-ai/
│   ├── 06-developer-experience/
│   ├── 07-specialized-domains/
│   ├── 08-business-product/
│   ├── 09-meta-orchestration/
│   └── 10-research-analysis/
├── skills/                # Reusable skill definitions
├── commands/              # Custom slash commands
│   └── git/               # Git workflow commands
├── includes/              # Language & framework standards
└── docs/                  # Additional documentation

Agents

Agents are specialized AI assistants with domain expertise. Each agent has:

  • Defined tools and capabilities
  • Model preferences
  • Contextual expertise

Categories

CategoryDescriptionExamples
Core DevelopmentFull-stack & platform developmentbackend-developer, frontend-developer, fullstack-developer
Language SpecialistsLanguage-specific expertisepython-pro, typescript-pro, golang-pro, rust-engineer
InfrastructureDevOps, cloud, & platformkubernetes-specialist, terraform-engineer, cloud-architect
Quality & SecurityTesting, security, code reviewsecurity-engineer, qa-expert, penetration-tester
Data & AIML, data engineering, analyticsml-engineer, data-scientist, llm-architect
Developer ExperienceTooling & workflowscli-developer, build-engineer, documentation-engineer
Specialized DomainsIndustry-specificfintech-engineer, blockchain-developer, game-developer
Business & ProductNon-technical rolesproduct-manager, technical-writer, ux-researcher
Meta & OrchestrationMulti-agent coordinationworkflow-orchestrator, task-distributor
Research & AnalysisInformation gatheringresearch-analyst, competitive-analyst, market-researcher

Skills

Skills are reusable capabilities that can be invoked during conversations. Notable skills include:

  • Document Processing: pdf, docx, xlsx, pptx
  • Media: ai-multimodal, media-processing, image-enhancer
  • Development: frontend-development, backend-development, databases
  • DevOps: devops, chrome-devtools, webapp-testing
  • AI/ML: anthropic-prompt-engineer, openai-prompt-engineer
  • Utilities: changelog-generator, file-organizer, docs-seeker

Commands

Custom slash commands for common workflows:

Built-in Commands

CommandDescription
/git:cmStage all files and create a commit
/git:cpStage, commit, and push all changes
/git:prCreate a pull request
/crComprehensive code review with parallel specialist agents
/cr-fxInteractive remediation of code review findings
/exploreExhaustive codebase exploration (Opus 4.5)
/deep-researchMulti-phase research protocol (Opus 4.5)

Plugin: zircote/claude-spec

Project specification and implementation lifecycle management:

CommandDescription
/cs:pStrategic project planner with Socratic requirements elicitation
/cs:iImplementation progress tracker with PROGRESS.md checkpoints
/cs:sProject status and portfolio manager
/cs:cProject close-out and archival
/cs:logToggle prompt capture logging
/cs:wt:createCreate git worktree with Claude agent

Install via /plugin command or add marketplace to settings:

{ "pluginMarketplaces": ["github:zircote/claude-spec"] }

Includes

Environment-specific coding standards automatically loaded based on context:

EnvironmentFilePurpose
Pythonincludes/python.mdPython best practices & style
Goincludes/golang.mdGo idioms & patterns
React/TypeScriptincludes/react.mdReact & TS conventions
Gitincludes/git.mdVersion control workflows
Testingincludes/testing.mdTesting strategies
Documentationincludes/documentation.mdDoc standards
MCPincludes/mcp-reference.mdModel Context Protocol
Opus 4.5includes/opus-4-5.mdOpus 4.5 optimizations

Configuration

Global Instructions (CLAUDE.md)

The CLAUDE.md file contains:

  • Planning confidence requirements
  • MCP query pagination patterns
  • Memory agent usage guidelines
  • API response validation rules
  • Environment definitions

Ignored Files

The following are intentionally not tracked (see .gitignore):

  • Session data (history.jsonl, todos/, plans/)
  • Local settings (settings.local.json, .env)
  • IDE configurations
  • Plugins (reinstallable from marketplace)
  • Project-specific data

Usage

  1. Clone to your home directory as ~/.claude/
  2. Claude Code automatically loads CLAUDE.md for global instructions
  3. Agents and skills are available via the Task tool
  4. Slash commands work with /command:name syntax

Requirements

  • Claude Code CLI
  • Anthropic API access
  • Optional: MCP servers for extended capabilities

License

Personal configuration - adapt for your own use.