@pikiloom/kernel 0.3.2 → 0.3.3

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.
@@ -120,6 +120,12 @@ export class Hub {
120
120
  extraArgs: spawn.extraArgs,
121
121
  configOverrides: spawn.configOverrides,
122
122
  extraMcpServers: tools.servers,
123
+ // The managed path's control verb `LoomIO.steer()` can only reach a driver that was
124
+ // launched steer-enabled, so honor the driver's declared capability here — otherwise
125
+ // steer is a silent no-op for steer-capable agents (claude gates registerSteer +
126
+ // --replay-user-messages on this flag). Drivers that don't support steer stay
127
+ // un-steerable; those that steer over their own channel regardless (codex RPC) ignore it.
128
+ steerable: !!driver.capabilities?.steer,
123
129
  };
124
130
  runner.run(driver, turnInput, input.prompt, model, effort)
125
131
  .then(async (result) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pikiloom/kernel",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "Heterogeneous coding agents (Claude / Codex / Gemini / ACP) -> an interaction-friendly, accumulating session snapshot + control handle, over pluggable surfaces (IM, Web, tunnel, TUI). The reusable core pikiloom itself is built on.",
5
5
  "type": "module",
6
6
  "license": "MIT",