coder-config 0.42.5 → 0.42.6
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 +8 -8
- package/lib/constants.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,24 +10,24 @@ AI coding assistants are powerful, but managing their configuration across proje
|
|
|
10
10
|
|
|
11
11
|
## What Coder Config Does
|
|
12
12
|
|
|
13
|
-
**Unified MCP Registry**
|
|
14
|
-
Define your MCP servers once in a global registry. Enable them per-project with a toggle. Configuration inherits from global → workspace → project, so common tools are always available while project-specific ones stay scoped.
|
|
15
|
-
|
|
16
|
-
**Multi-Tool Output**
|
|
17
|
-
Write one config, generate outputs for Claude Code (`.mcp.json`), Gemini CLI (`settings.json`), Codex CLI (`config.toml`), and Antigravity. Switch tools without reconfiguring.
|
|
18
|
-
|
|
19
13
|
**Workstreams**
|
|
20
14
|
Group related repos together. When a workstream is active, Claude automatically knows which directories it can access and receives your custom context. Useful for microservices, monorepos, or any multi-repo workflow where projects relate to each other.
|
|
21
15
|
|
|
22
|
-
**
|
|
23
|
-
|
|
16
|
+
**Unified MCP Registry**
|
|
17
|
+
Define your MCP servers once in a global registry. Enable them per-project with a toggle. Configuration inherits from global → workspace → project, so common tools are always available while project-specific ones stay scoped.
|
|
24
18
|
|
|
25
19
|
**Hierarchical Rules**
|
|
26
20
|
Rules cascade from `~/.claude/rules/` down to project-specific rules. Global conventions apply everywhere; project-specific instructions stay local.
|
|
27
21
|
|
|
22
|
+
**Persistent Memory**
|
|
23
|
+
Store preferences, corrections, and patterns that persist across sessions. When you tell Claude "always use our logger instead of console.log," it remembers — not just for this session, but permanently.
|
|
24
|
+
|
|
28
25
|
**Plugin System**
|
|
29
26
|
Install LSP servers, MCP tools, and custom commands from plugin marketplaces. Plugins can be scoped globally or per-project.
|
|
30
27
|
|
|
28
|
+
**Multi-Tool Output**
|
|
29
|
+
Write one config, generate outputs for Claude Code (`.mcp.json`), Gemini CLI (`settings.json`), Codex CLI (`config.toml`), and Antigravity. Switch tools without reconfiguring.
|
|
30
|
+
|
|
31
31
|
**Web UI**
|
|
32
32
|
Visual interface for managing everything above. File explorer for `.claude` folders, MCP toggles, memory editor, workstream management. Runs locally on port 3333.
|
|
33
33
|
|
package/lib/constants.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coder-config",
|
|
3
|
-
"version": "0.42.
|
|
3
|
+
"version": "0.42.6",
|
|
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",
|