@intellectronica/ruler 0.2.16 → 0.2.17
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 +1 -1
- package/dist/paths/mcp.js +1 -1
- package/dist/revert.js +0 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -39,7 +39,7 @@ Ruler solves this by providing a **single source of truth** for all your AI agen
|
|
|
39
39
|
| Agent | Rules File(s) | MCP Configuration |
|
|
40
40
|
| ---------------- | ------------------------------------------------ | --------------------------------------------------- |
|
|
41
41
|
| GitHub Copilot | `.github/copilot-instructions.md` | `.vscode/mcp.json` |
|
|
42
|
-
| Claude Code | `CLAUDE.md` |
|
|
42
|
+
| Claude Code | `CLAUDE.md` | `.mcp.json` |
|
|
43
43
|
| OpenAI Codex CLI | `AGENTS.md` | `.codex/config.toml`, `~/.codex/config.json` |
|
|
44
44
|
| Jules | `AGENTS.md` | - |
|
|
45
45
|
| Cursor | `.cursor/rules/ruler_cursor_instructions.mdc` | `.cursor/mcp.json`, `~/.cursor/mcp.json` |
|
package/dist/paths/mcp.js
CHANGED
|
@@ -59,7 +59,7 @@ async function getNativeMcpPath(adapterName, projectRoot) {
|
|
|
59
59
|
candidates.push(path.join(home, '.codeium', 'windsurf', 'mcp_config.json'));
|
|
60
60
|
break;
|
|
61
61
|
case 'Claude Code':
|
|
62
|
-
candidates.push(path.join(projectRoot, '
|
|
62
|
+
candidates.push(path.join(projectRoot, '.mcp.json'));
|
|
63
63
|
break;
|
|
64
64
|
case 'OpenAI Codex CLI':
|
|
65
65
|
candidates.push(path.join(home, '.codex', 'config.json'));
|
package/dist/revert.js
CHANGED
|
@@ -307,7 +307,6 @@ async function removeEmptyDirectories(projectRoot, verbose, dryRun) {
|
|
|
307
307
|
async function removeAdditionalAgentFiles(projectRoot, verbose, dryRun) {
|
|
308
308
|
const additionalFiles = [
|
|
309
309
|
'.gemini/settings.json',
|
|
310
|
-
'claude_desktop_config.json',
|
|
311
310
|
'.mcp.json',
|
|
312
311
|
'.vscode/mcp.json',
|
|
313
312
|
'.cursor/mcp.json',
|