wellness-nourish 0.6.0 → 0.6.2
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/CHANGELOG.md +19 -0
- package/README.md +10 -0
- package/dist/apps/nourish-chatgpt-app.d.ts +2 -0
- package/dist/apps/nourish-chatgpt-app.js +657 -0
- package/dist/apps/nourish-chatgpt-app.js.map +1 -0
- package/dist/cli/hermes.js +1 -1
- package/dist/cli/hermes.js.map +1 -1
- package/dist/constants.d.ts +3 -3
- package/dist/constants.js +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/schemas/common.d.ts +4 -4
- package/dist/services/profile-store.js +47 -11
- package/dist/services/profile-store.js.map +1 -1
- package/dist/services/usage-guide.js +1 -1
- package/dist/services/usage-guide.js.map +1 -1
- package/dist/tools/nourish-tools.js +1 -1
- package/dist/tools/nourish-tools.js.map +1 -1
- package/llms.txt +1 -0
- package/package.json +2 -1
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,25 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.6.2] - 2026-05-19
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- **30 commonly-missing Brazilian regional foods added to the TACO subset.** The curated TACO dataset grew from 105 to 135 entries with regional specialties that agents frequently encountered as misses. New coverage: cassava family (`farinha de mandioca`, `polvilho azedo`, `biscoito de polvilho`), corn-based desserts (`pamonha`, `curau`, `canjica branca`), regional bean dishes (`feijão tropeiro`, `baião de dois`), jerked-beef preparations (`carne seca`, `paçoca de carne seca`, `arroz carreteiro`, `escondidinho de carne seca`), Bahian/Afro-Brazilian dishes (`acarajé`, `vatapá`, `caruru`, `bobó de camarão`, `moqueca baiana`), Amazonian (`tucupi`, `cupuaçu`, `açaí na tigela`), drinks (`guaraná`, `mate gelado`, `chocolate quente`, `caldo de cana`), and classic desserts (`beijinho`, `quindim`, `pudim de leite`, `goiabada cascão`, `cocada branca`, `paçoca de amendoim`). Each entry ships with realistic per-100g macros, common-serving size, pt-BR aliases, and TACO-style row id (700-range is reserved for regional entries not in the original 597-row publication). Source attribution: TACO 4 (NEPA/UNICAMP) primary, IBGE POF 2017-18 + USDA SR Legacy cross-reference for the entries that were never published in the original table.
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- **`refrigerante, cola` no longer claims `guaraná` as an alias.** Guaraná is a distinct soda (now its own entry, taco_id 588). Searching "guaraná" used to incorrectly return cola.
|
|
18
|
+
- **`açaí, polpa congelada` no longer claims `açaí na tigela` / `acai bowl` as aliases.** The complete bowl with toppings is a new dedicated entry (taco_id 392) with realistic macros; the polpa entry returns to representing just the frozen pulp.
|
|
19
|
+
|
|
20
|
+
## [0.6.1] - 2026-05-11
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
|
|
24
|
+
- **Profile-store regex no longer false-positives on common wellness words.** Split `SECRET_PATTERNS` into two: `SECRET_KEY_PATTERNS` (broad, matches field names like `oauth_token`) and `SECRET_VALUE_PATTERNS` (high-specificity, only matches actual credential shapes: JWTs, `Bearer <token>`, `sk_live_`, `sk-proj-`, `xoxb-`, `github_pat_`, raw `Authorization:` headers). Previously, profile updates with legitimate text like "5 training sessions per week", "limit cookies", "I need to refresh my approach", or "secret sauce: more sleep" were rejected.
|
|
25
|
+
- **Partial-profile reads no longer crash downstream.** `readProfileFile` now structurally merges with `DEFAULT_PROFILE` when legacy Hermes/OpenClaw profile-pack files lacked one or more sub-objects (goals, devices, training, nutrition, preferences, safety). Previously `buildProfileSummary` and `missingCriticalFields` would throw `Cannot read properties of undefined`.
|
|
26
|
+
- **Onboarding `privacy_note` no longer hard-codes a single connector path.** Updated to list multiple example paths (`~/.whoop-mcp/`, `~/.oura-mcp/`, `~/.garmin-mcp/`, etc.) so the message reads correctly from every connector.
|
|
27
|
+
|
|
9
28
|
## [0.6.0] - 2026-05-11
|
|
10
29
|
|
|
11
30
|
### Added
|
package/README.md
CHANGED
|
@@ -86,6 +86,16 @@ Run Streamable HTTP locally:
|
|
|
86
86
|
node dist/index.js --http
|
|
87
87
|
```
|
|
88
88
|
|
|
89
|
+
### ChatGPT App / MCP Apps UI
|
|
90
|
+
|
|
91
|
+
Nourish also exposes a compact MCP Apps-compatible dashboard for ChatGPT and other compatible hosts:
|
|
92
|
+
|
|
93
|
+
- Tool: `nourish_chatgpt_dashboard`
|
|
94
|
+
- UI resource: `ui://widget/nourish-dashboard-v1.html`
|
|
95
|
+
- MIME type: `text/html;profile=mcp-app`
|
|
96
|
+
|
|
97
|
+
The dashboard shows the daily nutrition summary, hydration progress, profile gaps and next-meal coaching, and it can call `nourish_estimate_meal` from the embedded UI for preview-only estimates. It does not write intake, water or goals; mutating tools still require explicit user confirmation through the normal MCP tools.
|
|
98
|
+
|
|
89
99
|
Optional environment:
|
|
90
100
|
|
|
91
101
|
```bash
|