nexo-brain 7.30.0 → 7.30.1

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nexo-brain",
3
- "version": "7.30.0",
3
+ "version": "7.30.1",
4
4
  "description": "Local cognitive runtime for Claude Code \u2014 persistent memory, overnight learning, doctor diagnostics, personal scripts, recovery-aware jobs, startup preflight, and optional dashboard/power helper.",
5
5
  "author": {
6
6
  "name": "NEXO Brain",
package/README.md CHANGED
@@ -18,7 +18,9 @@
18
18
 
19
19
  [Watch the overview video](https://nexo-brain.com/watch/) · [Watch on YouTube](https://www.youtube.com/watch?v=i2lkGhKyVqI) · [Open the infographic](https://nexo-brain.com/assets/nexo-brain-infographic-v5.png)
20
20
 
21
- Version `7.30.0` is the current packaged-runtime line. Minor release over v7.29.0 - morning briefing preferences now support weather/news, selectable weekdays, safer SMTP certificates, Opus 4.8 defaults, and an agent-facing preference catalog so NEXO can explain or change supported settings by chat.
21
+ Version `7.30.1` is the current packaged-runtime line. Patch release over v7.30.0 - morning briefings now behave more like a start-of-day assistant, explain news/weather as verified optional sources, and keep user type inference inside NEXO instead of asking the user to choose a role manually.
22
+
23
+ Previously in `7.30.0`: minor release over v7.29.0 - morning briefing preferences now support weather/news, selectable weekdays, safer SMTP certificates, Opus 4.8 defaults, and an agent-facing preference catalog so NEXO can explain or change supported settings by chat.
22
24
 
23
25
  Previously in `7.29.0`: minor release over v7.28.0 - the morning briefing now has structured content preferences, Desktop-facing briefing presentation state, and per-account email signature support.
24
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nexo-brain",
3
- "version": "7.30.0",
3
+ "version": "7.30.1",
4
4
  "mcpName": "io.github.wazionapps/nexo",
5
5
  "description": "NEXO Brain — Shared brain for AI agents. Persistent memory, semantic RAG, natural forgetting, metacognitive guard, trust scoring, 150+ MCP tools. Works with Claude Code, Codex, Claude Desktop & any MCP client. 100% local, free.",
6
6
  "homepage": "https://nexo-brain.com",
@@ -83,14 +83,14 @@ MORNING_AGENT_SCHEMA: dict[str, Any] = {
83
83
  "type": "boolean",
84
84
  "label": "News",
85
85
  "default": False,
86
- "help": "A short set of public headlines from the configured news feed. If the feed is unreachable, NEXO simply says it was unavailable.",
86
+ "help": "A short set of current public headlines from the configured news feed, included only when the source can be verified.",
87
87
  },
88
88
  {
89
89
  "id": "weather",
90
90
  "type": "boolean",
91
91
  "label": "Weather",
92
92
  "default": True,
93
- "help": "Today's weather from the location saved in Desktop or your residence in the profile.",
93
+ "help": "Today's weather from the location saved in Desktop or your residence in the profile, included only when the forecast can be verified.",
94
94
  },
95
95
  ],
96
96
  },
@@ -348,8 +348,12 @@ def format_automation_preferences_prompt_block(name_or_path: str) -> str:
348
348
  return (
349
349
  "\n== STRUCTURED CONTENT PREFERENCES FOR THIS AUTOMATION ==\n"
350
350
  f"{compact}\n"
351
+ "Morning briefing intent: act like a professional personal assistant preparing the operator for the day. "
352
+ "Do not merely list available records; filter, rank, and explain what deserves attention first.\n"
353
+ "Adapt the emphasis from the operator profile, role, recent activity, and context. "
354
+ "Do not ask the user to choose a user type manually and do not assume a profession unless the context supports it.\n"
351
355
  "Use these preferences to decide what to include, omit, and emphasize. "
352
- "Disabled/unavailable data sources must not be invented.\n"
356
+ "Disabled/unavailable data sources must not be invented; news and weather require verified collected data.\n"
353
357
  )
354
358
 
355
359
 
@@ -4,6 +4,13 @@ Write the email using ONLY the facts present in the structured context below.
4
4
  Use the operator's preferred language: [[operator_language]].
5
5
  If the language value is invalid or unclear, use English.
6
6
 
7
+ Product intent:
8
+ - This is a start-of-day briefing, not a report dump. The operator should finish reading it knowing what matters, what changed, what can wait, and what needs a decision.
9
+ - Think like a professional personal assistant or chief of staff: filter noise, rank priorities, connect related items, and make the day feel prepared.
10
+ - Adapt the emphasis to the operator's real context: administrative work needs tasks, deadlines, email movement and missing inputs; executives need decisions, risks, money, people and blocked outcomes; technical users need incidents, deployments, regressions and dependencies; commercial users need leads, customers and follow-ups; regulated or clinical users need careful wording, pending actions and factual status only.
11
+ - Do not ask the operator to choose a user type. Infer the useful angle from the structured context, profile fields, recent activity and explicit preferences. If the context is thin, stay general and practical.
12
+ - Include news and weather only when verified collected data exists in the context. Never fabricate public news, forecasts, calendar events, emails or professional advice.
13
+
7
14
  Hard rules:
8
15
  - Do not invent achievements, blockers, meetings, messages, or external events.
9
16
  - Do not mention source files, JSON, MCP, prompts, or internal implementation.