executor 1.2.4-beta.9 → 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 +26 -4
- package/bin/executor.mjs +7461 -7298
- package/package.json +1 -1
- package/resources/web/assets/{highlighted-body-TPN3WLV5-ClUMlyVS.js → highlighted-body-TPN3WLV5-DeL9pzx_.js} +1 -1
- package/resources/web/assets/{index-DDjmmEpK.js → index-xrmYi6Ty.js} +2 -2
- package/resources/web/assets/{mermaid-O7DHMXV3-Db4FZ7mR.js → mermaid-O7DHMXV3-DcQ4Fj2F.js} +11 -11
- package/resources/web/assets/mermaid-O7DHMXV3-uS8rhmct.css +1 -0
- package/resources/web/index.html +1 -1
- package/resources/web/assets/mermaid-O7DHMXV3-BvcLrEss.css +0 -1
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
|
|
125
|
+
executor web
|
|
126
126
|
```
|
|
127
127
|
|
|
128
|
-
|
|
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:
|