@miraland-labs/conduit-bridge 0.16.12 → 0.16.13
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/dist/ops.js +3 -2
- package/package.json +1 -1
package/dist/ops.js
CHANGED
|
@@ -490,8 +490,9 @@ export async function runOps(verb, argv = [], deps = {}) {
|
|
|
490
490
|
// Bring lanes online and install the resident runner, but skip `ops install`'s doctor gate:
|
|
491
491
|
// an empty managed root is legitimately not a checkout yet, and failing here would leave the
|
|
492
492
|
// computer with no background process — exactly the terminal round-trip this removes.
|
|
493
|
-
|
|
494
|
-
|
|
493
|
+
// Same lane resolution as `ops install` (honours CONDUIT_DRIVERS and the one-lane default)
|
|
494
|
+
// rather than a second copy of detection — and it keeps the seam tests inject through.
|
|
495
|
+
const drivers = await (deps.resolveInstallDrivers ?? resolveInstallDrivers)(loadOpsEnv(), []);
|
|
495
496
|
if (drivers.length === 0) {
|
|
496
497
|
throw new Error("No coding agent detected. Install one (Claude Code, Codex, Cursor, …), then re-run this command.");
|
|
497
498
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@miraland-labs/conduit-bridge",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.13",
|
|
4
4
|
"description": "Conduit Bridge CLI — join, connect, disconnect, multi-driver lanes, and run Claude Code / Codex / Cursor / OpenCode / Pi / Kiro / Antigravity / Grok Build agents for a Conduit organization",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|