nexo-brain 1.5.3 → 1.6.0
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/package.json +1 -1
- package/scripts/migrate-v1.5-to-v1.6.py +778 -0
- package/src/auto_close_sessions.py +1 -0
- package/src/cognitive/_memory.py +1 -0
- package/src/cognitive/_trust.py +2 -2
- package/src/dashboard/app.py +497 -5
- package/src/dashboard/static/favicon.svg +32 -0
- package/src/dashboard/static/nexo-logo.png +0 -0
- package/src/dashboard/static/nexo-logo.svg +40 -0
- package/src/dashboard/static/style.css +2458 -0
- package/src/dashboard/templates/adaptive.html +214 -65
- package/src/dashboard/templates/calendar.html +720 -0
- package/src/dashboard/templates/dashboard.html +621 -0
- package/src/dashboard/templates/graph.html +176 -95
- package/src/dashboard/templates/inbox.html +367 -0
- package/src/dashboard/templates/memory.html +185 -48
- package/src/dashboard/templates/operations.html +725 -0
- package/src/dashboard/templates/sessions.html +163 -41
- package/src/dashboard/templates/somatic.html +168 -48
- package/src/hooks/capture-tool-logs.sh +50 -0
- package/src/hooks/daily-briefing-check.sh +33 -0
- package/src/hooks/inbox-hook.sh +74 -0
- package/src/hooks/session-start.sh +97 -5
- package/src/hooks/session-stop.sh +17 -31
- package/src/plugins/agents.py +8 -8
- package/src/plugins/backup.py +2 -2
- package/src/plugins/episodic_memory.py +44 -44
- package/src/scripts/deep-sleep/prompt.md +13 -13
- package/src/scripts/nexo-auto-update.py +0 -0
- package/src/scripts/nexo-catchup.py +4 -4
- package/src/scripts/nexo-daily-self-audit.py +17 -16
- package/src/scripts/nexo-deep-sleep.sh +0 -0
- package/src/scripts/nexo-evolution-run.py +9 -9
- package/src/scripts/nexo-followup-hygiene.py +4 -4
- package/src/scripts/nexo-github-monitor.py +252 -0
- package/src/scripts/nexo-immune.py +65 -29
- package/src/scripts/nexo-postmortem-consolidator.py +46 -44
- package/src/scripts/nexo-proactive-dashboard.py +22 -22
- package/src/scripts/nexo-reflection.py +0 -0
- package/src/scripts/nexo-send-reply.py +1 -1
- package/src/scripts/nexo-synthesis.py +3 -3
- package/src/scripts/nexo-watchdog.sh +267 -124
- package/src/server.py +5 -5
- package/src/tools_coordination.py +1 -1
- package/src/tools_credentials.py +2 -2
- package/src/tools_menu.py +44 -44
- package/src/tools_reminders.py +1 -1
- package/src/tools_reminders_crud.py +18 -18
- package/src/tools_sessions.py +6 -6
- package/src/tools_task_history.py +4 -4
- package/templates/launchagents/README.md +133 -0
- package/templates/launchagents/com.nexo.auto-close-sessions.plist +35 -0
- package/templates/launchagents/com.nexo.catchup.plist +34 -0
- package/templates/launchagents/com.nexo.cognitive-decay.plist +33 -0
- package/templates/launchagents/com.nexo.dashboard.plist +39 -0
- package/templates/launchagents/com.nexo.deep-sleep.plist +39 -0
- package/templates/launchagents/com.nexo.evolution.plist +41 -0
- package/templates/launchagents/com.nexo.followup-hygiene.plist +41 -0
- package/templates/launchagents/com.nexo.github-monitor.plist +43 -0
- package/templates/launchagents/com.nexo.immune.plist +37 -0
- package/templates/launchagents/com.nexo.postmortem.plist +41 -0
- package/templates/launchagents/com.nexo.self-audit.plist +43 -0
- package/templates/launchagents/com.nexo.synthesis.plist +41 -0
- package/templates/launchagents/com.nexo.watchdog.plist +33 -0
- package/src/dashboard/templates/overview.html +0 -75
- package/src/scripts/deep-sleep/__pycache__/analyze_session.cpython-314.pyc +0 -0
- package/src/scripts/deep-sleep/__pycache__/apply_findings.cpython-314.pyc +0 -0
- package/src/scripts/deep-sleep/__pycache__/collect_transcripts.cpython-314.pyc +0 -0
- package/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- package/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- package/tests/__pycache__/test_cognitive.cpython-314-pytest-9.0.2.pyc +0 -0
- package/tests/__pycache__/test_knowledge_graph.cpython-314-pytest-9.0.2.pyc +0 -0
- package/tests/__pycache__/test_migrations.cpython-314-pytest-9.0.2.pyc +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nexo-brain",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"mcpName": "io.github.wazionapps/nexo",
|
|
5
5
|
"description": "NEXO — Cognitive co-operator for Claude Code. Atkinson-Shiffrin memory, semantic RAG, knowledge graph, HNSW vector indexing, trust scoring, and metacognitive error prevention.",
|
|
6
6
|
"bin": {
|