@amaster.ai/employee-runtime-connector 0.1.0-beta.16 → 0.1.0-beta.18

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.
@@ -5,7 +5,7 @@ import { dirname, join, resolve } from "node:path";
5
5
  import { homedir, hostname } from "node:os";
6
6
  import { fileURLToPath } from "node:url";
7
7
 
8
- const CONNECTOR_VERSION = "0.1.0-beta.16";
8
+ const CONNECTOR_VERSION = "0.1.0-beta.18";
9
9
 
10
10
  const CAPABILITIES = [
11
11
  "remote_registration",
@@ -13,6 +13,7 @@ const CAPABILITIES = [
13
13
  "executor_discovery",
14
14
  "workspace_binding",
15
15
  "run_wakeup",
16
+ "runtime_actions_v2",
16
17
  "model_call",
17
18
  "run_cancel",
18
19
  "run_terminate",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amaster.ai/employee-runtime-connector",
3
- "version": "0.1.0-beta.16",
3
+ "version": "0.1.0-beta.18",
4
4
  "description": "AMaster Employee runtime connector CLI and daemon",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -15,6 +15,8 @@
15
15
  "scripts": {
16
16
  "build": "node scripts/build.mjs",
17
17
  "clean": "node scripts/clean.mjs",
18
+ "phase0b:live": "node probes/runtime-v2-phase0b/live-probe.mjs",
19
+ "phase0b:test": "node --test probes/runtime-v2-phase0b/*.test.mjs",
18
20
  "typecheck": "node --check scripts/build.mjs && node --check scripts/bundle.mjs && node --check src/amaster-runtime.mjs && node --check src/amaster-runtime-daemon.mjs",
19
21
  "test": "pnpm run build && node --test test/*.test.mjs src/amaster-runtime-daemon/*.test.mjs",
20
22
  "prepack": "pnpm run test"