@fullwell/fullwell 1.1.12 → 1.1.13
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 +1 -1
- package/.codex-plugin/plugin.json +1 -1
- package/CHANGELOG.md +5 -0
- package/README.md +1 -1
- package/install-metadata.json +2 -2
- package/package.json +1 -1
- package/runtime/local-household-mcp.mjs +1 -0
- package/skills/manage-household-food-journal/SKILL.md +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.1.13 - 2026-07-24
|
|
4
|
+
|
|
5
|
+
- Add the required top-level object type to the local household-update tool schema so Claude can fetch every Fullwell local tool after connecting.
|
|
6
|
+
- Replace Claude's system-like setup instruction with the conversational `Hi Fullwell.` greeting and route that exact greeting through name-first onboarding.
|
|
7
|
+
|
|
3
8
|
## 1.1.12 - 2026-07-24
|
|
4
9
|
|
|
5
10
|
- Ask and remember the member name before account routing; derive the first local or cloud household name, synchronize the cloud display name on connection, support local/cloud renames and chat-driven runner/reminder shutdown, and suggest eligible invitations or collections with concrete examples.
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
One shared skill package gives Codex and Claude a local-first food journal and an optional connection to the hosted Household Food Journal MCP service. A new user can collect grocery and recipe history without an account. The service performs authentication and every cloud-household mutation; the published package contains no credentials or bundled household data and includes no Git client or background synchronization engine.
|
|
4
4
|
|
|
5
|
-
After installation, start with `@Fullwell hi` in Codex or `
|
|
5
|
+
After installation, start with `@Fullwell hi` in Codex or `Hi Fullwell.` in Claude. A fresh greeting first asks `What should I call you?` and remembers the answer in a private revisioned local profile. Fullwell then asks whether the person already has an account. Existing account holders use hosted OAuth, copy the confirmed name to their cloud display name, and receive a first household named `Name's Household` (or `Names' Household`) only when they are not joining or resuming another household. Everyone else initializes that named private guest household under `~/.codex/fullwell/local/household.json`, begins one grocery-history pass for snacks, ingredients, condiments, and more, and advances to recipes without any Fullwell cloud call. The plugin-provided `fullwell-local` server exposes stable profile, household, runner-control, and collecting-only deletion tools, so narrow host permissions can survive package upgrades without allowing arbitrary Node commands. Local files use atomic revision-checked writes and exclude credentials, browser state, screenshots, and raw pages. After the journal is usable locally, the agent offers optional account creation and cloud backup for WhatsApp, sharing, or family access.
|
|
6
6
|
|
|
7
7
|
Authenticated onboarding still checkpoints unconfirmed work under `~/.codex/fullwell/drafts`, isolated by the stable Fullwell user and household IDs and bound to the current snapshot. One confirmed hosted commit persists it. Promoting a guest journal retains the local copy and records cloud linkage only after a successful hosted response.
|
|
8
8
|
|
package/install-metadata.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema_version": 1,
|
|
3
|
-
"release": "1.1.
|
|
3
|
+
"release": "1.1.13",
|
|
4
4
|
"mcp_url": "https://fullwell.souschefstudio.com/mcp",
|
|
5
5
|
"install_page": "https://fullwell.souschefstudio.com/install",
|
|
6
6
|
"platforms": {
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"marketplace": "fullwell",
|
|
23
23
|
"plugin": "fullwell",
|
|
24
24
|
"primary_action": "After installation, start Fullwell with the prompt below.",
|
|
25
|
-
"setup_prompt": "
|
|
25
|
+
"setup_prompt": "Hi Fullwell.",
|
|
26
26
|
"setup_href": null,
|
|
27
27
|
"fallback_commands": [
|
|
28
28
|
"claude plugin marketplace add moorage/fullwell",
|
package/package.json
CHANGED
|
@@ -14,7 +14,7 @@ Use the plugin-provided `fullwell-local` tools for guest data and the bundled [l
|
|
|
14
14
|
|
|
15
15
|
## Remember the member before choosing authority
|
|
16
16
|
|
|
17
|
-
Treat every greeting addressed to Fullwell, including a bare `@Fullwell hi
|
|
17
|
+
Treat every greeting addressed to Fullwell, including a bare `@Fullwell hi` or `Hi Fullwell.`, as a request to start or resume this flow. Never call a Fullwell MCP tool merely to discover whether the person has an account.
|
|
18
18
|
|
|
19
19
|
1. Call `fullwell_local_profile_load` with no arguments before loading a household or contacting the cloud.
|
|
20
20
|
2. If the profile is `missing` and the user has not already supplied a preferred name, ask exactly: "What should I call you?" Stop there. The account question, household setup, audits, and hosted calls all wait for this answer.
|