coder-config 0.52.2-beta → 0.52.3-beta
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/README.md
CHANGED
|
@@ -487,7 +487,7 @@ claude plugin install python-support@claude-config-plugins
|
|
|
487
487
|
1. Open Project Explorer
|
|
488
488
|
2. Click the **+** menu on any project folder
|
|
489
489
|
3. Select **Install Plugins**
|
|
490
|
-
4. Toggle plugins on/off with scope selection (
|
|
490
|
+
4. Toggle plugins on/off with scope selection (Local/User)
|
|
491
491
|
|
|
492
492
|
### Plugin Directory
|
|
493
493
|
|
|
@@ -528,19 +528,21 @@ mcp__github__* # All GitHub MCP tools
|
|
|
528
528
|
```
|
|
529
529
|
|
|
530
530
|
### Model Selection
|
|
531
|
-
Choose your preferred Claude model (Sonnet 4,
|
|
531
|
+
Choose your preferred Claude model (Opus 4.6, Sonnet 4.6, Haiku 4.5) and effort level (low/medium/high).
|
|
532
532
|
|
|
533
533
|
### Behavior
|
|
534
|
-
-
|
|
535
|
-
-
|
|
536
|
-
-
|
|
534
|
+
- Show thinking summaries
|
|
535
|
+
- Voice dictation
|
|
536
|
+
- Auto memory
|
|
537
|
+
- Enable all project MCP servers
|
|
538
|
+
- Output style, default shell, CLAUDE.md excludes
|
|
537
539
|
|
|
538
540
|
## Gemini CLI Settings
|
|
539
541
|
|
|
540
542
|
The Web UI provides a visual editor for `~/.gemini/settings.json`:
|
|
541
543
|
|
|
542
544
|
### Model Selection
|
|
543
|
-
Choose Gemini model (
|
|
545
|
+
Choose Gemini model (Auto, Gemini 3.1 Pro, 3 Flash, 2.5 Pro, etc.).
|
|
544
546
|
|
|
545
547
|
### Display Options
|
|
546
548
|
Configure theme, token count display, diff view, and streaming.
|
|
@@ -679,7 +681,7 @@ npm start
|
|
|
679
681
|
|
|
680
682
|
### Testing
|
|
681
683
|
|
|
682
|
-
The project has comprehensive test coverage with
|
|
684
|
+
The project has comprehensive test coverage with 608 tests across 18 test files:
|
|
683
685
|
|
|
684
686
|
```bash
|
|
685
687
|
# Run all tests
|
package/lib/constants.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coder-config",
|
|
3
|
-
"version": "0.52.
|
|
3
|
+
"version": "0.52.3-beta",
|
|
4
4
|
"description": "Configuration manager for AI coding tools - Claude Code, Gemini CLI, Codex CLI, Antigravity. Manage MCPs, rules, permissions, memory, and workstreams.",
|
|
5
5
|
"author": "regression.io",
|
|
6
6
|
"main": "config-loader.js",
|
|
@@ -1733,17 +1733,29 @@ Search GitHub or npm in the Registry view. Click "Add" to pre-fill the JSON with
|
|
|
1733
1733
|
`},"configuring-mcps":{title:"Configuring MCPs",content:`
|
|
1734
1734
|
## Configuring MCPs
|
|
1735
1735
|
|
|
1736
|
-
###
|
|
1736
|
+
### Transport Types
|
|
1737
|
+
|
|
1738
|
+
MCPs support multiple transport modes:
|
|
1739
|
+
|
|
1740
|
+
| Transport | Field | Description |
|
|
1741
|
+
|-----------|-------|-------------|
|
|
1742
|
+
| **stdio** | \`command\` + \`args\` | Local process (most common) |
|
|
1743
|
+
| **HTTP** | \`url\` | Streamable HTTP endpoint |
|
|
1744
|
+
| **SSE** | \`url\` with \`type: "sse"\` | Server-Sent Events (deprecated, use HTTP) |
|
|
1745
|
+
| **WebSocket** | \`url\` with \`type: "ws"\` | WebSocket connection |
|
|
1746
|
+
|
|
1747
|
+
### Stdio MCP (Local Process)
|
|
1737
1748
|
|
|
1738
1749
|
- **command** - The executable to run (e.g., "npx", "node", "python")
|
|
1739
1750
|
- **args** - Array of command-line arguments
|
|
1751
|
+
- **env** - Environment variables for the MCP
|
|
1740
1752
|
|
|
1741
|
-
###
|
|
1753
|
+
### HTTP/Remote MCP
|
|
1742
1754
|
|
|
1743
|
-
- **
|
|
1744
|
-
- **
|
|
1755
|
+
- **url** - The endpoint URL
|
|
1756
|
+
- **type** - Transport type ("http", "sse", or "ws")
|
|
1745
1757
|
|
|
1746
|
-
### Example
|
|
1758
|
+
### Example Configurations
|
|
1747
1759
|
|
|
1748
1760
|
\`\`\`json
|
|
1749
1761
|
{
|
|
@@ -1755,12 +1767,9 @@ Search GitHub or npm in the Registry view. Click "Add" to pre-fill the JSON with
|
|
|
1755
1767
|
"GITHUB_TOKEN": "\${GITHUB_TOKEN}"
|
|
1756
1768
|
}
|
|
1757
1769
|
},
|
|
1758
|
-
"
|
|
1759
|
-
"
|
|
1760
|
-
"
|
|
1761
|
-
"env": {
|
|
1762
|
-
"DATABASE_URL": "\${DATABASE_URL}"
|
|
1763
|
-
}
|
|
1770
|
+
"remote-server": {
|
|
1771
|
+
"type": "http",
|
|
1772
|
+
"url": "https://mcp.example.com/api"
|
|
1764
1773
|
}
|
|
1765
1774
|
}
|
|
1766
1775
|
}
|
|
@@ -2076,20 +2085,28 @@ Choose which Claude model to use.
|
|
|
2076
2085
|
|
|
2077
2086
|
### Available Models
|
|
2078
2087
|
|
|
2079
|
-
- **Claude
|
|
2080
|
-
- **Claude
|
|
2081
|
-
- **Claude
|
|
2088
|
+
- **Claude Opus 4.6** - Most capable, best for complex tasks
|
|
2089
|
+
- **Claude Sonnet 4.6** - Fast output, great balance of speed and capability
|
|
2090
|
+
- **Claude Sonnet 4.5** - Previous generation, balanced
|
|
2091
|
+
- **Claude Haiku 4.5** - Fastest, good for simple tasks
|
|
2082
2092
|
|
|
2083
2093
|
### Setting the Model
|
|
2084
2094
|
|
|
2085
|
-
In **Claude Code** settings, use the Model
|
|
2095
|
+
In **Claude Code** settings, use the Model tab to select your preferred model.
|
|
2096
|
+
|
|
2097
|
+
### Effort Level
|
|
2098
|
+
|
|
2099
|
+
Control reasoning thoroughness:
|
|
2100
|
+
- **Low** - Faster, less thorough
|
|
2101
|
+
- **Medium** - Balanced (default)
|
|
2102
|
+
- **High** - Most thorough reasoning
|
|
2086
2103
|
|
|
2087
2104
|
### Per-Task Model
|
|
2088
2105
|
|
|
2089
2106
|
Some tasks may benefit from different models:
|
|
2090
|
-
- Use Haiku for quick edits
|
|
2091
|
-
- Use Opus for complex refactoring
|
|
2092
|
-
- Use Sonnet as a balanced default
|
|
2107
|
+
- Use Haiku 4.5 for quick edits and simple tasks
|
|
2108
|
+
- Use Opus 4.6 for complex refactoring and architecture
|
|
2109
|
+
- Use Sonnet 4.6 as a balanced default
|
|
2093
2110
|
`},behavior:{title:"Behavior Settings",content:`
|
|
2094
2111
|
## Behavior Settings
|
|
2095
2112
|
|
|
@@ -2097,9 +2114,14 @@ Configure how Claude Code behaves.
|
|
|
2097
2114
|
|
|
2098
2115
|
### Available Settings
|
|
2099
2116
|
|
|
2100
|
-
- **
|
|
2101
|
-
- **
|
|
2102
|
-
- **
|
|
2117
|
+
- **Respect .gitignore** - Honor .gitignore patterns when searching
|
|
2118
|
+
- **Show Thinking Summaries** - Display extended thinking summaries
|
|
2119
|
+
- **Voice Dictation** - Enable push-to-talk voice input
|
|
2120
|
+
- **Auto Memory** - Allow Claude to save notes across sessions
|
|
2121
|
+
- **Enable All Project MCP Servers** - Auto-approve project .mcp.json servers
|
|
2122
|
+
- **Output Style** - Named output style for responses
|
|
2123
|
+
- **Default Shell** - Bash or PowerShell
|
|
2124
|
+
- **CLAUDE.md Excludes** - Skip specific CLAUDE.md files in monorepos
|
|
2103
2125
|
|
|
2104
2126
|
### Configuration
|
|
2105
2127
|
|
|
@@ -2109,18 +2131,32 @@ These settings are stored in \`~/.claude/settings.json\` and can be edited in th
|
|
|
2109
2131
|
|
|
2110
2132
|
Hooks allow you to run custom commands at specific points.
|
|
2111
2133
|
|
|
2112
|
-
###
|
|
2134
|
+
### Hook Events (30 total)
|
|
2135
|
+
|
|
2136
|
+
Key events include:
|
|
2137
|
+
- **SessionStart** / **SessionEnd** - Session lifecycle
|
|
2138
|
+
- **PreToolUse** / **PostToolUse** - Before/after tool execution
|
|
2139
|
+
- **UserPromptSubmit** - Before processing user input
|
|
2140
|
+
- **SubagentStart** / **SubagentStop** - Agent spawning
|
|
2141
|
+
- **FileChanged** / **CwdChanged** - File system events
|
|
2142
|
+
- **TaskCreated** / **TaskCompleted** - Task tracking
|
|
2113
2143
|
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
- **
|
|
2144
|
+
### Handler Types
|
|
2145
|
+
|
|
2146
|
+
- **command** - Shell script (with async, timeout options)
|
|
2147
|
+
- **http** - HTTP POST to a URL
|
|
2148
|
+
- **prompt** - Single-turn LLM evaluation
|
|
2149
|
+
- **agent** - Spawns a subagent
|
|
2117
2150
|
|
|
2118
2151
|
### Configuration
|
|
2119
2152
|
|
|
2120
2153
|
\`\`\`json
|
|
2121
2154
|
{
|
|
2122
2155
|
"hooks": {
|
|
2123
|
-
"
|
|
2156
|
+
"PreToolUse": [{
|
|
2157
|
+
"matcher": "Bash",
|
|
2158
|
+
"hooks": [{ "type": "command", "command": "~/.claude/hooks/pre.sh" }]
|
|
2159
|
+
}]
|
|
2124
2160
|
}
|
|
2125
2161
|
}
|
|
2126
2162
|
\`\`\`
|
|
@@ -2130,6 +2166,7 @@ Hooks allow you to run custom commands at specific points.
|
|
|
2130
2166
|
- Run linters after file edits
|
|
2131
2167
|
- Log tool usage
|
|
2132
2168
|
- Custom notifications
|
|
2169
|
+
- Workstream context injection
|
|
2133
2170
|
`}},xW={"gemini-model":{title:"Model Selection",content:`
|
|
2134
2171
|
## Model Selection
|
|
2135
2172
|
|
|
@@ -2139,14 +2176,16 @@ Choose which Gemini model to use.
|
|
|
2139
2176
|
|
|
2140
2177
|
| Model | Description |
|
|
2141
2178
|
|-------|-------------|
|
|
2142
|
-
| **
|
|
2143
|
-
| **Gemini
|
|
2144
|
-
| **Gemini
|
|
2145
|
-
| **Gemini
|
|
2179
|
+
| **Auto** | CLI picks best model per task |
|
|
2180
|
+
| **Gemini 3.1 Pro** | Latest, thinking + multimodal tool use |
|
|
2181
|
+
| **Gemini 3 Pro** | Thinking + multimodal tools |
|
|
2182
|
+
| **Gemini 3 Flash** | Fast with thinking |
|
|
2183
|
+
| **Gemini 2.5 Pro** | Previous generation capable |
|
|
2184
|
+
| **Gemini 2.5 Flash** | Previous generation fast |
|
|
2146
2185
|
|
|
2147
|
-
###
|
|
2186
|
+
### Model Aliases
|
|
2148
2187
|
|
|
2149
|
-
|
|
2188
|
+
You can also use aliases: \`auto\`, \`pro\`, \`flash\`, \`flash-lite\`
|
|
2150
2189
|
`},"gemini-display":{title:"Display Options",content:`
|
|
2151
2190
|
## Display Options
|
|
2152
2191
|
|
|
@@ -2156,10 +2195,14 @@ Configure Gemini CLI's appearance and output.
|
|
|
2156
2195
|
|
|
2157
2196
|
| Setting | Description |
|
|
2158
2197
|
|---------|-------------|
|
|
2159
|
-
| **Theme** | Color theme
|
|
2160
|
-
| **
|
|
2161
|
-
| **Show
|
|
2162
|
-
| **
|
|
2198
|
+
| **Theme** | Color theme for the CLI interface |
|
|
2199
|
+
| **Dynamic Window Title** | Update title with status icons |
|
|
2200
|
+
| **Show Line Numbers** | Display line numbers in chat |
|
|
2201
|
+
| **Show Citations** | Display citations for generated text |
|
|
2202
|
+
| **Hide Context Summary** | Hide GEMINI.md and MCP servers above input |
|
|
2203
|
+
| **Hide Footer** | Remove footer from the UI |
|
|
2204
|
+
| **Screen Reader Mode** | Accessible plain-text output |
|
|
2205
|
+
| **Inline Thinking** | Show model thinking (off or full) |
|
|
2163
2206
|
`},"gemini-general":{title:"General Settings",content:`
|
|
2164
2207
|
## General Settings
|
|
2165
2208
|
|
|
@@ -2170,8 +2213,18 @@ Core Gemini CLI behavior options.
|
|
|
2170
2213
|
| Setting | Description |
|
|
2171
2214
|
|---------|-------------|
|
|
2172
2215
|
| **Vim Keybindings** | Enable Vim mode in the CLI |
|
|
2173
|
-
| **Auto
|
|
2174
|
-
| **
|
|
2216
|
+
| **Auto Update** | Check for new Gemini CLI versions |
|
|
2217
|
+
| **Checkpointing** | Enable session recovery support |
|
|
2218
|
+
| **Approval Mode** | Default: ask, Auto Edit: auto-approve edits, Plan: read-only |
|
|
2219
|
+
|
|
2220
|
+
### Approval Modes
|
|
2221
|
+
|
|
2222
|
+
| Mode | Description |
|
|
2223
|
+
|------|-------------|
|
|
2224
|
+
| **default** | Ask before tool execution |
|
|
2225
|
+
| **auto_edit** | Auto-approve file edits |
|
|
2226
|
+
| **plan** | Read-only, no edits allowed |
|
|
2227
|
+
| **yolo** | Auto-approve everything (use with caution) |
|
|
2175
2228
|
|
|
2176
2229
|
### Configuration File
|
|
2177
2230
|
|
|
@@ -2181,26 +2234,44 @@ Settings are stored in \`~/.gemini/settings.json\`:
|
|
|
2181
2234
|
{
|
|
2182
2235
|
"general": {
|
|
2183
2236
|
"vimMode": false,
|
|
2184
|
-
"
|
|
2185
|
-
"
|
|
2237
|
+
"defaultApprovalMode": "default",
|
|
2238
|
+
"enableAutoUpdate": true,
|
|
2239
|
+
"checkpointing": { "enabled": false }
|
|
2186
2240
|
},
|
|
2187
2241
|
"model": {
|
|
2188
|
-
"
|
|
2189
|
-
"previewFeatures": false
|
|
2242
|
+
"name": "auto"
|
|
2190
2243
|
}
|
|
2191
2244
|
}
|
|
2192
2245
|
\`\`\`
|
|
2193
2246
|
`},"gemini-sandbox":{title:"Sandbox Mode",content:`
|
|
2194
2247
|
## Sandbox Mode
|
|
2195
2248
|
|
|
2196
|
-
Control command execution safety.
|
|
2249
|
+
Control command execution safety. Gemini CLI supports 5 sandbox methods.
|
|
2197
2250
|
|
|
2198
|
-
###
|
|
2251
|
+
### Sandbox Methods
|
|
2199
2252
|
|
|
2200
|
-
|
|
|
2201
|
-
|
|
2202
|
-
| **
|
|
2203
|
-
| **
|
|
2253
|
+
| Method | Platform | Description |
|
|
2254
|
+
|--------|----------|-------------|
|
|
2255
|
+
| **sandbox-exec** | macOS | Lightweight seatbelt profiles |
|
|
2256
|
+
| **Docker** | Cross-platform | Container-based isolation |
|
|
2257
|
+
| **Podman** | Cross-platform | Container-based (rootless) |
|
|
2258
|
+
| **gVisor (runsc)** | Linux | Strongest isolation, user-space kernel |
|
|
2259
|
+
| **LXC** | Linux | Full system container (experimental) |
|
|
2260
|
+
|
|
2261
|
+
### Configuration
|
|
2262
|
+
|
|
2263
|
+
\`\`\`json
|
|
2264
|
+
{
|
|
2265
|
+
"tools": {
|
|
2266
|
+
"sandbox": {
|
|
2267
|
+
"enabled": true,
|
|
2268
|
+
"command": "docker",
|
|
2269
|
+
"networkAccess": false,
|
|
2270
|
+
"allowedPaths": ["/workspace"]
|
|
2271
|
+
}
|
|
2272
|
+
}
|
|
2273
|
+
}
|
|
2274
|
+
\`\`\`
|
|
2204
2275
|
|
|
2205
2276
|
### When to Disable
|
|
2206
2277
|
|
|
@@ -2800,44 +2871,7 @@ Example:
|
|
|
2800
2871
|
### Known Limitation
|
|
2801
2872
|
|
|
2802
2873
|
Antigravity and Gemini CLI share \`~/.gemini/GEMINI.md\` for global instructions. This is a known conflict in Google's tools.
|
|
2803
|
-
`},"tool-differences":{title:"Tool Differences",content:`
|
|
2804
|
-
## Tool Differences
|
|
2805
|
-
|
|
2806
|
-
### Configuration Formats
|
|
2807
|
-
|
|
2808
|
-
All tools use identical JSON format for MCP server definitions:
|
|
2809
|
-
|
|
2810
|
-
\`\`\`json
|
|
2811
|
-
{
|
|
2812
|
-
"mcpServers": {
|
|
2813
|
-
"server-name": {
|
|
2814
|
-
"command": "npx",
|
|
2815
|
-
"args": ["-y", "@some/server"],
|
|
2816
|
-
"env": { "API_KEY": "..." }
|
|
2817
|
-
}
|
|
2818
|
-
}
|
|
2819
|
-
}
|
|
2820
|
-
\`\`\`
|
|
2821
|
-
|
|
2822
|
-
### Feature Comparison
|
|
2823
|
-
|
|
2824
|
-
| Feature | Claude Code | Gemini CLI | Codex CLI | Antigravity |
|
|
2825
|
-
|---------|-------------|------------|-----------|-------------|
|
|
2826
|
-
| Type | Terminal CLI | Terminal CLI | Terminal CLI | Full IDE |
|
|
2827
|
-
| MCP Config | \`.mcp.json\` | \`.gemini/settings.json\` | \`~/.codex/config.toml\` | \`~/.gemini/antigravity/\` |
|
|
2828
|
-
| Config Format | JSON | JSON | TOML | JSON |
|
|
2829
|
-
| Env Interpolation | Yes (\`\${VAR}\`) | Yes | Yes | No |
|
|
2830
|
-
| Skills | \`.claude/commands/\` | \`.gemini/commands/\` | N/A | Unknown |
|
|
2831
|
-
| Rules | \`.claude/rules/\` | \`.gemini/rules/\` | N/A | \`.agent/rules/\` |
|
|
2832
|
-
| Instructions | \`CLAUDE.md\` | \`GEMINI.md\` | N/A | \`GEMINI.md\` |
|
|
2833
|
-
|
|
2834
|
-
### What This Means
|
|
2835
|
-
|
|
2836
|
-
- Your MCP registry is shared between all tools
|
|
2837
|
-
- When you click "Apply Config", all enabled tools get updated
|
|
2838
|
-
- Rules can be synced between Claude Code, Gemini CLI, and Antigravity
|
|
2839
|
-
- Gemini CLI and Antigravity share global instructions (known conflict)
|
|
2840
|
-
`},"enabling-tools":{title:"Enabling Tools",content:`
|
|
2874
|
+
`},"tool-differences":{title:"Tool Differences",content:'\n## Tool Differences\n\n### Configuration Formats\n\nAll tools use identical JSON format for MCP server definitions:\n\n```json\n{\n "mcpServers": {\n "server-name": {\n "command": "npx",\n "args": ["-y", "@some/server"],\n "env": { "API_KEY": "..." }\n }\n }\n}\n```\n\n### Feature Comparison\n\n| Feature | Claude Code | Gemini CLI | Codex CLI | Antigravity |\n|---------|-------------|------------|-----------|-------------|\n| Type | Terminal CLI | Terminal CLI | Terminal TUI | Full IDE |\n| MCP Config | `.mcp.json` | `.gemini/settings.json` | `~/.codex/config.toml` | `~/.gemini/antigravity/` |\n| Config Format | JSON | JSON | TOML | JSON |\n| Env Interpolation | Yes (`${VAR}`) | Yes | Yes | No |\n| Skills | `.claude/skills/` | `.gemini/commands/` | Built-in + SKILL.md | Unknown |\n| Rules | `.claude/rules/` | `.gemini/rules/` | Via AGENTS.md | `.agent/rules/` |\n| Instructions | `CLAUDE.md` | `GEMINI.md` | `AGENTS.md` | `GEMINI.md` |\n| Agents | `.claude/agents/` | `.gemini/agents/` | Built-in multi-agent | N/A |\n\n### What This Means\n\n- Your MCP registry is shared between all tools\n- When you click "Apply Config", all enabled tools get updated\n- Rules can be synced between Claude Code, Gemini CLI, and Antigravity\n- Gemini CLI and Antigravity share global instructions (known conflict)\n '},"enabling-tools":{title:"Enabling Tools",content:`
|
|
2841
2875
|
## Enabling Tools
|
|
2842
2876
|
|
|
2843
2877
|
Control which tools receive configuration updates.
|
package/ui/dist/index.html
CHANGED
|
@@ -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-
|
|
22
|
+
<script type="module" crossorigin src="/assets/index-CG-MVxBS.js"></script>
|
|
23
23
|
<link rel="stylesheet" crossorigin href="/assets/index-BiF3i3y5.css">
|
|
24
24
|
</head>
|
|
25
25
|
<body>
|