mirror of
https://github.com/mfakbar127/Claude-Samurai
synced 2026-06-21 13:57:42 +00:00
1.6 KiB
1.6 KiB
CC config is a configuration file manager for Claude Code.
Claude Code configuration files definition
- User settings are defined in
~/.claude/settings.jsonand apply to all projects. - Project settings are saved in your project directory:
.claude/settings.jsonfor settings that are checked into source control and shared with your team.claude/settings.local.jsonfor settings that are not checked in, useful for personal preferences and experimentation. Claude Code will configure git to ignore.claude/settings.local.jsonwhen it is created.
- For enterprise deployments of Claude Code, we also support enterprise managed policy settings. These take precedence over user and project settings. System administrators can deploy policies to:
- macOS:
/Library/Application Support/ClaudeCode/managed-settings.json - Linux and WSL:
/etc/claude-code/managed-settings.json - Windows:
C:\ProgramData\ClaudeCode\managed-settings.json
- macOS:
- Enterprise deployments can also configure managed MCP servers that override user-configured servers. See Enterprise MCP configuration:
- macOS:
/Library/Application Support/ClaudeCode/managed-mcp.json - Linux and WSL:
/etc/claude-code/managed-mcp.json - Windows:
C:\ProgramData\ClaudeCode\managed-mcp.json
- macOS:
In this phase, only do the follwing tasks:
- Implement the Tauri commands and react-query/mutation that read and write the configuration files.
- A minimal UI that allows you to view and edit the configuration files.