komodo-cli 2.9.0 → 2.10.0
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 +26 -0
- package/dist/chunk-BK2YSCS2.js +6784 -0
- package/dist/{chunk-GGBZF72M.js → chunk-EU4PZLPQ.js} +1598 -4276
- package/dist/index.js +204 -6
- package/dist/mcp/index.js +5906 -0
- package/dist/{server-JOKWCY3W.js → server-G6XWHEZX.js} +2276 -10946
- package/package.json +8 -4
package/README.md
CHANGED
|
@@ -49,6 +49,32 @@ komodo ui
|
|
|
49
49
|
- **Rollback**: Undo any change instantly
|
|
50
50
|
- **Visual**: Dashboard to see everything at a glance
|
|
51
51
|
|
|
52
|
+
## Use with Claude Code
|
|
53
|
+
|
|
54
|
+
Komodo includes an MCP (Model Context Protocol) server that lets Claude Code manage your packages and environments. After installing `komodo-cli`, add it to Claude Code:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
claude mcp add komodo -- komodo-mcp
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
Or manually add to `.claude/settings.json`:
|
|
61
|
+
```json
|
|
62
|
+
{
|
|
63
|
+
"mcpServers": {
|
|
64
|
+
"komodo": {
|
|
65
|
+
"command": "komodo-mcp"
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
Now Claude Code can:
|
|
72
|
+
- Install packages by describing what you want to build
|
|
73
|
+
- Check environment health and conflicts
|
|
74
|
+
- Analyze your codebase and dependencies
|
|
75
|
+
- Fix broken environments automatically
|
|
76
|
+
- Run comprehensive health audits
|
|
77
|
+
|
|
52
78
|
## Requirements
|
|
53
79
|
|
|
54
80
|
- Node.js 18+
|