@fullwell/fullwell 1.1.9 → 1.1.10

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,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
3
3
  "name": "fullwell",
4
- "version": "1.1.9",
4
+ "version": "1.1.10",
5
5
  "description": "Keep an evidence-backed family food journal with Claude.",
6
6
  "author": {
7
7
  "name": "Fullwell"
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "fullwell",
3
- "version": "1.1.9",
3
+ "version": "1.1.10",
4
4
  "description": "Keep an evidence-backed family food journal with Codex.",
5
5
  "homepage": "https://fullwell.souschefstudio.com/install",
6
6
  "license": "UNLICENSED",
7
7
  "keywords": ["food", "recipes", "groceries", "family"],
8
8
  "skills": "./skills/",
9
- "mcpServers": "./.mcp.json",
9
+ "mcpServers": "./codex-mcp.json",
10
10
  "interface": {
11
11
  "displayName": "Fullwell",
12
12
  "shortDescription": "Audit groceries, remember recipes, and share collections.",
package/.mcp.json CHANGED
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "fullwell-local": {
3
3
  "command": "node",
4
- "args": ["./runtime/local-household-mcp.mjs"],
5
- "cwd": ".",
4
+ "args": ["${CLAUDE_PLUGIN_ROOT}/runtime/local-household-mcp.mjs"],
6
5
  "env_vars": ["CODEX_HOME"],
7
6
  "startup_timeout_sec": 5
8
7
  },
package/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 1.1.10 - 2026-07-22
6
+
7
+ - Resolve the packaged local MCP entrypoint through host-specific path adapters so Codex and Claude start the same installed server regardless of their working directory.
8
+ - Require the isolated Claude lifecycle test to prove the local server connects successfully instead of accepting discovery alone.
9
+ - Canonicalize the stdio entrypoint before its main-module check so plugin caches reached through macOS `/tmp` or `/var` aliases still start.
10
+
5
11
  ## 1.1.9 - 2026-07-22
6
12
 
7
13
  - Replace version-specific local-household shell commands with stable `fullwell-local` read, update, and collecting-only deletion tools so one host permission can survive package upgrades without a broad Node allow rule.
package/codex-mcp.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "fullwell-local": {
3
+ "command": "node",
4
+ "args": ["./runtime/local-household-mcp.mjs"],
5
+ "cwd": ".",
6
+ "env_vars": ["CODEX_HOME"],
7
+ "startup_timeout_sec": 5
8
+ },
9
+ "household-food-journal": {
10
+ "type": "http",
11
+ "url": "https://fullwell.souschefstudio.com/mcp"
12
+ }
13
+ }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "schema_version": 1,
3
- "release": "1.1.9",
3
+ "release": "1.1.10",
4
4
  "mcp_url": "https://fullwell.souschefstudio.com/mcp",
5
5
  "install_page": "https://fullwell.souschefstudio.com/install",
6
6
  "platforms": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fullwell/fullwell",
3
- "version": "1.1.9",
3
+ "version": "1.1.10",
4
4
  "private": false,
5
5
  "description": "Shared Codex and Claude client for Fullwell",
6
6
  "type": "module",
@@ -8,6 +8,7 @@
8
8
  ".codex-plugin",
9
9
  ".claude-plugin",
10
10
  ".mcp.json",
11
+ "codex-mcp.json",
11
12
  "skills",
12
13
  "references",
13
14
  "runtime",
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- import { pathToFileURL } from "node:url";
4
- import path from "node:path";
3
+ import { realpath } from "node:fs/promises";
4
+ import { fileURLToPath } from "node:url";
5
5
 
6
6
  import {
7
7
  LocalHouseholdError,
@@ -233,6 +233,7 @@ export async function serveLocalHouseholdMcp({
233
233
  if (pending.trim().length > 0) emit(jsonRpcError(null, -32700, "Parse error"));
234
234
  }
235
235
 
236
- if (process.argv[1] !== undefined && import.meta.url === pathToFileURL(path.resolve(process.argv[1])).href) {
236
+ if (process.argv[1] !== undefined
237
+ && await realpath(fileURLToPath(import.meta.url)) === await realpath(process.argv[1])) {
237
238
  await serveLocalHouseholdMcp();
238
239
  }