executor 1.2.4-beta.4 → 1.2.4-beta.6

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
@@ -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/control-plane`: source management, secrets, persistence, execution, and inspection
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/control-plane/src/runtime/__fixtures__`](./packages/platform/control-plane/src/runtime/__fixtures__/README.md).
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