symphifo 0.1.10 → 0.1.11
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "symphifo",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Filesystem-backed local Symphifo orchestrator with a TypeScript CLI, MCP mode, and multi-agent Codex or Claude workflows.",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"pino": "^10.3.1",
|
|
37
37
|
"pino-pretty": "^13.1.3",
|
|
38
38
|
"raffel": "^1.0.7",
|
|
39
|
-
"s3db.js": "
|
|
39
|
+
"s3db.js": "21.2.3",
|
|
40
40
|
"tsx": "^4.21.0",
|
|
41
41
|
"yaml": "^2.8.2"
|
|
42
42
|
},
|
|
@@ -99,8 +99,16 @@ export async function startApiServer(
|
|
|
99
99
|
port,
|
|
100
100
|
host: "0.0.0.0",
|
|
101
101
|
versionPrefix: false,
|
|
102
|
-
rootRoute: (c: any) => c.html(dashboardHtml),
|
|
103
102
|
docs: { enabled: true, title: "Symphifo API", version: "1.0.0", description: "Local orchestration API for Symphifo" },
|
|
103
|
+
middlewares: [
|
|
104
|
+
async (c: any, next: () => Promise<void>) => {
|
|
105
|
+
if (c.req.path === "/") {
|
|
106
|
+
const redirectTo = new URL("/index.html", c.req.url).toString();
|
|
107
|
+
return c.redirect(redirectTo);
|
|
108
|
+
}
|
|
109
|
+
return next();
|
|
110
|
+
},
|
|
111
|
+
],
|
|
104
112
|
cors: { enabled: true, origin: "*" },
|
|
105
113
|
logging: { enabled: true, excludePaths: ["/health", "/status"] },
|
|
106
114
|
compression: { enabled: true, threshold: 1024 },
|