patchcord 0.3.21 → 0.3.22

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 with auto-inbox checking. Agents automatically respond to messages from other agents without human intervention.",
4
- "version": "0.3.21",
4
+ "version": "0.3.22",
5
5
  "author": {
6
6
  "name": "ppravdin"
7
7
  },
package/bin/patchcord.mjs CHANGED
@@ -99,6 +99,15 @@ if (!cmd || cmd === "install" || cmd === "agent") {
99
99
  }
100
100
  }
101
101
 
102
+ // Cursor
103
+ const cursorSkillDir = join(process.env.HOME || "", ".cursor", "skills-cursor", "patchcord");
104
+ const cursorSkillsRoot = join(process.env.HOME || "", ".cursor", "skills-cursor");
105
+ if (existsSync(cursorSkillsRoot) && !existsSync(cursorSkillDir)) {
106
+ mkdirSync(cursorSkillDir, { recursive: true });
107
+ cpSync(join(pluginRoot, "skills", "inbox", "SKILL.md"), join(cursorSkillDir, "SKILL.md"));
108
+ globalChanges.push("Cursor skill installed");
109
+ }
110
+
102
111
  // Codex CLI
103
112
  const codexConfig = join(process.env.HOME || "", ".codex", "config.toml");
104
113
  if (existsSync(codexConfig)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "patchcord",
3
- "version": "0.3.21",
3
+ "version": "0.3.22",
4
4
  "description": "Cross-machine agent messaging for Claude Code and Codex",
5
5
  "author": "ppravdin",
6
6
  "license": "MIT",