@miraland-labs/conduit-bridge 0.16.7 → 0.16.8

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 +3 -2
  2. package/package.json +1 -1
package/dist/driver.js CHANGED
@@ -48,8 +48,8 @@ export function isSafeModelName(value) {
48
48
  return /^[A-Za-z0-9][A-Za-z0-9._/-]{0,99}$/.test(value);
49
49
  }
50
50
  /** Grants → Claude Code tool allow-list (mutate_repo mapping). Privileged grants are never mapped. */
51
- export function claudeToolsForGrants(grants, verificationCommands = []) {
52
- return projectClaude("mutate_repo", { grants, verificationCommands }).allowedTools;
51
+ export function claudeToolsForGrants(grants, verificationCommands = [], capabilities = []) {
52
+ return projectClaude("mutate_repo", { grants, verificationCommands, capabilities }).allowedTools;
53
53
  }
54
54
  export const claudeDeniedTools = deniedCommands.map((command) => `Bash(${command}:*)`);
55
55
  function resolveRunClass(input) {
@@ -475,6 +475,7 @@ export const claudeCodeDriver = {
475
475
  const projected = projectClaude(executionClass, {
476
476
  grants: input.grants,
477
477
  verificationCommands: input.verificationCommands,
478
+ capabilities: input.capabilities,
478
479
  diagnosis: input.workRole === "diagnose",
479
480
  });
480
481
  // Fail closed: omitting --allowedTools would leave only the deny-list and
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@miraland-labs/conduit-bridge",
3
- "version": "0.16.7",
3
+ "version": "0.16.8",
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": {