patchcord 0.3.27 → 0.3.28
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.
- package/.claude-plugin/plugin.json +1 -1
- package/bin/patchcord.mjs +12 -9
- package/package.json +1 -1
|
@@ -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.
|
|
4
|
+
"version": "0.3.28",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "ppravdin"
|
|
7
7
|
},
|
package/bin/patchcord.mjs
CHANGED
|
@@ -156,15 +156,6 @@ if (!cmd || cmd === "install" || cmd === "agent") {
|
|
|
156
156
|
const rl = createInterface({ input: process.stdin, output: process.stdout });
|
|
157
157
|
const ask = (q) => new Promise((resolve) => rl.question(q, resolve));
|
|
158
158
|
|
|
159
|
-
// Project directory confirmation
|
|
160
|
-
console.log(`\n${dim}Project folder:${r} ${bold}${cwd}${r}`);
|
|
161
|
-
console.log(`${dim}Patchcord config will be created here. Run this in your project folder.${r}`);
|
|
162
|
-
const proceed = (await ask(`\n${dim}Continue? (Y/n):${r} `)).trim().toLowerCase();
|
|
163
|
-
if (proceed === "n" || proceed === "no") {
|
|
164
|
-
rl.close();
|
|
165
|
-
process.exit(0);
|
|
166
|
-
}
|
|
167
|
-
|
|
168
159
|
console.log(`\n${bold}Which tool are you setting up?${r}\n`);
|
|
169
160
|
console.log(` ${cyan}1.${r} Claude Code`);
|
|
170
161
|
console.log(` ${cyan}2.${r} Codex CLI`);
|
|
@@ -182,6 +173,18 @@ if (!cmd || cmd === "install" || cmd === "agent") {
|
|
|
182
173
|
process.exit(1);
|
|
183
174
|
}
|
|
184
175
|
|
|
176
|
+
if (isWindsurf) {
|
|
177
|
+
console.log(`\n ${yellow}Note: Windsurf uses global config — applies to all projects.${r}`);
|
|
178
|
+
} else {
|
|
179
|
+
console.log(`\n${dim}Project folder:${r} ${bold}${cwd}${r}`);
|
|
180
|
+
console.log(`${dim}Config will be created here. Run this in your project folder.${r}`);
|
|
181
|
+
const proceed = (await ask(`${dim}Continue? (Y/n):${r} `)).trim().toLowerCase();
|
|
182
|
+
if (proceed === "n" || proceed === "no") {
|
|
183
|
+
rl.close();
|
|
184
|
+
process.exit(0);
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
|
|
185
188
|
|
|
186
189
|
// Check if already configured
|
|
187
190
|
if (!isCodex) {
|