nexo-brain 5.3.19 → 5.3.21
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/bin/nexo-brain.js +52 -10
- package/package.json +1 -1
- package/src/auto_update.py +11 -8
- package/src/dashboard/static/favicon 2.svg +32 -0
- package/src/dashboard/static/nexo-logo 2.png +0 -0
- package/src/dashboard/static/nexo-logo 2.svg +40 -0
- package/src/dashboard/static/style 2.css +2458 -0
- package/src/dashboard/templates/adaptive 2.html +118 -0
- package/src/dashboard/templates/artifacts 2.html +133 -0
- package/src/dashboard/templates/backups 2.html +136 -0
- package/src/dashboard/templates/base 2.html +417 -0
- package/src/dashboard/templates/calendar 2.html +591 -0
- package/src/dashboard/templates/chat 2.html +356 -0
- package/src/dashboard/templates/claims 2.html +259 -0
- package/src/dashboard/templates/cortex 2.html +321 -0
- package/src/dashboard/templates/credentials 2.html +128 -0
- package/src/dashboard/templates/crons 2.html +370 -0
- package/src/dashboard/templates/dashboard 2.html +494 -0
- package/src/dashboard/templates/dreams 2.html +252 -0
- package/src/dashboard/templates/email 2.html +160 -0
- package/src/dashboard/templates/evolution 2.html +189 -0
- package/src/dashboard/templates/feed 2.html +249 -0
- package/src/dashboard/templates/followup_health 2.html +170 -0
- package/src/dashboard/templates/graph 2.html +201 -0
- package/src/dashboard/templates/guard 2.html +259 -0
- package/src/dashboard/templates/inbox 2.html +251 -0
- package/src/dashboard/templates/memory 2.html +420 -0
- package/src/dashboard/templates/operations 2.html +608 -0
- package/src/dashboard/templates/plugins 2.html +185 -0
- package/src/dashboard/templates/protocol 2.html +199 -0
- package/src/dashboard/templates/rules 2.html +246 -0
- package/src/dashboard/templates/sentiment 2.html +247 -0
- package/src/dashboard/templates/sessions 2.html +218 -0
- package/src/dashboard/templates/skills 2.html +329 -0
- package/src/dashboard/templates/somatic 2.html +73 -0
- package/src/dashboard/templates/triggers 2.html +133 -0
- package/src/dashboard/templates/trust 2.html +360 -0
- package/src/db/__init__ 2.py +259 -0
- package/src/db/_core 2.py +437 -0
- package/src/db/_credentials 2.py +124 -0
- package/src/db/_episodic 2.py +762 -0
- package/src/db/_evolution 2.py +54 -0
- package/src/db/_fts 2.py +406 -0
- package/src/db/_goal_profiles 2.py +376 -0
- package/src/db/_hot_context 2.py +660 -0
- package/src/db/_outcomes 2.py +800 -0
- package/src/db/_personal_scripts 2.py +582 -0
- package/src/db/_sessions 2.py +330 -0
- package/src/db/_tasks 2.py +91 -0
- package/src/db/_watchers 2.py +173 -0
- package/src/doctor/formatters 2.py +52 -0
- package/src/doctor/models 2.py +69 -0
- package/src/doctor/planes 2.py +87 -0
- package/src/doctor/providers/__init__ 2.py +1 -0
- package/src/doctor/providers/deep 2.py +367 -0
- package/src/evolution_cycle 2.py +519 -0
- package/src/hooks/auto_capture 2.py +208 -0
- package/src/hooks/caffeinate-guard 2.sh +8 -0
- package/src/hooks/capture-session 2.sh +21 -0
- package/src/hooks/capture-tool-logs 2.sh +158 -0
- package/src/hooks/daily-briefing-check 2.sh +33 -0
- package/src/hooks/heartbeat-enforcement 2.py +90 -0
- package/src/hooks/heartbeat-posttool 2.sh +18 -0
- package/src/hooks/inbox-hook 2.sh +76 -0
- package/src/hooks/post-compact 2.sh +152 -0
- package/src/hooks/pre-compact 2.sh +169 -0
- package/src/hooks/protocol-guardrail 2.sh +10 -0
- package/src/hooks/protocol-pretool-guardrail 2.sh +9 -0
- package/src/hooks/session-stop 2.sh +52 -0
- package/src/kg_populate 2.py +292 -0
- package/src/maintenance 2.py +53 -0
- package/src/memory_backends 2.py +71 -0
- package/src/migrate_embeddings 2.py +124 -0
- package/src/nexo_sdk 2.py +103 -0
- package/src/observability 2.py +199 -0
- package/src/plugin_loader 2.py +217 -0
- package/src/plugins/__init__ 2.py +0 -0
- package/src/plugins/artifact_registry 2.py +450 -0
- package/src/plugins/backup 2.py +127 -0
- package/src/plugins/claims_tools 2.py +119 -0
- package/src/plugins/cognitive_memory 2.py +609 -0
- package/src/plugins/core_rules 2.py +252 -0
- package/src/plugins/cortex 2.py +1155 -0
- package/src/plugins/entities 2.py +67 -0
- package/src/plugins/episodic_memory 2.py +560 -0
- package/src/plugins/evolution 2.py +167 -0
- package/src/plugins/goal_engine 2.py +142 -0
- package/src/plugins/guard 2.py +862 -0
- package/src/plugins/impact 2.py +29 -0
- package/src/plugins/knowledge_graph_tools 2.py +137 -0
- package/src/plugins/media_memory_tools 2.py +98 -0
- package/src/plugins/memory_export 2.py +196 -0
- package/src/plugins/outcomes 2.py +130 -0
- package/src/plugins/personal_scripts 2.py +117 -0
- package/src/plugins/preferences 2.py +47 -0
- package/src/plugins/protocol 2.py +1449 -0
- package/src/plugins/simple_api 2.py +106 -0
- package/src/plugins/skills 2.py +341 -0
- package/src/plugins/state_watchers 2.py +79 -0
- package/src/plugins/update 2.py +986 -0
- package/src/plugins/user_state_tools 2.py +43 -0
- package/src/plugins/workflow 2.py +588 -0
- package/src/protocol_settings 2.py +59 -0
- package/src/public_contribution 2.py +466 -0
- package/src/public_evolution_queue 2.py +241 -0
- package/src/requirements 2.txt +14 -0
- package/src/retroactive_learnings 2.py +373 -0
- package/src/rules/__init__ 2.py +0 -0
- package/src/rules/core-rules 2.json +331 -0
- package/src/rules/migrate 2.py +207 -0
- package/src/runtime_power 2.py +874 -0
- package/src/script_registry 2.py +1559 -0
- package/src/scripts/check-context 2.py +272 -0
- package/src/scripts/deep-sleep/apply_findings 2.py +2327 -0
- package/src/scripts/deep-sleep/collect 2.py +928 -0
- package/src/scripts/deep-sleep/extract 2.py +330 -0
- package/src/scripts/deep-sleep/extract-prompt 2.md +285 -0
- package/src/scripts/deep-sleep/synthesize 2.py +312 -0
- package/src/scripts/deep-sleep/synthesize-prompt 2.md +336 -0
- package/src/scripts/nexo-agent-run 2.py +75 -0
- package/src/scripts/nexo-auto-update 2.py +6 -0
- package/src/scripts/nexo-backup 2.sh +25 -0
- package/src/scripts/nexo-brain-activation 2.sh +140 -0
- package/src/scripts/nexo-catchup 2.py +300 -0
- package/src/scripts/nexo-cognitive-decay 2.py +257 -0
- package/src/scripts/nexo-cortex-cycle 2.py +293 -0
- package/src/scripts/nexo-cron-wrapper 2.sh +53 -0
- package/src/scripts/nexo-daily-self-audit 2.py +2161 -0
- package/src/scripts/nexo-dashboard 2.sh +29 -0
- package/src/scripts/nexo-deep-sleep 2.sh +86 -0
- package/src/scripts/nexo-evolution-run 2.py +1664 -0
- package/src/scripts/nexo-followup-hygiene 2.py +139 -0
- package/src/scripts/nexo-hook-record 2.py +42 -0
- package/src/scripts/nexo-immune 2.py +936 -0
- package/src/scripts/nexo-impact-scorer 2.py +117 -0
- package/src/scripts/nexo-inbox-hook 2.sh +74 -0
- package/src/scripts/nexo-install 2.py +6 -0
- package/src/scripts/nexo-learning-housekeep 2.py +401 -0
- package/src/scripts/nexo-learning-validator 2.py +266 -0
- package/src/scripts/nexo-migrate 2.py +260 -0
- package/src/scripts/nexo-outcome-checker 2.py +127 -0
- package/src/scripts/nexo-postmortem-consolidator 2.py +456 -0
- package/src/scripts/nexo-pre-commit 2.py +120 -0
- package/src/scripts/nexo-prevent-sleep 2.sh +35 -0
- package/src/scripts/nexo-proactive-dashboard 2.py +354 -0
- package/src/scripts/nexo-reflection 2.py +256 -0
- package/src/scripts/nexo-runtime-preflight 2.py +274 -0
- package/src/scripts/nexo-sleep 2.py +631 -0
- package/src/scripts/nexo-snapshot-restore 2.sh +35 -0
- package/src/scripts/nexo-sync-clients 2.py +16 -0
- package/src/scripts/nexo-synthesis 2.py +475 -0
- package/src/scripts/nexo-tcc-approve 2.sh +79 -0
- package/src/scripts/nexo-update 2.sh +306 -0
- package/src/scripts/nexo-watchdog 2.sh +1207 -0
- package/src/scripts/nexo-watchdog-smoke 2.py +119 -0
- package/src/scripts/rehydrate_learnings_from_archive 2.py +245 -0
- package/src/server 2.py +1296 -0
- package/src/skills/run-nexo-audit-phase/guide 2.md +43 -0
- package/src/skills/run-nexo-audit-phase/skill 2.json +59 -0
- package/src/skills/run-nexo-core-fix-cycle/guide 2.md +17 -0
- package/src/skills/run-nexo-core-fix-cycle/script 2.py +276 -0
- package/src/skills/run-nexo-core-fix-cycle/skill 2.json +58 -0
- package/src/skills/run-release-final-audit/guide 2.md +16 -0
- package/src/skills/run-release-final-audit/script 2.py +259 -0
- package/src/skills/run-release-final-audit/skill 2.json +77 -0
- package/src/skills/run-runtime-doctor/guide 2.md +12 -0
- package/src/skills/run-runtime-doctor/script 2.py +21 -0
- package/src/skills/run-runtime-doctor/skill 2.json +25 -0
- package/src/skills_runtime 2.py +932 -0
- package/src/state_watchers_runtime 2.py +475 -0
- package/src/storage_router 2.py +32 -0
- package/src/system_catalog 2.py +786 -0
- package/src/tools_coordination 2.py +103 -0
- package/src/tools_credentials 2.py +68 -0
- package/src/tools_drive 2.py +487 -0
- package/src/tools_hot_context 2.py +163 -0
- package/src/tools_learnings 2.py +612 -0
- package/src/tools_menu 2.py +229 -0
- package/src/tools_reminders 2.py +88 -0
- package/src/tools_reminders_crud 2.py +363 -0
- package/src/tools_sessions 2.py +1054 -0
- package/src/tools_system_catalog 2.py +19 -0
- package/src/tools_task_history 2.py +57 -0
- package/src/tools_transcripts 2.py +98 -0
- package/src/transcript_utils 2.py +412 -0
- package/src/user_context 2.py +46 -0
- package/src/user_data_portability 2.py +328 -0
- package/src/user_state_model 2.py +170 -0
- package/templates/CLAUDE.md 2.template +108 -0
- package/templates/CODEX.AGENTS.md 2.template +66 -0
- package/templates/launchagents/README 2.md +132 -0
- package/templates/launchagents/com.nexo.auto-close-sessions 2.plist +39 -0
- package/templates/launchagents/com.nexo.catchup 2.plist +39 -0
- package/templates/launchagents/com.nexo.cognitive-decay 2.plist +40 -0
- package/templates/launchagents/com.nexo.dashboard 2.plist +43 -0
- package/templates/launchagents/com.nexo.deep-sleep 2.plist +43 -0
- package/templates/launchagents/com.nexo.evolution 2.plist +44 -0
- package/templates/launchagents/com.nexo.followup-hygiene 2.plist +45 -0
- package/templates/launchagents/com.nexo.immune 2.plist +41 -0
- package/templates/launchagents/com.nexo.postmortem 2.plist +45 -0
- package/templates/launchagents/com.nexo.self-audit 2.plist +47 -0
- package/templates/launchagents/com.nexo.synthesis 2.plist +45 -0
- package/templates/launchagents/com.nexo.watchdog 2.plist +37 -0
- package/templates/nexo_helper 2.py +301 -0
- package/templates/openclaw 2.json +13 -0
- package/templates/plugin-template 2.py +40 -0
- package/templates/script-template 2.py +59 -0
- package/templates/script-template 2.sh +13 -0
- package/templates/skill-script-template 2.py +48 -0
- package/templates/skill-template 2.md +33 -0
|
@@ -0,0 +1,274 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
NEXO Runtime Preflight
|
|
4
|
+
|
|
5
|
+
Runs safe end-to-end smoke tests for Cortex and Evolution using a temporary
|
|
6
|
+
workspace and a copied SQLite database. No external API calls are performed.
|
|
7
|
+
Results are written to NEXO_HOME/logs/runtime-preflight-summary.json.
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
from __future__ import annotations
|
|
11
|
+
|
|
12
|
+
import importlib.util
|
|
13
|
+
import json
|
|
14
|
+
import os
|
|
15
|
+
import shutil
|
|
16
|
+
import sqlite3
|
|
17
|
+
import sys
|
|
18
|
+
import tempfile
|
|
19
|
+
import traceback
|
|
20
|
+
from datetime import datetime
|
|
21
|
+
from pathlib import Path
|
|
22
|
+
|
|
23
|
+
HOME = Path.home()
|
|
24
|
+
NEXO_HOME = Path(os.environ.get("NEXO_HOME", str(HOME / ".nexo")))
|
|
25
|
+
# Auto-detect: if running from repo (src/scripts/), use src/ as NEXO_CODE
|
|
26
|
+
_script_dir = Path(__file__).resolve().parent
|
|
27
|
+
_repo_src = _script_dir.parent # src/scripts/ -> src/
|
|
28
|
+
NEXO_CODE = Path(os.environ.get("NEXO_CODE", str(_repo_src) if (_repo_src / "server.py").exists() else str(NEXO_HOME)))
|
|
29
|
+
|
|
30
|
+
LOG_DIR = NEXO_HOME / "logs"
|
|
31
|
+
LOG_DIR.mkdir(parents=True, exist_ok=True)
|
|
32
|
+
SUMMARY_FILE = LOG_DIR / "runtime-preflight-summary.json"
|
|
33
|
+
DB_FILE = NEXO_HOME / "data" / "nexo.db"
|
|
34
|
+
# Evolution config: NEXO_HOME/brain/ (canonical), NEXO_HOME/cortex/ (legacy fallback), NEXO_CODE (dev fallback)
|
|
35
|
+
def _find_evolution_file(name: str) -> Path:
|
|
36
|
+
for candidate in [NEXO_HOME / "brain" / name, NEXO_HOME / "cortex" / name, NEXO_CODE / name]:
|
|
37
|
+
if candidate.exists():
|
|
38
|
+
return candidate
|
|
39
|
+
return NEXO_HOME / "brain" / name # default canonical path
|
|
40
|
+
|
|
41
|
+
CORTEX_OBJECTIVE = _find_evolution_file("evolution-objective.json")
|
|
42
|
+
CORTEX_PROMPT = _find_evolution_file("evolution-prompt.md")
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
def _load_module(name: str, path: Path):
|
|
46
|
+
spec = importlib.util.spec_from_file_location(name, str(path))
|
|
47
|
+
module = importlib.util.module_from_spec(spec)
|
|
48
|
+
sys.modules[name] = module
|
|
49
|
+
assert spec.loader is not None
|
|
50
|
+
spec.loader.exec_module(module)
|
|
51
|
+
return module
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
def _write_summary(summary: dict):
|
|
55
|
+
SUMMARY_FILE.write_text(json.dumps(summary, indent=2, ensure_ascii=False))
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
def _fake_cortex_response(model: str) -> str:
|
|
59
|
+
if "opus" in model:
|
|
60
|
+
payload = {
|
|
61
|
+
"analysis": "Smoke evolution run over temp workspace",
|
|
62
|
+
"proposals": [
|
|
63
|
+
{
|
|
64
|
+
"dimension": "self_improvement",
|
|
65
|
+
"classification": "propose",
|
|
66
|
+
"action": "Add a regression smoke before live cycles",
|
|
67
|
+
"reasoning": "Smoke run should stay side-effect free",
|
|
68
|
+
}
|
|
69
|
+
],
|
|
70
|
+
"dimension_scores": {
|
|
71
|
+
"episodic_memory": 86,
|
|
72
|
+
"autonomy": 53,
|
|
73
|
+
"proactivity": 34,
|
|
74
|
+
"self_improvement": 30,
|
|
75
|
+
"agi": 6,
|
|
76
|
+
},
|
|
77
|
+
"score_evidence": {
|
|
78
|
+
"self_improvement": "Temp evolution smoke completed successfully",
|
|
79
|
+
},
|
|
80
|
+
}
|
|
81
|
+
else:
|
|
82
|
+
payload = {
|
|
83
|
+
"actions_taken": ["preflight perception completed"],
|
|
84
|
+
"signals_detected": 1,
|
|
85
|
+
"pending_questions": [],
|
|
86
|
+
"execute": [],
|
|
87
|
+
"next_interval_suggestion": 600,
|
|
88
|
+
"reflection_done": False,
|
|
89
|
+
"dmn_done": False,
|
|
90
|
+
"briefing_update": {
|
|
91
|
+
"actions_taken": ["perception smoke ok"],
|
|
92
|
+
"signals_active": [{"summary": "Smoke signal", "urgency": "INFO", "score": 10}],
|
|
93
|
+
"recommendations": ["keep runtime checks green"],
|
|
94
|
+
"pending_questions_unanswered": [],
|
|
95
|
+
"dmn_summary": "",
|
|
96
|
+
},
|
|
97
|
+
"working_memory": {
|
|
98
|
+
"current_threads": ["runtime preflight"],
|
|
99
|
+
"attention_focus": "runtime integrity",
|
|
100
|
+
"last_reasoning": "API mocked successfully",
|
|
101
|
+
"watching": ["state writes", "briefing writes"],
|
|
102
|
+
"momentum": "stable",
|
|
103
|
+
},
|
|
104
|
+
"error": None,
|
|
105
|
+
}
|
|
106
|
+
return json.dumps(payload, ensure_ascii=False)
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
def _fake_runner_response() -> tuple[str, dict]:
|
|
110
|
+
payload = {
|
|
111
|
+
"analysis": "Standalone evolution smoke over temp DB",
|
|
112
|
+
"patterns": [
|
|
113
|
+
{"type": "smoke", "description": "runner executed over temp workspace", "frequency": "once"}
|
|
114
|
+
],
|
|
115
|
+
"proposals": [
|
|
116
|
+
{
|
|
117
|
+
"dimension": "self_improvement",
|
|
118
|
+
"classification": "propose",
|
|
119
|
+
"action": "Keep standalone evolution covered by preflight",
|
|
120
|
+
"reasoning": "Regression prevention",
|
|
121
|
+
}
|
|
122
|
+
],
|
|
123
|
+
"dimension_scores": {
|
|
124
|
+
"episodic_memory": 87,
|
|
125
|
+
"autonomy": 54,
|
|
126
|
+
"proactivity": 35,
|
|
127
|
+
"self_improvement": 31,
|
|
128
|
+
"agi": 6,
|
|
129
|
+
},
|
|
130
|
+
"score_evidence": {
|
|
131
|
+
"self_improvement": "standalone runner smoke ok",
|
|
132
|
+
},
|
|
133
|
+
}
|
|
134
|
+
usage = {"input_tokens": 1234, "output_tokens": 432}
|
|
135
|
+
return json.dumps(payload, ensure_ascii=False), usage
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
def main() -> int:
|
|
139
|
+
started = datetime.now().isoformat()
|
|
140
|
+
summary = {
|
|
141
|
+
"timestamp": started,
|
|
142
|
+
"ok": False,
|
|
143
|
+
"checks": {},
|
|
144
|
+
"errors": [],
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
if not DB_FILE.exists():
|
|
148
|
+
summary["errors"].append("nexo.db missing")
|
|
149
|
+
_write_summary(summary)
|
|
150
|
+
return 1
|
|
151
|
+
|
|
152
|
+
preflight_root = HOME / ".codex" / "memories"
|
|
153
|
+
preflight_root.mkdir(parents=True, exist_ok=True)
|
|
154
|
+
temp_root = Path(tempfile.mkdtemp(prefix="nexo-runtime-preflight-", dir=str(preflight_root)))
|
|
155
|
+
try:
|
|
156
|
+
temp_db = temp_root / "nexo.db"
|
|
157
|
+
shutil.copy2(DB_FILE, temp_db)
|
|
158
|
+
|
|
159
|
+
temp_cortex_dir = temp_root / "brain"
|
|
160
|
+
temp_logs_dir = temp_root / "logs"
|
|
161
|
+
temp_coord_dir = temp_root / "coordination"
|
|
162
|
+
temp_daily_dir = temp_root / "daily_summaries"
|
|
163
|
+
temp_dmn_dir = temp_root / "dmn_insights"
|
|
164
|
+
temp_snapshots_dir = temp_root / "snapshots"
|
|
165
|
+
temp_sandbox_dir = temp_root / "sandbox" / "workspace"
|
|
166
|
+
temp_scripts_dir = temp_root / "scripts"
|
|
167
|
+
for directory in [
|
|
168
|
+
temp_cortex_dir, temp_logs_dir, temp_coord_dir, temp_daily_dir,
|
|
169
|
+
temp_dmn_dir, temp_snapshots_dir, temp_sandbox_dir, temp_scripts_dir,
|
|
170
|
+
]:
|
|
171
|
+
directory.mkdir(parents=True, exist_ok=True)
|
|
172
|
+
|
|
173
|
+
temp_objective = temp_cortex_dir / "evolution-objective.json"
|
|
174
|
+
temp_prompt = temp_cortex_dir / "evolution-prompt.md"
|
|
175
|
+
if CORTEX_OBJECTIVE.exists():
|
|
176
|
+
shutil.copy2(CORTEX_OBJECTIVE, temp_objective)
|
|
177
|
+
else:
|
|
178
|
+
# Create a minimal objective so evolution smoke tests can proceed
|
|
179
|
+
temp_objective.write_text(json.dumps({"evolution_enabled": True, "dimensions": {}}, indent=2))
|
|
180
|
+
if CORTEX_PROMPT.exists():
|
|
181
|
+
shutil.copy2(CORTEX_PROMPT, temp_prompt)
|
|
182
|
+
snapshot_restore = NEXO_CODE / "scripts" / "nexo-snapshot-restore.sh"
|
|
183
|
+
if snapshot_restore.exists():
|
|
184
|
+
shutil.copy2(snapshot_restore, temp_scripts_dir / "nexo-snapshot-restore.sh")
|
|
185
|
+
|
|
186
|
+
temp_api_key = temp_root / "anthropic-api-key.txt"
|
|
187
|
+
temp_api_key.write_text("smoke-test-key")
|
|
188
|
+
|
|
189
|
+
evolution_cycle = _load_module("evolution_cycle", NEXO_CODE / "evolution_cycle.py")
|
|
190
|
+
evolution_cycle.NEXO_DB = temp_db
|
|
191
|
+
evolution_cycle.NEXO_HOME = temp_root
|
|
192
|
+
evolution_cycle.SANDBOX_DIR = temp_sandbox_dir
|
|
193
|
+
evolution_cycle.SNAPSHOTS_DIR = temp_snapshots_dir
|
|
194
|
+
evolution_cycle.OBJECTIVE_FILE = temp_objective
|
|
195
|
+
evolution_cycle.PROMPT_FILE = temp_prompt
|
|
196
|
+
evolution_cycle.RESTORE_LOG = temp_logs_dir / "snapshot-restores.log"
|
|
197
|
+
|
|
198
|
+
week_data = evolution_cycle.get_week_data(str(temp_db))
|
|
199
|
+
prompt = evolution_cycle.build_evolution_prompt(week_data, evolution_cycle.load_objective())
|
|
200
|
+
restore_ok = evolution_cycle.dry_run_restore_test()
|
|
201
|
+
if not restore_ok:
|
|
202
|
+
raise RuntimeError("dry_run_restore_test failed")
|
|
203
|
+
summary["checks"]["evolution_cycle"] = {
|
|
204
|
+
"learnings": len(week_data.get("learnings", [])),
|
|
205
|
+
"decisions": len(week_data.get("decisions", [])),
|
|
206
|
+
"prompt_chars": len(prompt),
|
|
207
|
+
"restore_ok": restore_ok,
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
cortex = _load_module("cortex_plugin", NEXO_CODE / "plugins" / "cortex.py")
|
|
211
|
+
cortex.NEXO_DB = temp_db
|
|
212
|
+
cortex.DRY_RUN = True
|
|
213
|
+
cortex.BRIEFING_FILE = temp_cortex_dir / "briefing.json"
|
|
214
|
+
cortex.HEALTH_FILE = temp_cortex_dir / "health.json"
|
|
215
|
+
cortex.STATE_FILE = temp_cortex_dir / "state.json"
|
|
216
|
+
cortex.STATE_TMP = temp_cortex_dir / "state.tmp"
|
|
217
|
+
cortex.LOG_DIR = temp_logs_dir
|
|
218
|
+
cortex.COORD_DIR = temp_coord_dir
|
|
219
|
+
cortex.SIGNALS_FILE = temp_coord_dir / "pending-signals.json"
|
|
220
|
+
cortex.DAILY_SUMMARIES_DIR = temp_daily_dir
|
|
221
|
+
cortex.DMN_INSIGHTS_DIR = temp_dmn_dir
|
|
222
|
+
cortex.FAILURE_COUNT_FILE = temp_cortex_dir / ".failure-count"
|
|
223
|
+
cortex.PID_FILE = temp_cortex_dir / "cortex.pid"
|
|
224
|
+
cortex.API_KEY_FILE = temp_api_key
|
|
225
|
+
cortex.wa_notify = lambda *args, **kwargs: None
|
|
226
|
+
cortex.poll_wa_inbox = lambda state: None
|
|
227
|
+
cortex._check_health_endpoints = lambda: []
|
|
228
|
+
cortex._call_anthropic = lambda prompt, model=None, max_tokens=4096: _fake_cortex_response(model or "")
|
|
229
|
+
|
|
230
|
+
# Smoke test: verify cortex plugin loads and has expected tools
|
|
231
|
+
cortex_path = NEXO_CODE / "plugins" / "cortex.py"
|
|
232
|
+
if cortex_path.exists():
|
|
233
|
+
import importlib.util
|
|
234
|
+
spec = importlib.util.spec_from_file_location("cortex_plugin", str(cortex_path))
|
|
235
|
+
cortex_mod = importlib.util.module_from_spec(spec)
|
|
236
|
+
spec.loader.exec_module(cortex_mod)
|
|
237
|
+
assert hasattr(cortex_mod, 'TOOLS'), "cortex plugin missing TOOLS"
|
|
238
|
+
tool_names = [t[1] for t in cortex_mod.TOOLS]
|
|
239
|
+
assert "nexo_cortex_check" in tool_names, "cortex plugin missing nexo_cortex_check tool"
|
|
240
|
+
else:
|
|
241
|
+
tool_names = ["cortex.py not found"]
|
|
242
|
+
summary["checks"]["cortex_plugin"] = {
|
|
243
|
+
"status": "pass",
|
|
244
|
+
"tools_found": tool_names,
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
# Evolution runner: component verification (not full execution — that needs CLI)
|
|
248
|
+
runner_path = NEXO_CODE / "scripts" / "nexo-evolution-run.py"
|
|
249
|
+
if runner_path.exists():
|
|
250
|
+
runner = _load_module("nexo_evolution_run", runner_path)
|
|
251
|
+
checks = {
|
|
252
|
+
"module_loads": True,
|
|
253
|
+
"has_run": hasattr(runner, 'run'),
|
|
254
|
+
"has_load_objective": hasattr(runner, 'load_objective'),
|
|
255
|
+
"has_get_week_data": hasattr(runner, 'get_week_data'),
|
|
256
|
+
}
|
|
257
|
+
summary["checks"]["standalone_runner"] = checks
|
|
258
|
+
else:
|
|
259
|
+
summary["checks"]["standalone_runner"] = {"status": "skip", "reason": "runner not found"}
|
|
260
|
+
|
|
261
|
+
summary["ok"] = True
|
|
262
|
+
_write_summary(summary)
|
|
263
|
+
return 0
|
|
264
|
+
except Exception as exc:
|
|
265
|
+
summary["errors"].append(f"{type(exc).__name__}: {exc}")
|
|
266
|
+
summary["errors"].append(traceback.format_exc())
|
|
267
|
+
_write_summary(summary)
|
|
268
|
+
return 1
|
|
269
|
+
finally:
|
|
270
|
+
shutil.rmtree(temp_root, ignore_errors=True)
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
if __name__ == "__main__":
|
|
274
|
+
sys.exit(main())
|