deepdebug-local-agent 0.3.17 → 0.3.18

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/package.json +1 -1
  2. package/src/server.js +10 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deepdebug-local-agent",
3
- "version": "0.3.17",
3
+ "version": "0.3.18",
4
4
  "description": "Insptech AI — DeepDebug Local Agent. Autonomous code debugging agent for production environments.",
5
5
  "type": "module",
6
6
  "main": "src/server.js",
package/src/server.js CHANGED
@@ -5133,6 +5133,16 @@ async function startWebSocketTunnel(port, gatewayUrl, apiKey, tenantId) {
5133
5133
  }
5134
5134
  }
5135
5135
 
5136
+ case 'workspace.git.create-fix-branch': {
5137
+ const fetch2 = (await import('node-fetch')).default;
5138
+ const r = await fetch2(`http://localhost:5055/workspace/git/create-fix-branch`, {
5139
+ method: 'POST',
5140
+ headers: { 'Content-Type': 'application/json' },
5141
+ body: JSON.stringify(params)
5142
+ });
5143
+ return await r.json();
5144
+ }
5145
+
5136
5146
  case 'workspace.safe-patch':
5137
5147
  case 'workspace.compile':
5138
5148
  case 'workspace.rollback':