deepdebug-local-agent 0.3.3 → 0.3.5
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/package.json +10 -3
- package/src/server.js +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "deepdebug-local-agent",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"description": "Insptech AI — DeepDebug Local Agent. Autonomous code debugging agent for production environments.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "server.js",
|
|
@@ -12,7 +12,14 @@
|
|
|
12
12
|
"dev": "NODE_ENV=development node server.js",
|
|
13
13
|
"mcp": "node mcp-server.js"
|
|
14
14
|
},
|
|
15
|
-
"keywords": [
|
|
15
|
+
"keywords": [
|
|
16
|
+
"deepdebug",
|
|
17
|
+
"insptech",
|
|
18
|
+
"debugging",
|
|
19
|
+
"ai",
|
|
20
|
+
"autonomous",
|
|
21
|
+
"agent"
|
|
22
|
+
],
|
|
16
23
|
"author": "Insptech AI <contacto@insptech.pt>",
|
|
17
24
|
"license": "UNLICENSED",
|
|
18
25
|
"homepage": "https://deepdebug.ai",
|
|
@@ -30,4 +37,4 @@
|
|
|
30
37
|
"strip-ansi": "^7.1.0",
|
|
31
38
|
"unidiff": "^1.0.2"
|
|
32
39
|
}
|
|
33
|
-
}
|
|
40
|
+
}
|
package/src/server.js
CHANGED
|
@@ -556,7 +556,9 @@ app.use(cors({
|
|
|
556
556
|
"http://127.0.0.1:8085",
|
|
557
557
|
// Cloud Run URLs (regex patterns)
|
|
558
558
|
/https:\/\/.*\.run\.app$/,
|
|
559
|
-
/https:\/\/.*\.web\.app
|
|
559
|
+
/https:\/\/.*\.web\.app$/,
|
|
560
|
+
"https://deepdebug.ai",
|
|
561
|
+
"https://www.deepdebug.ai"
|
|
560
562
|
],
|
|
561
563
|
methods: ["GET", "POST", "PUT", "PATCH", "DELETE", "OPTIONS"],
|
|
562
564
|
allowedHeaders: ["Content-Type", "Authorization", "X-Tenant-ID"],
|