@danypops/pi-packed 0.23.0 → 0.24.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.
@@ -74,11 +74,10 @@ export async function registerPackedVehicle(pi: ExtensionAPI): Promise<void> {
74
74
  await registerVehicleTools(pi, client, {
75
75
  permissions: ["packed:read"],
76
76
  principal: { id: "pi-packed" },
77
- // ownVehicleName must match daemon.ts's own PACKED_VEHICLE_NAME (the shared Vehicle Handle
78
- // Directory entry Packed's own daemon registers under via daemonOptions()'s vehicleName --
79
- // see service/src/daemon/daemon.ts). activateForeignOperation is auto-supplied by
80
- // registerVehicleTools. See enable-vehicle-shell-broker-mode-in-pi-packed.
81
- shell: { coreOperations: CORE_OPERATIONS, broker: { ownVehicleName: "pi-packed" } },
77
+ // tools_list/tools_man are a neutral, process-wide singleton now (vehicle-client-pi's own
78
+ // ensureVehicleShellHandle) -- no ownVehicleName/broker option needed here anymore; every
79
+ // vehicle in the process (including packed's own) is discovered and namespaced uniformly.
80
+ shell: { coreOperations: CORE_OPERATIONS },
82
81
  });
83
82
  } catch {
84
83
  // Daemon state is stale/unreachable -- degrade silently, matching
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@danypops/pi-packed",
3
- "version": "0.23.0",
3
+ "version": "0.24.0",
4
4
  "description": "Pi package lifecycle, validation, daemon, tools, profiles, and TUI",
5
5
  "type": "module",
6
6
  "bin": {
@@ -31,7 +31,7 @@
31
31
  "@danypops/packed": "^0.7.0",
32
32
  "@danypops/pi-extension-harness": "^0.7.0",
33
33
  "@danypops/vehicle-client": "^0.8.1",
34
- "@danypops/vehicle-client-pi": "^0.39.0",
34
+ "@danypops/vehicle-client-pi": "^0.40.1",
35
35
  "@danypops/vehicle-core": "^0.15.0",
36
36
  "@danypops/vehicle-server": "^0.22.0",
37
37
  "jiti": "^2.7.0",