nomoreide 0.1.88 → 0.1.90
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 +46 -24
- package/dist/web/client/assets/{code-editor-Cql1PV_g.js → code-editor-B6KniYQs.js} +1 -1
- package/dist/web/client/assets/{index-CwKDJi9G.js → index-C2DM01M9.js} +100 -99
- package/dist/web/client/assets/index-D971Mghq.css +1 -0
- package/dist/web/client/index.html +2 -2
- package/package.json +3 -1
- package/dist/web/client/assets/index-D5VAbGUi.css +0 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
|
-
<img src="assets/nomoreide-logo.
|
|
3
|
+
<img src="assets/nomoreide-logo.svg" alt="NoMoreIDE Logo" width="120" />
|
|
4
4
|
|
|
5
5
|
# NoMoreIDE
|
|
6
6
|
|
|
@@ -15,7 +15,21 @@
|
|
|
15
15
|
|
|
16
16
|
Give your coding agents and yourself a **shared local control surface** for services, ports, logs, Git review, GitHub workflows, database work, and MCP workflows — no IDE required.
|
|
17
17
|
|
|
18
|
-
[MCP Setup](#connect-your-ai-agent) · [CLI Reference](#cli) · [
|
|
18
|
+
[Product Tour](#product-tour) · [Download for macOS](#macos-desktop-app) · [MCP Setup](#connect-your-ai-agent) · [CLI Reference](#cli) · [Architecture](#architecture)
|
|
19
|
+
|
|
20
|
+
</div>
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## Product Tour
|
|
25
|
+
|
|
26
|
+
<div align="center">
|
|
27
|
+
|
|
28
|
+
<a href="https://www.nomoreide.com/#hero-demo">
|
|
29
|
+
<img src="assets/screenshots/product-tour.png" alt="NoMoreIDE Git Review showing running services, changed and staged files, an inline diff, commit controls, and the agent terminal dock" width="1200" />
|
|
30
|
+
</a>
|
|
31
|
+
|
|
32
|
+
<sub>Review a repository, inspect a diff, stage and commit changes, watch running services, and hand context to an agent without leaving the workbench. <a href="https://www.nomoreide.com/#hero-demo">Try the interactive demo</a>—it uses safe mock data.</sub>
|
|
19
33
|
|
|
20
34
|
</div>
|
|
21
35
|
|
|
@@ -23,29 +37,33 @@ Give your coding agents and yourself a **shared local control surface** for serv
|
|
|
23
37
|
|
|
24
38
|
## What Is NoMoreIDE?
|
|
25
39
|
|
|
26
|
-
NoMoreIDE is
|
|
40
|
+
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.
|
|
27
41
|
|
|
42
|
+
- **For humans:** one place to run services, inspect logs and ports, review Git changes, manage GitHub work, browse databases, and open terminals.
|
|
43
|
+
- **For agents:** structured MCP tools expose the same live project state to Claude Code, Codex CLI, Gemini CLI, and other MCP clients.
|
|
44
|
+
- **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.
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
## Download or Run NoMoreIDE
|
|
49
|
+
|
|
50
|
+
### macOS Desktop App
|
|
51
|
+
|
|
52
|
+
Prefer a native app? Download the latest universal DMG for both Apple silicon and Intel Macs:
|
|
53
|
+
|
|
54
|
+
**[Download NoMoreIDE for macOS](https://www.nomoreide.com/#download)** · [View all releases](https://github.com/Rorogogogo/nomoreide/releases)
|
|
55
|
+
|
|
56
|
+
> **First launch:** NoMoreIDE is currently unsigned and not notarized, so macOS will block it the first time you open it. After dragging NoMoreIDE to Applications, try to open it once, then go to **System Settings → Privacy & Security**, click **Open Anyway**, and confirm with Touch ID or your password.
|
|
57
|
+
|
|
58
|
+
### CLI, Web UI, TUI, and MCP Server
|
|
59
|
+
|
|
60
|
+
No global installation is required. Run the latest version with Node.js 20 or newer:
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
npx -y nomoreide
|
|
28
64
|
```
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
│ │
|
|
32
|
-
│ Claude Code / Codex CLI / Gemini CLI │
|
|
33
|
-
│ │ │
|
|
34
|
-
│ MCP (stdio) │
|
|
35
|
-
│ │ │
|
|
36
|
-
│ ┌───────▼────────┐ ┌──────────────────────┐ │
|
|
37
|
-
│ │ NoMoreIDE MCP │◄──►│ Process Manager │ │
|
|
38
|
-
│ │ Server │ │ Log Store │ │
|
|
39
|
-
│ └───────┬────────┘ │ Git Manager │ │
|
|
40
|
-
│ │ │ Config Store │ │
|
|
41
|
-
│ HTTP API └──────────────────────┘ │
|
|
42
|
-
│ │ │
|
|
43
|
-
│ ┌───────▼──────────────────────────┐ │
|
|
44
|
-
│ │ Web UI (localhost:4317) │ │
|
|
45
|
-
│ │ Terminal UI (nomoreide tui) │ │
|
|
46
|
-
│ └──────────────────────────────────┘ │
|
|
47
|
-
└──────────────────────────────────────────────────────┘
|
|
48
|
-
```
|
|
65
|
+
|
|
66
|
+
Use the agent-specific commands below to connect NoMoreIDE as an MCP server.
|
|
49
67
|
|
|
50
68
|
---
|
|
51
69
|
|
|
@@ -168,6 +186,7 @@ graph TD
|
|
|
168
186
|
GM[Git Manager]
|
|
169
187
|
LS[Log Store]
|
|
170
188
|
CS[Config Store<br/>nomoreide.config.json]
|
|
189
|
+
Desktop[macOS Desktop App]
|
|
171
190
|
WS[Web Server<br/>:4317]
|
|
172
191
|
TUI[Terminal UI]
|
|
173
192
|
end
|
|
@@ -187,6 +206,9 @@ graph TD
|
|
|
187
206
|
PM --> S2
|
|
188
207
|
PM --> S3
|
|
189
208
|
LS --> PM
|
|
209
|
+
Desktop --> PM
|
|
210
|
+
Desktop --> GM
|
|
211
|
+
Desktop --> LS
|
|
190
212
|
WS --> PM
|
|
191
213
|
WS --> GM
|
|
192
214
|
WS --> LS
|
|
@@ -198,7 +220,7 @@ graph TD
|
|
|
198
220
|
|
|
199
221
|
## Feature Overview
|
|
200
222
|
|
|
201
|
-
| Feature | CLI | TUI | Web
|
|
223
|
+
| Feature | CLI | TUI | Desktop / Web | MCP |
|
|
202
224
|
|---|:---:|:---:|:---:|:---:|
|
|
203
225
|
| Start / stop / restart services | ✓ | ✓ | ✓ | ✓ |
|
|
204
226
|
| Bundle orchestration | ✓ | | ✓ | ✓ |
|