nexo-brain 7.37.4 → 7.38.6
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 +6 -6
- package/README.md +25 -1652
- package/bin/nexo-brain.js +125 -131
- package/package.json +4 -5
- package/src/auto_update.py +27 -31
- package/src/automation_supervisor.py +13 -37
- package/src/cli.py +4 -8
- package/src/closure_promise_audit.py +134 -0
- package/src/core_schedule_controls.py +2 -5
- package/src/cost_secret_sweep.py +137 -0
- package/src/crons/manifest.json +0 -15
- package/src/crons/sync.py +2 -0
- package/src/dashboard/app.py +2 -4
- package/src/db/_schema.py +5 -13
- package/src/doctor/providers/runtime.py +21 -4
- package/src/email_credentials.py +38 -6
- package/src/enforcement_engine.py +329 -1
- package/src/evidence_matrix.py +94 -0
- package/src/hook_guardrails.py +187 -2
- package/src/hooks/post_tool_use.py +663 -6
- package/src/hooks/pre_tool_use.py +33 -1
- package/src/hooks/stop.py +184 -0
- package/src/maintenance.py +1 -1
- package/src/managed_mcp/lock.json +9 -9
- package/src/mcp_write_queue.py +7 -0
- package/src/plugins/cards.py +84 -1
- package/src/plugins/evolution.py +26 -176
- package/src/plugins/protocol.py +1416 -27
- package/src/presets/guardian_default.json +2 -0
- package/src/product_mode.py +27 -26
- package/src/public_contribution.py +41 -170
- package/src/r14_correction_learning.py +62 -0
- package/src/r23g_secrets_in_output.py +84 -0
- package/src/r37_reality_preflight.py +94 -0
- package/src/rules/core-rules.json +42 -2
- package/src/scripts/cost_secret_sweep.py +37 -0
- package/src/scripts/deep-sleep/apply_findings.py +180 -159
- package/src/scripts/nexo-daily-self-audit.py +26 -16
- package/src/scripts/nexo-immune.py +9 -2
- package/src/scripts/nexo-proactive-dashboard.py +8 -5
- package/src/scripts/nexo-runtime-preflight.py +25 -130
- package/src/scripts/nexo-watchdog-smoke.py +8 -5
- package/src/scripts/nexo-watchdog.sh +1 -29
- package/src/server.py +6 -1
- package/src/skills/campaign-from-shopify/guide.md +26 -0
- package/src/skills/campaign-from-shopify/skill.json +28 -0
- package/src/skills/run-nexo-audit-phase/guide.md +7 -7
- package/src/skills/run-nexo-audit-phase/skill.json +3 -5
- package/src/skills/run-runtime-doctor/skill.json +1 -0
- package/src/skills/support-second-ticket-parallel-sweep/guide.md +19 -0
- package/src/skills/support-second-ticket-parallel-sweep/skill.json +30 -0
- package/src/skills/verify-prod-config/guide.md +46 -0
- package/src/skills/verify-prod-config/skill.json +36 -0
- package/src/support_reports.py +226 -0
- package/templates/CLAUDE.md.template +12 -3
- package/templates/CODEX.AGENTS.md.template +12 -3
- package/templates/core-prompts/morning-agent.md +6 -0
- package/templates/core-prompts/r-learning-promise-capture.md +3 -0
- package/templates/core-prompts/r14-accepted-correction-injection.md +1 -0
- package/templates/core-prompts/r14-accepted-correction-question.md +1 -0
- package/templates/core-prompts/r36-production-edit-change-log-required.md +3 -0
- package/templates/core-prompts/r37-reality-preflight-injection.md +1 -0
- package/templates/core-prompts/r43-release-verification-checklist.md +3 -0
- package/templates/core-prompts/server-mcp-instructions.md +5 -1
- package/templates/launchagents/README.md +0 -1
- package/tool-enforcement-map.json +0 -65
- package/src/evolution_cycle.py +0 -412
- package/src/public_evolution_queue.py +0 -241
- package/src/scripts/nexo-evolution-run.py +0 -1651
- package/templates/core-prompts/evolution-public-contribution.md +0 -32
- package/templates/core-prompts/evolution-public-pr-review.md +0 -38
- package/templates/core-prompts/evolution-weekly.md +0 -71
- package/templates/launchagents/com.nexo.evolution.plist +0 -44
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nexo-brain",
|
|
3
|
-
"version": "7.
|
|
4
|
-
"description": "Local
|
|
3
|
+
"version": "7.38.6",
|
|
4
|
+
"description": "Local NEXO runtime core for NEXO Desktop: memory, Deep Sleep, doctor diagnostics, personal scripts, recovery-aware jobs, startup preflight, and optional dashboard/power helper.",
|
|
5
5
|
"author": {
|
|
6
|
-
"name": "NEXO
|
|
7
|
-
"email": "info@nexo-
|
|
8
|
-
"url": "https://nexo-
|
|
6
|
+
"name": "NEXO Cognitive S.L.",
|
|
7
|
+
"email": "info@nexo-desktop.com",
|
|
8
|
+
"url": "https://nexo-desktop.com"
|
|
9
9
|
},
|
|
10
|
-
"homepage": "https://nexo-
|
|
10
|
+
"homepage": "https://nexo-desktop.com",
|
|
11
11
|
"repository": "https://github.com/wazionapps/nexo",
|
|
12
12
|
"license": "AGPL-3.0",
|
|
13
13
|
"keywords": [
|