dotclaude-config
Installation
SKILL.md
Claude Code Configuration
Work with Claude Code configuration at any level - global (~/.claude/) or project (.claude/).
First: Determine Context
Before making changes, identify where you're working and what already exists:
# Where are we?
pwd
# In a project repo or in ~/.claude itself?
[[ "$(pwd)" == "$HOME/.claude"* ]] && echo "GLOBAL" || echo "PROJECT"
# What config exists at each level?
ls -la ~/.claude/settings.json ~/.claude.json 2>/dev/null
ls -la .claude/settings.json .mcp.json 2>/dev/null