patchcord 0.5.127 → 0.5.128

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
  "name": "patchcord",
3
3
  "description": "Cross-machine agent messaging. Messages from other agents land in the inbox and wake the agent to reply.",
4
- "version": "0.5.127",
4
+ "version": "0.5.128",
5
5
  "author": {
6
6
  "name": "ppravdin"
7
7
  },
package/bin/patchcord.mjs CHANGED
@@ -1690,10 +1690,15 @@ if (!cmd || cmd === "install" || cmd === "agent" || cmd?.startsWith("--")) {
1690
1690
  // (~/.gemini/settings.json) while Antigravity is PER-PROJECT
1691
1691
  // (<project>/.agents/mcp_config.json). So the shared global skill must be
1692
1692
  // seeded ONLY off Gemini CLI's global config — never off an Antigravity config.
1693
- // A patchcord entry in the global ~/.gemini/antigravity(-cli)/mcp_config.json is
1694
- // a leaked per-project token: it makes agy load the patchcord MCP (and its
1695
- // "check inbox first" instruction) in EVERY project, and it kept this skill
1696
- // seeded everywhere. We strip that leak below and gate the skill on Gemini only.
1693
+ // A patchcord entry in the global ~/.gemini/antigravity(-cli)/mcp_config.json or
1694
+ // ~/.gemini/config/mcp_config.json (Antigravity's post-migration global path
1695
+ // confirmed live via the sibling ~/.gemini/config/.migrated marker; the older
1696
+ // two paths are its predecessors) is a leaked per-project token: it makes agy
1697
+ // load the patchcord MCP (and its "check inbox first" instruction) in EVERY
1698
+ // project, and it kept this skill seeded everywhere. We strip that leak below
1699
+ // and gate the skill on Gemini only. Keep all three paths in sync — a prior
1700
+ // fix (a36809c) covered only the first two and missed the migrated path,
1701
+ // leaving leaks there uncleaned.
1697
1702
  if (existsSync(join(HOME, ".gemini"))) {
1698
1703
  // Remove any leaked patchcord server from Antigravity's GLOBAL configs so a
1699
1704
  // per-project token stops hijacking every agy session. Preserve other MCP
@@ -1701,6 +1706,7 @@ if (!cmd || cmd === "install" || cmd === "agent" || cmd?.startsWith("--")) {
1701
1706
  for (const agGlobal of [
1702
1707
  join(HOME, ".gemini", "antigravity", "mcp_config.json"),
1703
1708
  join(HOME, ".gemini", "antigravity-cli", "mcp_config.json"),
1709
+ join(HOME, ".gemini", "config", "mcp_config.json"),
1704
1710
  ]) {
1705
1711
  if (!existsSync(agGlobal)) continue;
1706
1712
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "patchcord",
3
- "version": "0.5.127",
3
+ "version": "0.5.128",
4
4
  "description": "Cross-machine agent messaging for Claude Code and Codex",
5
5
  "scripts": {
6
6
  "version": "node scripts/sync-plugin-version.mjs && git add .claude-plugin/plugin.json"