nomoreide 0.16.0 → 0.17.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 +34 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -345,6 +345,40 @@ service's logs. In logs, use the arrow keys or Page Up/Page Down to inspect
|
|
|
345
345
|
history and `End` to return to the live tail. `Esc` returns to services and
|
|
346
346
|
`Q` quits; services continue running in the daemon.
|
|
347
347
|
|
|
348
|
+
### Attach your terminal to the agent dock
|
|
349
|
+
|
|
350
|
+
On macOS or Linux, start a managed shell from your terminal:
|
|
351
|
+
|
|
352
|
+
```bash
|
|
353
|
+
cd /path/to/project
|
|
354
|
+
nomoreide attach
|
|
355
|
+
# Inside the attached shell:
|
|
356
|
+
claude
|
|
357
|
+
# or: codex
|
|
358
|
+
```
|
|
359
|
+
|
|
360
|
+
The command prefers the running desktop app and adds the shell to its bottom
|
|
361
|
+
agent dock. If the desktop is closed, it starts or connects to the standalone
|
|
362
|
+
daemon; use `nomoreide web` to see that dock. `nomoreide attach --daemon` explicitly
|
|
363
|
+
selects the standalone daemon.
|
|
364
|
+
|
|
365
|
+
The tab recognizes foreground Claude Code and Codex processes and returns to
|
|
366
|
+
Shell when they exit. Use **Bring back** in the dock to take control there without
|
|
367
|
+
restarting the shell. To move it back to your current terminal, use the session ID
|
|
368
|
+
printed by the CLI:
|
|
369
|
+
|
|
370
|
+
```bash
|
|
371
|
+
nomoreide attach --session cli:SESSION_ID
|
|
372
|
+
```
|
|
373
|
+
|
|
374
|
+
Only one surface controls the terminal at a time. Closing the external terminal
|
|
375
|
+
leaves the managed session in the dock; `exit` inside the shell ends it. Attach
|
|
376
|
+
starts a new shell in your current directory, so run it before starting your
|
|
377
|
+
agent. It does not adopt a process already running in an unmanaged terminal.
|
|
378
|
+
Recognition supplies the agent name and icon, not conversation or approval state;
|
|
379
|
+
attached shells retain shell permissions and do not accept automatic agent-prompt
|
|
380
|
+
insertion.
|
|
381
|
+
|
|
348
382
|
### Database CLI
|
|
349
383
|
|
|
350
384
|
```bash
|
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.
|
|
4
|
+
"version": "0.17.0",
|
|
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.
|
|
26
|
-
"@nomoreide/cli-darwin-x64": "0.
|
|
27
|
-
"@nomoreide/cli-linux-x64": "0.
|
|
28
|
-
"@nomoreide/cli-linux-arm64": "0.
|
|
25
|
+
"@nomoreide/cli-darwin-arm64": "0.17.0",
|
|
26
|
+
"@nomoreide/cli-darwin-x64": "0.17.0",
|
|
27
|
+
"@nomoreide/cli-linux-x64": "0.17.0",
|
|
28
|
+
"@nomoreide/cli-linux-arm64": "0.17.0"
|
|
29
29
|
},
|
|
30
30
|
"keywords": [
|
|
31
31
|
"mcp",
|