executor 1.4.1 → 1.4.3-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 +3 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ npm install -g executor
|
|
|
13
13
|
executor web
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
-
This starts a local runtime with a web UI at `http://127.0.0.1:
|
|
16
|
+
This starts a local runtime with a web UI at `http://127.0.0.1:4788`. From there, add your first source and start using tools.
|
|
17
17
|
|
|
18
18
|
### Use as an MCP server
|
|
19
19
|
|
|
@@ -43,7 +43,7 @@ If you can represent it with a JSON schema, it can be an integration. Executor h
|
|
|
43
43
|
|
|
44
44
|
### Via the web UI
|
|
45
45
|
|
|
46
|
-
Open `http://127.0.0.1:
|
|
46
|
+
Open `http://127.0.0.1:4788`, go to **Add Source**, paste a URL, and Executor will detect the type, index the tools, and handle auth.
|
|
47
47
|
|
|
48
48
|
### Via the CLI
|
|
49
49
|
|
|
@@ -100,7 +100,6 @@ executor call --file script.ts # execute a file
|
|
|
100
100
|
executor call '<code>' # execute inline code
|
|
101
101
|
executor call --stdin # execute from stdin
|
|
102
102
|
executor resume --execution-id <id> # resume paused execution
|
|
103
|
-
executor up / down / status # daemon lifecycle
|
|
104
103
|
```
|
|
105
104
|
|
|
106
105
|
## Developing locally
|
|
@@ -110,7 +109,7 @@ bun install
|
|
|
110
109
|
bun dev
|
|
111
110
|
```
|
|
112
111
|
|
|
113
|
-
The dev server starts at `http://127.0.0.1:
|
|
112
|
+
The dev server starts at `http://127.0.0.1:4788`.
|
|
114
113
|
|
|
115
114
|
## Community
|
|
116
115
|
|