nexo-brain 5.3.20 → 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.
Files changed (210) hide show
  1. package/.claude-plugin/plugin.json +1 -1
  2. package/package.json +1 -1
  3. package/src/auto_update.py +11 -8
  4. package/src/dashboard/static/favicon 2.svg +32 -0
  5. package/src/dashboard/static/nexo-logo 2.png +0 -0
  6. package/src/dashboard/static/nexo-logo 2.svg +40 -0
  7. package/src/dashboard/static/style 2.css +2458 -0
  8. package/src/dashboard/templates/adaptive 2.html +118 -0
  9. package/src/dashboard/templates/artifacts 2.html +133 -0
  10. package/src/dashboard/templates/backups 2.html +136 -0
  11. package/src/dashboard/templates/base 2.html +417 -0
  12. package/src/dashboard/templates/calendar 2.html +591 -0
  13. package/src/dashboard/templates/chat 2.html +356 -0
  14. package/src/dashboard/templates/claims 2.html +259 -0
  15. package/src/dashboard/templates/cortex 2.html +321 -0
  16. package/src/dashboard/templates/credentials 2.html +128 -0
  17. package/src/dashboard/templates/crons 2.html +370 -0
  18. package/src/dashboard/templates/dashboard 2.html +494 -0
  19. package/src/dashboard/templates/dreams 2.html +252 -0
  20. package/src/dashboard/templates/email 2.html +160 -0
  21. package/src/dashboard/templates/evolution 2.html +189 -0
  22. package/src/dashboard/templates/feed 2.html +249 -0
  23. package/src/dashboard/templates/followup_health 2.html +170 -0
  24. package/src/dashboard/templates/graph 2.html +201 -0
  25. package/src/dashboard/templates/guard 2.html +259 -0
  26. package/src/dashboard/templates/inbox 2.html +251 -0
  27. package/src/dashboard/templates/memory 2.html +420 -0
  28. package/src/dashboard/templates/operations 2.html +608 -0
  29. package/src/dashboard/templates/plugins 2.html +185 -0
  30. package/src/dashboard/templates/protocol 2.html +199 -0
  31. package/src/dashboard/templates/rules 2.html +246 -0
  32. package/src/dashboard/templates/sentiment 2.html +247 -0
  33. package/src/dashboard/templates/sessions 2.html +218 -0
  34. package/src/dashboard/templates/skills 2.html +329 -0
  35. package/src/dashboard/templates/somatic 2.html +73 -0
  36. package/src/dashboard/templates/triggers 2.html +133 -0
  37. package/src/dashboard/templates/trust 2.html +360 -0
  38. package/src/db/__init__ 2.py +259 -0
  39. package/src/db/_core 2.py +437 -0
  40. package/src/db/_credentials 2.py +124 -0
  41. package/src/db/_episodic 2.py +762 -0
  42. package/src/db/_evolution 2.py +54 -0
  43. package/src/db/_fts 2.py +406 -0
  44. package/src/db/_goal_profiles 2.py +376 -0
  45. package/src/db/_hot_context 2.py +660 -0
  46. package/src/db/_outcomes 2.py +800 -0
  47. package/src/db/_personal_scripts 2.py +582 -0
  48. package/src/db/_sessions 2.py +330 -0
  49. package/src/db/_tasks 2.py +91 -0
  50. package/src/db/_watchers 2.py +173 -0
  51. package/src/doctor/formatters 2.py +52 -0
  52. package/src/doctor/models 2.py +69 -0
  53. package/src/doctor/planes 2.py +87 -0
  54. package/src/doctor/providers/__init__ 2.py +1 -0
  55. package/src/doctor/providers/deep 2.py +367 -0
  56. package/src/evolution_cycle 2.py +519 -0
  57. package/src/hooks/auto_capture 2.py +208 -0
  58. package/src/hooks/caffeinate-guard 2.sh +8 -0
  59. package/src/hooks/capture-session 2.sh +21 -0
  60. package/src/hooks/capture-tool-logs 2.sh +158 -0
  61. package/src/hooks/daily-briefing-check 2.sh +33 -0
  62. package/src/hooks/heartbeat-enforcement 2.py +90 -0
  63. package/src/hooks/heartbeat-posttool 2.sh +18 -0
  64. package/src/hooks/inbox-hook 2.sh +76 -0
  65. package/src/hooks/post-compact 2.sh +152 -0
  66. package/src/hooks/pre-compact 2.sh +169 -0
  67. package/src/hooks/protocol-guardrail 2.sh +10 -0
  68. package/src/hooks/protocol-pretool-guardrail 2.sh +9 -0
  69. package/src/hooks/session-stop 2.sh +52 -0
  70. package/src/kg_populate 2.py +292 -0
  71. package/src/maintenance 2.py +53 -0
  72. package/src/memory_backends 2.py +71 -0
  73. package/src/migrate_embeddings 2.py +124 -0
  74. package/src/nexo_sdk 2.py +103 -0
  75. package/src/observability 2.py +199 -0
  76. package/src/plugin_loader 2.py +217 -0
  77. package/src/plugins/__init__ 2.py +0 -0
  78. package/src/plugins/artifact_registry 2.py +450 -0
  79. package/src/plugins/backup 2.py +127 -0
  80. package/src/plugins/claims_tools 2.py +119 -0
  81. package/src/plugins/cognitive_memory 2.py +609 -0
  82. package/src/plugins/core_rules 2.py +252 -0
  83. package/src/plugins/cortex 2.py +1155 -0
  84. package/src/plugins/entities 2.py +67 -0
  85. package/src/plugins/episodic_memory 2.py +560 -0
  86. package/src/plugins/evolution 2.py +167 -0
  87. package/src/plugins/goal_engine 2.py +142 -0
  88. package/src/plugins/guard 2.py +862 -0
  89. package/src/plugins/impact 2.py +29 -0
  90. package/src/plugins/knowledge_graph_tools 2.py +137 -0
  91. package/src/plugins/media_memory_tools 2.py +98 -0
  92. package/src/plugins/memory_export 2.py +196 -0
  93. package/src/plugins/outcomes 2.py +130 -0
  94. package/src/plugins/personal_scripts 2.py +117 -0
  95. package/src/plugins/preferences 2.py +47 -0
  96. package/src/plugins/protocol 2.py +1449 -0
  97. package/src/plugins/simple_api 2.py +106 -0
  98. package/src/plugins/skills 2.py +341 -0
  99. package/src/plugins/state_watchers 2.py +79 -0
  100. package/src/plugins/update 2.py +986 -0
  101. package/src/plugins/user_state_tools 2.py +43 -0
  102. package/src/plugins/workflow 2.py +588 -0
  103. package/src/protocol_settings 2.py +59 -0
  104. package/src/public_contribution 2.py +466 -0
  105. package/src/public_evolution_queue 2.py +241 -0
  106. package/src/requirements 2.txt +14 -0
  107. package/src/retroactive_learnings 2.py +373 -0
  108. package/src/rules/__init__ 2.py +0 -0
  109. package/src/rules/core-rules 2.json +331 -0
  110. package/src/rules/migrate 2.py +207 -0
  111. package/src/runtime_power 2.py +874 -0
  112. package/src/script_registry 2.py +1559 -0
  113. package/src/scripts/check-context 2.py +272 -0
  114. package/src/scripts/deep-sleep/apply_findings 2.py +2327 -0
  115. package/src/scripts/deep-sleep/collect 2.py +928 -0
  116. package/src/scripts/deep-sleep/extract 2.py +330 -0
  117. package/src/scripts/deep-sleep/extract-prompt 2.md +285 -0
  118. package/src/scripts/deep-sleep/synthesize 2.py +312 -0
  119. package/src/scripts/deep-sleep/synthesize-prompt 2.md +336 -0
  120. package/src/scripts/nexo-agent-run 2.py +75 -0
  121. package/src/scripts/nexo-auto-update 2.py +6 -0
  122. package/src/scripts/nexo-backup 2.sh +25 -0
  123. package/src/scripts/nexo-brain-activation 2.sh +140 -0
  124. package/src/scripts/nexo-catchup 2.py +300 -0
  125. package/src/scripts/nexo-cognitive-decay 2.py +257 -0
  126. package/src/scripts/nexo-cortex-cycle 2.py +293 -0
  127. package/src/scripts/nexo-cron-wrapper 2.sh +53 -0
  128. package/src/scripts/nexo-daily-self-audit 2.py +2161 -0
  129. package/src/scripts/nexo-dashboard 2.sh +29 -0
  130. package/src/scripts/nexo-deep-sleep 2.sh +86 -0
  131. package/src/scripts/nexo-evolution-run 2.py +1664 -0
  132. package/src/scripts/nexo-followup-hygiene 2.py +139 -0
  133. package/src/scripts/nexo-hook-record 2.py +42 -0
  134. package/src/scripts/nexo-immune 2.py +936 -0
  135. package/src/scripts/nexo-impact-scorer 2.py +117 -0
  136. package/src/scripts/nexo-inbox-hook 2.sh +74 -0
  137. package/src/scripts/nexo-install 2.py +6 -0
  138. package/src/scripts/nexo-learning-housekeep 2.py +401 -0
  139. package/src/scripts/nexo-learning-validator 2.py +266 -0
  140. package/src/scripts/nexo-migrate 2.py +260 -0
  141. package/src/scripts/nexo-outcome-checker 2.py +127 -0
  142. package/src/scripts/nexo-postmortem-consolidator 2.py +456 -0
  143. package/src/scripts/nexo-pre-commit 2.py +120 -0
  144. package/src/scripts/nexo-prevent-sleep 2.sh +35 -0
  145. package/src/scripts/nexo-proactive-dashboard 2.py +354 -0
  146. package/src/scripts/nexo-reflection 2.py +256 -0
  147. package/src/scripts/nexo-runtime-preflight 2.py +274 -0
  148. package/src/scripts/nexo-sleep 2.py +631 -0
  149. package/src/scripts/nexo-snapshot-restore 2.sh +35 -0
  150. package/src/scripts/nexo-sync-clients 2.py +16 -0
  151. package/src/scripts/nexo-synthesis 2.py +475 -0
  152. package/src/scripts/nexo-tcc-approve 2.sh +79 -0
  153. package/src/scripts/nexo-update 2.sh +306 -0
  154. package/src/scripts/nexo-watchdog 2.sh +1207 -0
  155. package/src/scripts/nexo-watchdog-smoke 2.py +119 -0
  156. package/src/scripts/rehydrate_learnings_from_archive 2.py +245 -0
  157. package/src/server 2.py +1296 -0
  158. package/src/skills/run-nexo-audit-phase/guide 2.md +43 -0
  159. package/src/skills/run-nexo-audit-phase/skill 2.json +59 -0
  160. package/src/skills/run-nexo-core-fix-cycle/guide 2.md +17 -0
  161. package/src/skills/run-nexo-core-fix-cycle/script 2.py +276 -0
  162. package/src/skills/run-nexo-core-fix-cycle/skill 2.json +58 -0
  163. package/src/skills/run-release-final-audit/guide 2.md +16 -0
  164. package/src/skills/run-release-final-audit/script 2.py +259 -0
  165. package/src/skills/run-release-final-audit/skill 2.json +77 -0
  166. package/src/skills/run-runtime-doctor/guide 2.md +12 -0
  167. package/src/skills/run-runtime-doctor/script 2.py +21 -0
  168. package/src/skills/run-runtime-doctor/skill 2.json +25 -0
  169. package/src/skills_runtime 2.py +932 -0
  170. package/src/state_watchers_runtime 2.py +475 -0
  171. package/src/storage_router 2.py +32 -0
  172. package/src/system_catalog 2.py +786 -0
  173. package/src/tools_coordination 2.py +103 -0
  174. package/src/tools_credentials 2.py +68 -0
  175. package/src/tools_drive 2.py +487 -0
  176. package/src/tools_hot_context 2.py +163 -0
  177. package/src/tools_learnings 2.py +612 -0
  178. package/src/tools_menu 2.py +229 -0
  179. package/src/tools_reminders 2.py +88 -0
  180. package/src/tools_reminders_crud 2.py +363 -0
  181. package/src/tools_sessions 2.py +1054 -0
  182. package/src/tools_system_catalog 2.py +19 -0
  183. package/src/tools_task_history 2.py +57 -0
  184. package/src/tools_transcripts 2.py +98 -0
  185. package/src/transcript_utils 2.py +412 -0
  186. package/src/user_context 2.py +46 -0
  187. package/src/user_data_portability 2.py +328 -0
  188. package/src/user_state_model 2.py +170 -0
  189. package/templates/CLAUDE.md 2.template +108 -0
  190. package/templates/CODEX.AGENTS.md 2.template +66 -0
  191. package/templates/launchagents/README 2.md +132 -0
  192. package/templates/launchagents/com.nexo.auto-close-sessions 2.plist +39 -0
  193. package/templates/launchagents/com.nexo.catchup 2.plist +39 -0
  194. package/templates/launchagents/com.nexo.cognitive-decay 2.plist +40 -0
  195. package/templates/launchagents/com.nexo.dashboard 2.plist +43 -0
  196. package/templates/launchagents/com.nexo.deep-sleep 2.plist +43 -0
  197. package/templates/launchagents/com.nexo.evolution 2.plist +44 -0
  198. package/templates/launchagents/com.nexo.followup-hygiene 2.plist +45 -0
  199. package/templates/launchagents/com.nexo.immune 2.plist +41 -0
  200. package/templates/launchagents/com.nexo.postmortem 2.plist +45 -0
  201. package/templates/launchagents/com.nexo.self-audit 2.plist +47 -0
  202. package/templates/launchagents/com.nexo.synthesis 2.plist +45 -0
  203. package/templates/launchagents/com.nexo.watchdog 2.plist +37 -0
  204. package/templates/nexo_helper 2.py +301 -0
  205. package/templates/openclaw 2.json +13 -0
  206. package/templates/plugin-template 2.py +40 -0
  207. package/templates/script-template 2.py +59 -0
  208. package/templates/script-template 2.sh +13 -0
  209. package/templates/skill-script-template 2.py +48 -0
  210. package/templates/skill-template 2.md +33 -0
@@ -0,0 +1,252 @@
1
+ """Core Rules plugin — query and manage versioned behavioral rules."""
2
+
3
+ import json
4
+ import os
5
+
6
+
7
+ def _get_db():
8
+ from db import get_db
9
+ return get_db()
10
+
11
+
12
+ def _seed_if_empty():
13
+ """Seed rules from JSON if table is empty (first run after migration)."""
14
+ import sys
15
+ conn = _get_db()
16
+ try:
17
+ count = conn.execute("SELECT COUNT(*) FROM core_rules WHERE is_active = 1").fetchone()[0]
18
+ except Exception:
19
+ # Table doesn't exist yet — create it
20
+ conn.execute("""CREATE TABLE IF NOT EXISTS core_rules (
21
+ id TEXT PRIMARY KEY, category TEXT NOT NULL, rule TEXT NOT NULL,
22
+ why TEXT NOT NULL, importance INTEGER NOT NULL DEFAULT 3,
23
+ type TEXT NOT NULL DEFAULT 'advisory', added_in TEXT DEFAULT '',
24
+ removed_in TEXT DEFAULT NULL, is_active INTEGER NOT NULL DEFAULT 1)""")
25
+ conn.execute("""CREATE TABLE IF NOT EXISTS core_rules_version (
26
+ id INTEGER PRIMARY KEY, version TEXT NOT NULL, updated_at TEXT NOT NULL)""")
27
+ conn.execute("INSERT OR IGNORE INTO core_rules_version (id, version, updated_at) VALUES (1, '0.0.0', datetime('now'))")
28
+ conn.commit()
29
+ count = 0
30
+ if count > 0:
31
+ return
32
+
33
+ rules_file = os.path.join(os.path.dirname(os.path.dirname(os.path.abspath(__file__))),
34
+ "rules", "core-rules.json")
35
+ if not os.path.exists(rules_file):
36
+ print(f"[core_rules] WARNING: {rules_file} not found, skipping seed", file=sys.stderr)
37
+ return
38
+
39
+ try:
40
+ with open(rules_file) as f:
41
+ data = json.load(f)
42
+
43
+ version = data["_meta"]["version"]
44
+ loaded = 0
45
+ for cat_key, cat in data["categories"].items():
46
+ for rule in cat["rules"]:
47
+ conn.execute(
48
+ """INSERT OR REPLACE INTO core_rules (id, category, rule, why, importance, type, added_in)
49
+ VALUES (?, ?, ?, ?, ?, ?, ?)""",
50
+ (rule["id"], cat_key, rule["rule"], rule["why"],
51
+ rule["importance"], rule["type"], rule.get("added_in", version))
52
+ )
53
+ loaded += 1
54
+
55
+ conn.execute("UPDATE core_rules_version SET version = ?, updated_at = datetime('now') WHERE id = 1", (version,))
56
+ conn.commit()
57
+ print(f"[core_rules] Seeded {loaded} rules (v{version})", file=sys.stderr)
58
+ except Exception as e:
59
+ print(f"[core_rules] ERROR seeding rules: {e}", file=sys.stderr)
60
+
61
+
62
+ def handle_rules_check(area: str = "", importance_min: int = 0) -> str:
63
+ """Get applicable core rules for a given area or action.
64
+
65
+ Returns BLOCKING rules that must be followed and ADVISORY rules as guidance.
66
+ Call this before taking any significant action.
67
+
68
+ Args:
69
+ area: Area of work — 'code', 'delegation', 'communication', 'memory', or empty for all.
70
+ Maps to categories: code→execution+integrity, delegation→delegation, etc.
71
+ importance_min: Minimum importance level (1-5, default 0 = all rules)
72
+ """
73
+ _seed_if_empty()
74
+ conn = _get_db()
75
+
76
+ area_to_categories = {
77
+ "code": ("integrity", "execution"),
78
+ "edit": ("integrity", "execution"),
79
+ "delegation": ("delegation",),
80
+ "delegate": ("delegation",),
81
+ "subagent": ("delegation",),
82
+ "communication": ("communication",),
83
+ "respond": ("communication",),
84
+ "memory": ("memory",),
85
+ "learn": ("memory",),
86
+ "proactivity": ("proactivity",),
87
+ "protect": ("proactivity",),
88
+ }
89
+
90
+ where = "WHERE is_active = 1"
91
+ params = []
92
+
93
+ if area and area.lower() in area_to_categories:
94
+ cats = area_to_categories[area.lower()]
95
+ placeholders = ",".join("?" * len(cats))
96
+ where += f" AND category IN ({placeholders})"
97
+ params.extend(cats)
98
+
99
+ if importance_min > 0:
100
+ where += " AND importance >= ?"
101
+ params.append(importance_min)
102
+
103
+ rows = conn.execute(
104
+ f"SELECT id, category, rule, why, importance, type FROM core_rules {where} ORDER BY importance DESC, category, id",
105
+ params
106
+ ).fetchall()
107
+
108
+ if not rows:
109
+ return "No rules found for this area."
110
+
111
+ # Get version
112
+ ver = conn.execute("SELECT version FROM core_rules_version WHERE id = 1").fetchone()
113
+ version = ver[0] if ver else "unknown"
114
+
115
+ blocking = [r for r in rows if r["type"] == "blocking"]
116
+ advisory = [r for r in rows if r["type"] == "advisory"]
117
+
118
+ lines = [f"CORE RULES (v{version}) — {len(blocking)} BLOCKING, {len(advisory)} ADVISORY"]
119
+ if area:
120
+ lines[0] += f" [area: {area}]"
121
+ lines.append("")
122
+
123
+ if blocking:
124
+ lines.append("## BLOCKING (must follow)")
125
+ for r in blocking:
126
+ lines.append(f" {r['id']}. {r['rule']}")
127
+ lines.append(f" Why: {r['why']}")
128
+ lines.append("")
129
+
130
+ if advisory:
131
+ lines.append("## ADVISORY (recommended)")
132
+ for r in advisory:
133
+ lines.append(f" {r['id']}. {r['rule']}")
134
+ lines.append(f" Why: {r['why']}")
135
+
136
+ return "\n".join(lines)
137
+
138
+
139
+ def handle_rules_list() -> str:
140
+ """List all core rules with their status, grouped by category."""
141
+ _seed_if_empty()
142
+ conn = _get_db()
143
+
144
+ ver = conn.execute("SELECT version FROM core_rules_version WHERE id = 1").fetchone()
145
+ version = ver[0] if ver else "unknown"
146
+
147
+ rows = conn.execute(
148
+ "SELECT id, category, rule, importance, type, is_active, added_in, removed_in FROM core_rules ORDER BY category, id"
149
+ ).fetchall()
150
+
151
+ lines = [f"CORE RULES v{version} — {len([r for r in rows if r['is_active']])} active, {len([r for r in rows if not r['is_active']])} removed", ""]
152
+
153
+ current_cat = None
154
+ for r in rows:
155
+ if r["category"] != current_cat:
156
+ current_cat = r["category"]
157
+ lines.append(f"### {current_cat.upper()}")
158
+
159
+ status = "✓" if r["is_active"] else "✗"
160
+ tag = "BLOCK" if r["type"] == "blocking" else "ADVSR"
161
+ lines.append(f" [{status}] {r['id']} [{tag}] imp={r['importance']} — {r['rule']}")
162
+ if r["removed_in"]:
163
+ lines.append(f" Removed in v{r['removed_in']}")
164
+
165
+ return "\n".join(lines)
166
+
167
+
168
+ def handle_rules_migrate(dry_run: bool = False) -> str:
169
+ """Sync core rules from the JSON definition file to the database.
170
+
171
+ Adds new rules, marks removed ones as inactive. Safe to run multiple times.
172
+
173
+ Args:
174
+ dry_run: If True, show what would change without applying
175
+ """
176
+ conn = _get_db()
177
+ rules_file = os.path.join(os.path.dirname(os.path.dirname(os.path.abspath(__file__))),
178
+ "rules", "core-rules.json")
179
+ if not os.path.exists(rules_file):
180
+ return "ERROR: core-rules.json not found"
181
+
182
+ with open(rules_file) as f:
183
+ data = json.load(f)
184
+
185
+ new_version = data["_meta"]["version"]
186
+ ver = conn.execute("SELECT version FROM core_rules_version WHERE id = 1").fetchone()
187
+ current_version = ver[0] if ver else "0.0.0"
188
+
189
+ # Collect all rule IDs from JSON
190
+ json_ids = set()
191
+ json_rules = {}
192
+ for cat_key, cat in data["categories"].items():
193
+ for rule in cat["rules"]:
194
+ json_ids.add(rule["id"])
195
+ json_rules[rule["id"]] = {**rule, "category": cat_key}
196
+
197
+ # Collect active IDs from DB
198
+ db_ids = set()
199
+ for r in conn.execute("SELECT id FROM core_rules WHERE is_active = 1").fetchall():
200
+ db_ids.add(r[0])
201
+
202
+ added = json_ids - db_ids
203
+ removed = db_ids - json_ids
204
+ unchanged = json_ids & db_ids
205
+
206
+ lines = [
207
+ f"RULES MIGRATION: v{current_version} → v{new_version}",
208
+ f" Added: {len(added)} — {', '.join(sorted(added)) if added else 'none'}",
209
+ f" Removed: {len(removed)} — {', '.join(sorted(removed)) if removed else 'none'}",
210
+ f" Unchanged: {len(unchanged)}",
211
+ ]
212
+
213
+ if dry_run:
214
+ lines.append(" Mode: DRY RUN (no changes applied)")
215
+ return "\n".join(lines)
216
+
217
+ # Apply additions
218
+ for rid in added:
219
+ r = json_rules[rid]
220
+ conn.execute(
221
+ """INSERT OR REPLACE INTO core_rules (id, category, rule, why, importance, type, added_in, is_active)
222
+ VALUES (?, ?, ?, ?, ?, ?, ?, 1)""",
223
+ (r["id"], r["category"], r["rule"], r["why"], r["importance"], r["type"], r.get("added_in", new_version))
224
+ )
225
+
226
+ # Apply removals (soft delete)
227
+ for rid in removed:
228
+ conn.execute(
229
+ "UPDATE core_rules SET is_active = 0, removed_in = ? WHERE id = ?",
230
+ (new_version, rid)
231
+ )
232
+
233
+ # Update existing rules (content might have changed)
234
+ for rid in unchanged:
235
+ r = json_rules[rid]
236
+ conn.execute(
237
+ "UPDATE core_rules SET rule = ?, why = ?, importance = ?, type = ?, category = ? WHERE id = ?",
238
+ (r["rule"], r["why"], r["importance"], r["type"], r["category"], rid)
239
+ )
240
+
241
+ conn.execute("UPDATE core_rules_version SET version = ?, updated_at = datetime('now') WHERE id = 1", (new_version,))
242
+ conn.commit()
243
+
244
+ lines.append(" Status: APPLIED")
245
+ return "\n".join(lines)
246
+
247
+
248
+ TOOLS = [
249
+ (handle_rules_check, "nexo_rules_check", "Get applicable core rules for an area before acting. Returns BLOCKING and ADVISORY rules."),
250
+ (handle_rules_list, "nexo_rules_list", "List all core rules with status, grouped by category."),
251
+ (handle_rules_migrate, "nexo_rules_migrate", "Sync rules from JSON definition to database. Adds new, soft-deletes removed."),
252
+ ]