coelhoxyz

Claude Code Global Config — AI skill for Claude Code

AI community

Production-ready global CLAUDE.md template for Claude Code CLI - Anthropic's AI coding assistant.

How to install Claude Code Global Config

This entry records only its repository, not the path inside it, so there is no exact command to give. Open coelhoxyz/claude-code-global-config and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Claude Code Global Config does

Production-ready global CLAUDE.md template for Claude Code CLI - Anthropic's AI coding assistant. Clean Architecture, type-safe, workflow-optimized configuration.

Alternatives in AI

README

Claude Code Global Config Template

A curated, production-ready global `CLAUDE.md` configuration for [Claude Code](https://claude.ai/code) - Anthropic's official AI coding assistant CLI.

What is CLAUDE.md?

`CLAUDE.md` is a configuration file that Claude Code automatically loads into every conversation. It provides persistent context about your coding standards, workflow preferences, and project conventions.

**Global config location:** `~/.claude/CLAUDE.md`

Features

  • Clean Architecture & Clean Code principles enforced
  • Type-safe coding with type hints requirement
  • Smart workflow - explore before implementing, plan before coding
  • Git best practices - clear commits, no credential leaks
  • Readability first - clarity over cleverness
  • Curated plugins list - recommended plugins for enhanced productivity

Quick Start

# Clone to your .claude folder
git clone https://github.com/coelhoxyz/claude-code-global-config.git ~/.claude

# Or just copy the CLAUDE.md
curl -o ~/.claude/CLAUDE.md https://raw.githubusercontent.com/coelhoxyz/claude-code-global-config/main/CLAUDE.md

Configuration

# Global Coding Standards

## Code Style
- Always follow Clean Architecture and Clean Code principles
- Use type hints on all functions
- Prefer readability over cleverness
- Destructure imports when possible

## Workflow
- Explore codebase before implementing changes
- Plan before coding on complex tasks
- Run tests after making code changes
- Prefer single test runs over full suite for performance

## Git Conventions
- Write clear, concise commit messages
- Never commit sensitive data (API keys, credentials)

## Communication
- Ask clarifying questions before architectural changes
- Explain reasoning for non-obvious decisions

Recommended Plugins

Check out [PLUGINS.md](PLUGINS.md) for a curated list of plugins:

Plugin Description
playwright Browser automation and testing
`fr