@exaudeus/memory-mcp 1.9.7 → 1.9.8
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/index.js +4 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1784,8 +1784,10 @@ async function main() {
|
|
|
1784
1784
|
await writeCrashReport(report).catch(() => { });
|
|
1785
1785
|
}
|
|
1786
1786
|
}
|
|
1787
|
-
// Determine server mode based on lobe health
|
|
1788
|
-
|
|
1787
|
+
// Determine server mode based on lobe health.
|
|
1788
|
+
// Zero configured lobes is a valid operational state: tools should stay available
|
|
1789
|
+
// so the agent can bootstrap the first project lobe.
|
|
1790
|
+
if (lobeConfigs.size > 0 && healthyLobes === 0) {
|
|
1789
1791
|
serverMode = {
|
|
1790
1792
|
kind: 'safe-mode',
|
|
1791
1793
|
error: `All ${lobeConfigs.size} lobes failed to initialize.`,
|