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
Copy file name to clipboardExpand all lines: AGENTS.md
+10-4Lines changed: 10 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -75,26 +75,32 @@ The current repo uses the private boot path, private display bridge, and private
75
75
76
76
## Build and Run
77
77
78
-
Build the browser bundle:
78
+
Build the native CLI and browser bundle:
79
79
80
80
```sh
81
-
./scripts/build-client.sh
81
+
npm run build
82
82
```
83
83
84
-
Build the native CLI:
84
+
Build individual pieces when needed:
85
85
86
86
```sh
87
-
./scripts/build-cli.sh
87
+
npm run build:cli
88
+
npm run build:client
89
+
npm run build:all
90
+
npm run package:vscode
88
91
```
89
92
90
93
This now builds the Rust server in `server/` and copies the resulting binary to `build/simdeck`.
91
94
92
95
Run the local daemon:
93
96
94
97
```sh
98
+
./build/simdeck
95
99
./build/simdeck daemon start --port 4310
96
100
```
97
101
102
+
Running without a subcommand starts a foreground workspace daemon, prints local and LAN browser URLs, and stops when the command exits. Pass a simulator name or UDID as the only argument to select it by default in the UI. Use `./build/simdeck -d`, `./build/simdeck -k`, and `./build/simdeck -r` as detached start, kill, and restart shortcuts.
103
+
98
104
Use software H.264 when macOS screen recording starves the hardware encoder:
0 commit comments