@miraland-labs/conduit-bridge 0.16.37 → 0.16.38

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.
Files changed (2) hide show
  1. package/dist/driver.js +2 -1
  2. package/package.json +1 -1
package/dist/driver.js CHANGED
@@ -1095,7 +1095,8 @@ export function antigravityRunArgs(input, mode, timeoutMs) {
1095
1095
  export function parseAntigravityModelList(stdout) {
1096
1096
  const models = new Set();
1097
1097
  for (const line of stdout.split("\n")) {
1098
- const match = /^\s*([A-Za-z0-9][A-Za-z0-9._/-]*)\s{2,}\S/.exec(line);
1098
+ // A terminal shows the two columns padded with spaces; a pipe gets one tab between them.
1099
+ const match = /^\s*([A-Za-z0-9][A-Za-z0-9._/-]*)(?:\t+| {2,})\S/.exec(line);
1099
1100
  if (match)
1100
1101
  models.add(match[1]);
1101
1102
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@miraland-labs/conduit-bridge",
3
- "version": "0.16.37",
3
+ "version": "0.16.38",
4
4
  "description": "Conduit Bridge CLI \u2014 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": {