nexo-brain 2.6.17 → 2.6.18
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/.claude-plugin/plugin.json +1 -1
- package/README.md +10 -2
- package/package.json +1 -1
- package/src/client_sync.py +41 -19
- package/src/cognitive/_search.py +30 -3
- package/src/doctor/providers/runtime.py +325 -0
- package/src/plugins/cognitive_memory.py +4 -0
- package/src/scripts/deep-sleep/apply_findings.py +393 -0
- package/src/scripts/deep-sleep/collect.py +221 -0
- package/src/scripts/deep-sleep/synthesize-prompt.md +13 -0
- package/src/scripts/deep-sleep/synthesize.py +1 -0
|
@@ -161,6 +161,7 @@ def main():
|
|
|
161
161
|
for candidate in [
|
|
162
162
|
DEEP_SLEEP_DIR / f"{target_date}-analysis.json",
|
|
163
163
|
DEEP_SLEEP_DIR / f"{target_date}-synthesis.json",
|
|
164
|
+
DEEP_SLEEP_DIR / target_date / "synthesis.json",
|
|
164
165
|
]:
|
|
165
166
|
if candidate.exists() and candidate.stat().st_size > 100:
|
|
166
167
|
try:
|