@fuzeelogik/myflo 1.0.0 → 1.0.1
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.
|
@@ -39,18 +39,18 @@ async function getBackend() {
|
|
|
39
39
|
if (_backend) return _backend;
|
|
40
40
|
if (!existsSync(FLO_HOME)) await mkdir(FLO_HOME, { recursive: true });
|
|
41
41
|
// Dynamic import keeps the heavy module out of the load path for the JSONL
|
|
42
|
-
// codepath. @myflo/memory is
|
|
43
|
-
//
|
|
44
|
-
//
|
|
45
|
-
// jsonl backend.
|
|
42
|
+
// codepath. @myflo/memory is not yet published to npm — the agentdb backend
|
|
43
|
+
// only works when myflo is run from the monorepo (pnpm workspace resolves
|
|
44
|
+
// the package locally). For standalone `npx @fuzeelogik/myflo` installs,
|
|
45
|
+
// stick with the default jsonl backend.
|
|
46
46
|
let SqlJsBackend;
|
|
47
47
|
try {
|
|
48
48
|
({ SqlJsBackend } = await import('@myflo/memory'));
|
|
49
49
|
} catch (err) {
|
|
50
50
|
throw new Error(
|
|
51
|
-
`agentdb backend requires @myflo/memory
|
|
52
|
-
`
|
|
53
|
-
`
|
|
51
|
+
`agentdb backend requires @myflo/memory, which is not yet published to npm. ` +
|
|
52
|
+
`It currently resolves only inside the myflo monorepo. ` +
|
|
53
|
+
`Stick with the default jsonl backend (unset FLO_MEMORY_BACKEND). ` +
|
|
54
54
|
`Underlying error: ${err.message}`
|
|
55
55
|
);
|
|
56
56
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fuzeelogik/myflo",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "myflo — local-first developer workbench. CLI + MCP server + Next.js dashboard. Forked from ruflo for the runtime substrate; flo CLI on top is ours.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"README.md"
|
|
15
15
|
],
|
|
16
16
|
"dependencies": {},
|
|
17
|
-
"
|
|
17
|
+
"devDependencies": {
|
|
18
18
|
"@myflo/memory": "workspace:*"
|
|
19
19
|
},
|
|
20
20
|
"engines": {
|