You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enable host access by default with --no-host-access flag
- Host access is now enabled by default for direct machine access
- Add --no-host-access flag to `workspace agent run` and `workspace agent install`
- Support WS_NO_HOST_ACCESS=true environment variable for systemd
- Update getting started docs with host access information
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: docs/docs/getting-started.md
+30-12Lines changed: 30 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,23 +7,42 @@ sidebar_position: 3
7
7
## Start Agent
8
8
9
9
```bash
10
-
ws agent start
10
+
workspace agent run
11
11
```
12
12
13
13
Web UI: `http://localhost:7391`
14
14
15
15
Options:
16
16
```bash
17
-
ws agent start --port 3000 # Custom port
18
-
ws agent start --host 0.0.0.0 # Remote access
17
+
workspace agent run --port 3000 # Custom port
18
+
workspace agent run --no-host-access # Disable direct host machine access
19
+
```
20
+
21
+
## Host Access
22
+
23
+
By default, the agent enables direct access to your host machine. This allows running terminals and AI coding agents directly on your machine without Docker isolation.
0 commit comments