@hachej/boring-core 0.1.12 → 0.1.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/app/server/index.js +1 -2
- package/package.json +4 -4
package/dist/app/server/index.js
CHANGED
|
@@ -360,7 +360,6 @@ async function createCoreWorkspaceAgentServer(options = {}) {
|
|
|
360
360
|
await ensureWorkspaceProvisioned(root);
|
|
361
361
|
return root;
|
|
362
362
|
};
|
|
363
|
-
const validateUiPaths = (options.mode ?? process.env.BORING_AGENT_MODE) !== "vercel-sandbox";
|
|
364
363
|
await app.register(registerAgentRoutes, {
|
|
365
364
|
workspaceRoot,
|
|
366
365
|
sessionId: options.sessionId,
|
|
@@ -379,7 +378,7 @@ async function createCoreWorkspaceAgentServer(options = {}) {
|
|
|
379
378
|
return [
|
|
380
379
|
...callerTools,
|
|
381
380
|
...createWorkspaceUiTools(getUiBridge(ctx.workspaceId), {
|
|
382
|
-
workspaceRoot:
|
|
381
|
+
workspaceRoot: ctx.workspaceFsCapability === "strong" ? ctx.workspaceRoot : void 0
|
|
383
382
|
})
|
|
384
383
|
];
|
|
385
384
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hachej/boring-core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Foundation package for boring-ui-v2 apps: DB, auth, config, HTTP app factory, and frontend app shell.",
|
|
@@ -78,9 +78,9 @@
|
|
|
78
78
|
"react-router-dom": "^7.14.2",
|
|
79
79
|
"smol-toml": "^1.6.1",
|
|
80
80
|
"zod": "^3.25.76",
|
|
81
|
-
"@hachej/boring-agent": "0.1.
|
|
82
|
-
"@hachej/boring-ui-kit": "0.1.
|
|
83
|
-
"@hachej/boring-workspace": "0.1.
|
|
81
|
+
"@hachej/boring-agent": "0.1.13",
|
|
82
|
+
"@hachej/boring-ui-kit": "0.1.13",
|
|
83
|
+
"@hachej/boring-workspace": "0.1.13"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
86
|
"@testing-library/jest-dom": "^6.9.1",
|