executor 1.2.4-beta.4 → 1.2.4-beta.5
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 +4 -2
- package/bin/executor.mjs +44518 -42717
- package/package.json +1 -1
- package/resources/web/assets/{highlighted-body-TPN3WLV5-BNzQ45td.js → highlighted-body-TPN3WLV5-BgXTsZ30.js} +1 -1
- package/resources/web/assets/{index-C81r_B2h.js → index-CVy-DVgr.js} +2 -2
- package/resources/web/assets/mermaid-O7DHMXV3-C-YmyPuX.js +332 -0
- package/resources/web/index.html +1 -1
- package/resources/web/assets/__vite-browser-external-BIHI7g3E.js +0 -1
- package/resources/web/assets/mermaid-O7DHMXV3-DYFvhbe6.js +0 -667
- package/resources/web/assets/openapi_extractor_bg-IMRXzuHp.wasm +0 -0
package/README.md
CHANGED
|
@@ -329,7 +329,9 @@ If you are exploring the repo, these are the directories that matter most:
|
|
|
329
329
|
- `apps/executor`: packaged CLI entrypoint and daemon lifecycle commands
|
|
330
330
|
- `apps/web`: local React web UI
|
|
331
331
|
- `packages/platform/server`: local HTTP server that serves API, MCP, and UI
|
|
332
|
-
- `packages/platform/
|
|
332
|
+
- `packages/platform/sdk`: source management, secrets, persistence, execution, and inspection
|
|
333
|
+
- `packages/platform/api`: thin HTTP adapter over the platform SDK
|
|
334
|
+
- `packages/platform/internal`: thin internal tool adapter over the platform SDK
|
|
333
335
|
- `packages/kernel/runtime-deno-subprocess`: optional Deno subprocess runtime for TypeScript execution
|
|
334
336
|
- `packages/kernel/runtime-quickjs`: default QuickJS sandbox runtime for TypeScript execution
|
|
335
337
|
- `packages/kernel/runtime-ses`: optional SES sandbox runtime for TypeScript execution
|
|
@@ -349,7 +351,7 @@ If you are exploring the repo, these are the directories that matter most:
|
|
|
349
351
|
- One-time npm setup: either configure npm trusted publishing for `RhysSullivan/executor` with the workflow file `.github/workflows/publish-executor-package.yml`, or add a GitHub Actions secret named `NPM_TOKEN` that can publish the `executor` package.
|
|
350
352
|
- Stable releases use a normal semver like `1.2.3` and publish to npm under `latest`.
|
|
351
353
|
- Beta releases use a prerelease semver like `1.3.0-beta.1` and publish to npm under `beta`.
|
|
352
|
-
- When a release should become an upgrade test fixture, capture a real workspace snapshot with `bun run fixture:release:capture -- ...` and commit it under [`packages/platform/
|
|
354
|
+
- When a release should become an upgrade test fixture, capture a real workspace snapshot with `bun run fixture:release:capture -- ...` and commit it under [`packages/platform/sdk/src/runtime/__fixtures__`](./packages/platform/sdk/src/runtime/__fixtures__/README.md).
|
|
353
355
|
|
|
354
356
|
## Project status
|
|
355
357
|
|