nomoreide 0.3.0 → 0.3.3
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 +4 -2
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -42,7 +42,7 @@ Give your coding agents and yourself a **shared local control surface** for serv
|
|
|
42
42
|
NoMoreIDE is the shared local control plane between you and your coding agents. The native macOS app, web dashboard, TUI, CLI, and MCP server all operate on the same services, repositories, logs, databases, workflows, and agent configuration.
|
|
43
43
|
|
|
44
44
|
- **For humans:** one place to run services, inspect activity and Docker resources, review Git worktrees and GitHub changes, diagnose Vercel deployments, browse databases, and open terminals.
|
|
45
|
-
- **For agents:** structured MCP tools expose the same live project state to Claude Code, Codex CLI, Gemini CLI, and other MCP clients.
|
|
45
|
+
- **For agents:** structured MCP tools expose the same live project state to Claude Code, Codex CLI, Gemini CLI, Cursor, Windsurf, and other MCP clients.
|
|
46
46
|
- **For safety:** destructive Git operations are omitted, database writes require human approval, secrets are redacted from shared profiles, and NoMoreIDE does not kill processes it did not start.
|
|
47
47
|
|
|
48
48
|
---
|
|
@@ -114,6 +114,8 @@ Install the NoMoreIDE MCP server together with its triggerable debugging skill:
|
|
|
114
114
|
nomoreide setup codex
|
|
115
115
|
nomoreide setup claude
|
|
116
116
|
nomoreide setup gemini
|
|
117
|
+
nomoreide setup cursor
|
|
118
|
+
nomoreide setup windsurf
|
|
117
119
|
```
|
|
118
120
|
|
|
119
121
|
Run the command for your agent, then start a new agent session. The skill routes
|
|
@@ -251,7 +253,7 @@ whichever binary ran it.
|
|
|
251
253
|
|
|
252
254
|
```mermaid
|
|
253
255
|
graph TD
|
|
254
|
-
subgraph Agent["AI Agent (Claude / Codex / Gemini)"]
|
|
256
|
+
subgraph Agent["AI Agent (Claude / Codex / Gemini / Cursor / Windsurf)"]
|
|
255
257
|
A[Coding Agent CLI]
|
|
256
258
|
end
|
|
257
259
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nomoreide",
|
|
3
3
|
"description": "AI-native local development workbench: services, logs, Git, databases and agent environments, over MCP, CLI, TUI and a web dashboard.",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.3",
|
|
5
5
|
"license": "AGPL-3.0-only",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"LICENSE"
|
|
23
23
|
],
|
|
24
24
|
"optionalDependencies": {
|
|
25
|
-
"@nomoreide/cli-darwin-arm64": "0.3.
|
|
26
|
-
"@nomoreide/cli-darwin-x64": "0.3.
|
|
27
|
-
"@nomoreide/cli-linux-x64": "0.3.
|
|
28
|
-
"@nomoreide/cli-linux-arm64": "0.3.
|
|
25
|
+
"@nomoreide/cli-darwin-arm64": "0.3.3",
|
|
26
|
+
"@nomoreide/cli-darwin-x64": "0.3.3",
|
|
27
|
+
"@nomoreide/cli-linux-x64": "0.3.3",
|
|
28
|
+
"@nomoreide/cli-linux-arm64": "0.3.3"
|
|
29
29
|
},
|
|
30
30
|
"keywords": [
|
|
31
31
|
"mcp",
|