executor 1.2.4 → 1.2.5-beta.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 CHANGED
@@ -122,10 +122,24 @@ If you want to use this a package distribution, install it via npm:
122
122
 
123
123
  ```bash
124
124
  npm install -g executor
125
- executor up
125
+ executor web
126
126
  ```
127
127
 
128
- Then either tell your agent to use the CLI or to open the web UI and copy the MCP CLI install command.
128
+ That starts a foreground local session, prints the local web URL, and keeps it alive until you press `Ctrl+C`.
129
+
130
+ If you want the MCP endpoint instead, run:
131
+
132
+ ```bash
133
+ executor mcp
134
+ ```
135
+
136
+ That prints the local MCP URL and keeps the session alive until you press `Ctrl+C`.
137
+
138
+ If you want a local stdio MCP server for agent configs such as Codex or OpenCode, run:
139
+
140
+ ```bash
141
+ executor mcp --stdio
142
+ ```
129
143
 
130
144
  Then you can run the CLI as `executor`.
131
145
 
@@ -153,13 +167,21 @@ If you are using a packaged distribution, the command name is simply `executor`
153
167
 
154
168
  ## Core CLI commands
155
169
 
170
+ ```bash
171
+ executor web
172
+ executor mcp
173
+ executor mcp --stdio
174
+ executor call --file script.ts
175
+ executor resume --execution-id exec_123
176
+ ```
177
+
178
+ Compatibility commands for the detached daemon are still available:
179
+
156
180
  ```bash
157
181
  executor up
158
182
  executor down
159
183
  executor status --json
160
184
  executor doctor --json
161
- executor call --file script.ts
162
- executor resume --execution-id exec_123
163
185
  ```
164
186
 
165
187
  `executor call` accepts code in three ways: