From 5f2966744725d7b8dd87e45bae87abbd877aa6f6 Mon Sep 17 00:00:00 2001 From: Simon Clark Date: Sat, 18 Apr 2026 16:34:23 +0100 Subject: [PATCH] remove personal hostname reference from install-workflow doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit jarvis.local was the author's own Indigo server hostname used as a parenthetical example in the cross-machine mount-handling section. Replaced with generic phrasing — the example adds no value and unnecessarily personalises shipped docs. All other workspace-specific strings (/Volumes/Macintosh HD-1, /Volumes/Macintosh HD) are standard macOS mount names and stay in place — they're the probe prefixes the skill uses before asking the user, not identifying info. Bumps plugin version 1.8.0 → 1.8.1 (patch: doc cleanup, no user-visible behaviour change). Co-Authored-By: Claude Opus 4.7 (1M context) --- .claude-plugin/marketplace.json | 2 +- .claude-plugin/plugin.json | 2 +- skills/update-plugins/references/install-workflow.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 2705aca..692fe0f 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -8,7 +8,7 @@ "name": "indigo", "source": "./", "description": "Indigo home automation development toolkit \u2014 plugin development, API integration, and control page building", - "version": "1.9.2", + "version": "1.9.3", "repository": "https://github.com/simons-plugins/indigo-claude-plugin", "license": "MIT", "keywords": [ diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index cc07d82..5e93bd7 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "indigo", - "version": "1.9.2", + "version": "1.9.3", "description": "Indigo home automation development toolkit \u2014 plugin development, API integration, and control page building", "repository": "https://github.com/simons-plugins/indigo-claude-plugin" } diff --git a/skills/update-plugins/references/install-workflow.md b/skills/update-plugins/references/install-workflow.md index 19896c3..2a82f6d 100644 --- a/skills/update-plugins/references/install-workflow.md +++ b/skills/update-plugins/references/install-workflow.md @@ -30,7 +30,7 @@ Option 1 is safer. Option 2 requires warning the user clearly that the MCP state The destination for rsync comes from the `path` field returned by `mcp__indigo__list_plugins` / `mcp__indigo__get_plugin_by_id`. **Do not hardcode** `/Library/Application Support/...`. -**Cross-machine mount handling**: if the user is running this skill on a different Mac than the Indigo server (e.g. Indigo on `jarvis.local` mounted as `/Volumes//`), the MCP-reported absolute path won't exist directly. Detect this: +**Cross-machine mount handling**: if the user is running this skill on a different Mac than the Indigo server (with the Indigo server's filesystem mounted as `/Volumes//`), the MCP-reported absolute path won't exist directly. Detect this: ```bash if [ ! -d "$MCP_REPORTED_PATH/Contents" ]; then