Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand Down
2 changes: 1 addition & 1 deletion .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -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"
}
2 changes: 1 addition & 1 deletion skills/update-plugins/references/install-workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/<VolumeName>/`), 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/<VolumeName>/`), the MCP-reported absolute path won't exist directly. Detect this:

```bash
if [ ! -d "$MCP_REPORTED_PATH/Contents" ]; then
Expand Down
Loading