@regression-io/claude-config 0.34.6 → 0.34.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@regression-io/claude-config",
3
- "version": "0.34.6",
3
+ "version": "0.34.8",
4
4
  "description": "Configuration management UI for Claude Code and Antigravity - manage MCPs, rules, commands, memory, and project folders",
5
5
  "author": "regression.io",
6
6
  "main": "config-loader.js",
@@ -1875,7 +1875,7 @@ claude-config supports multiple AI coding assistants:
1875
1875
  | Tool | Type | Config Location |
1876
1876
  |------|------|-----------------|
1877
1877
  | **Claude Code** | Terminal CLI | \`.mcp.json\`, \`~/.claude/\` |
1878
- | **Gemini CLI** | Terminal CLI | \`~/.gemini/settings.json\` |
1878
+ | **Gemini CLI** | Terminal CLI | \`.gemini/settings.json\`, \`~/.gemini/settings.json\` |
1879
1879
  | **Antigravity** | Full IDE | \`~/.gemini/antigravity/mcp_config.json\` |
1880
1880
 
1881
1881
  ### Shared MCP Registry
@@ -1898,7 +1898,11 @@ Gemini CLI is Google's terminal-based AI coding assistant, similar to Claude Cod
1898
1898
 
1899
1899
  ### Configuration
1900
1900
 
1901
- Gemini CLI settings are stored in \`~/.gemini/settings.json\`:
1901
+ Gemini CLI settings are stored in two locations:
1902
+ - **Global**: \`~/.gemini/settings.json\`
1903
+ - **Per-project**: \`.gemini/settings.json\` (in project directory)
1904
+
1905
+ When you apply config, both files are generated:
1902
1906
 
1903
1907
  \`\`\`json
1904
1908
  {
@@ -2000,17 +2004,17 @@ All tools use identical JSON format for MCP server definitions:
2000
2004
  | Feature | Claude Code | Gemini CLI | Antigravity |
2001
2005
  |---------|-------------|------------|-------------|
2002
2006
  | Type | Terminal CLI | Terminal CLI | Full IDE |
2003
- | MCP Config | \`.mcp.json\` | \`~/.gemini/settings.json\` | \`~/.gemini/antigravity/\` |
2007
+ | MCP Config | \`.mcp.json\` | \`.gemini/settings.json\` + global | \`~/.gemini/antigravity/\` |
2004
2008
  | Env Interpolation | Yes (\`\${VAR}\`) | Yes | No |
2005
2009
  | Commands | \`.claude/commands/\` | \`.gemini/commands/\` | Unknown |
2006
- | Rules | \`.claude/rules/\` | \`.gemini/\` | \`.agent/rules/\` |
2010
+ | Rules | \`.claude/rules/\` | \`.gemini/rules/\` | \`.agent/rules/\` |
2007
2011
  | Instructions | \`CLAUDE.md\` | \`GEMINI.md\` | \`GEMINI.md\` |
2008
2012
 
2009
2013
  ### What This Means
2010
2014
 
2011
2015
  - Your MCP registry is shared between all tools
2012
2016
  - When you click "Apply Config", all enabled tools get updated
2013
- - Rules can be synced between Claude Code and Antigravity
2017
+ - Rules can be synced between Claude Code, Gemini CLI, and Antigravity
2014
2018
  - Gemini CLI and Antigravity share global instructions (known conflict)
2015
2019
  `},"enabling-tools":{title:"Enabling Tools",content:`
2016
2020
  ## Enabling Tools
@@ -2045,11 +2049,11 @@ Tool preferences are stored in \`~/.claude-config/config.json\`:
2045
2049
  `},"syncing-rules":{title:"Syncing Rules",content:`
2046
2050
  ## Syncing Rules Between Tools
2047
2051
 
2048
- Sync rules between Claude Code and Antigravity to maintain consistency.
2052
+ Sync rules between Claude Code, Gemini CLI, and Antigravity to maintain consistency.
2049
2053
 
2050
2054
  ### Accessing Sync
2051
2055
 
2052
- 1. Enable **both tools** in Preferences
2056
+ 1. Enable **multiple tools** in Preferences
2053
2057
  2. Go to **Project Explorer**
2054
2058
  3. Click the **Sync** button in the toolbar
2055
2059
 
@@ -2057,7 +2061,7 @@ Sync rules between Claude Code and Antigravity to maintain consistency.
2057
2061
 
2058
2062
  The sync dialog allows you to:
2059
2063
 
2060
- - **Choose direction**: Claude Code Antigravity or vice versa
2064
+ - **Choose direction**: Any tool → Any tool (Claude Code Gemini CLI Antigravity)
2061
2065
  - **Preview changes**: See which files will be copied
2062
2066
  - **Selective sync**: Choose specific files to sync
2063
2067
  - **Status indicators**:
@@ -2067,10 +2071,13 @@ The sync dialog allows you to:
2067
2071
 
2068
2072
  ### What Gets Synced
2069
2073
 
2070
- | From | To |
2071
- |------|-----|
2072
- | \`.claude/rules/*.md\` | \`.agent/rules/*.md\` |
2073
- | \`.agent/rules/*.md\` | \`.claude/rules/*.md\` |
2074
+ | Tool | Rules Location |
2075
+ |------|----------------|
2076
+ | Claude Code | \`.claude/rules/*.md\` |
2077
+ | Gemini CLI | \`.gemini/rules/*.md\` |
2078
+ | Antigravity | \`.agent/rules/*.md\` |
2079
+
2080
+ Rules can be synced in any direction between these three tools.
2074
2081
 
2075
2082
  ### Notes
2076
2083
 
@@ -2078,7 +2085,6 @@ The sync dialog allows you to:
2078
2085
  - Target files are **overwritten** if they exist
2079
2086
  - Instructions files (CLAUDE.md / GEMINI.md) are not synced
2080
2087
  - Commands and workflows are Claude-specific (not synced)
2081
- - Gemini CLI uses different paths and is not currently included in rule sync
2082
2088
  `}},HH={keyboard:{title:"Keyboard Shortcuts",content:`
2083
2089
  ## Keyboard Shortcuts
2084
2090
 
@@ -19,7 +19,7 @@
19
19
 
20
20
  <!-- PWA Manifest -->
21
21
  <link rel="manifest" href="/manifest.json">
22
- <script type="module" crossorigin src="/assets/index-DRZeQCNB.js"></script>
22
+ <script type="module" crossorigin src="/assets/index-Cwfczv_v.js"></script>
23
23
  <link rel="stylesheet" crossorigin href="/assets/index-DoOE6TJ2.css">
24
24
  </head>
25
25
  <body>