Show HN: ccsettings – a tool to simplify and share Claude Code's settings.json

1 dyoshikawa 1 7/30/2025, 4:13:00 AM github.com ↗

Comments (1)

dyoshikawa · 1d ago
I'm working on multiple projects, and I found it really tedious to configure .claude/settings.json every time. So, I created a Node.js CLI tool called ccsettings to solve this. It's super easy for anyone to get started with. Feel free to give it a try!

https://github.com/dyoshikawa/ccsettings

Simple Usage:

``` # Apply casual template to .claude/settings.json npx ccsettings apply --template casual

# Apply casual template to .claude/settings.local.json npx ccsettings apply --template casual --local

# Apply local template npx ccsettings apply --file /path/to/my-settings.json

# Apply template from GitHub URL npx ccsettings apply --url https://github.com/owner/repo/blob/main/my-settings.json ```