patchcord 0.3.22 → 0.3.23
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 +9 -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.23",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "ppravdin"
|
|
7
7
|
},
|
package/bin/patchcord.mjs
CHANGED
|
@@ -48,6 +48,15 @@ if (!cmd || cmd === "install" || cmd === "agent") {
|
|
|
48
48
|
Messenger for AI agents.
|
|
49
49
|
`);
|
|
50
50
|
|
|
51
|
+
const dim = "\x1b[2m";
|
|
52
|
+
const green = "\x1b[32m";
|
|
53
|
+
const red = "\x1b[31m";
|
|
54
|
+
const cyan = "\x1b[36m";
|
|
55
|
+
const yellow = "\x1b[33m";
|
|
56
|
+
const white = "\x1b[37m";
|
|
57
|
+
const bold = "\x1b[1m";
|
|
58
|
+
const r = "\x1b[0m";
|
|
59
|
+
|
|
51
60
|
// ── Global setup (silent if nothing changed) ──
|
|
52
61
|
let globalChanges = [];
|
|
53
62
|
|
|
@@ -138,14 +147,6 @@ if (!cmd || cmd === "install" || cmd === "agent") {
|
|
|
138
147
|
const rl = createInterface({ input: process.stdin, output: process.stdout });
|
|
139
148
|
const ask = (q) => new Promise((resolve) => rl.question(q, resolve));
|
|
140
149
|
|
|
141
|
-
const dim = "\x1b[2m";
|
|
142
|
-
const green = "\x1b[32m";
|
|
143
|
-
const red = "\x1b[31m";
|
|
144
|
-
const cyan = "\x1b[36m";
|
|
145
|
-
const white = "\x1b[37m";
|
|
146
|
-
const bold = "\x1b[1m";
|
|
147
|
-
const r = "\x1b[0m";
|
|
148
|
-
|
|
149
150
|
// Project directory confirmation
|
|
150
151
|
console.log(`\n${dim}Project folder:${r} ${bold}${cwd}${r}`);
|
|
151
152
|
console.log(`${dim}Patchcord config will be created here. Run this in your project folder.${r}`);
|
|
@@ -170,7 +171,6 @@ if (!cmd || cmd === "install" || cmd === "agent") {
|
|
|
170
171
|
process.exit(1);
|
|
171
172
|
}
|
|
172
173
|
|
|
173
|
-
const yellow = "\x1b[33m";
|
|
174
174
|
|
|
175
175
|
// Check if already configured
|
|
176
176
|
if (!isCodex) {
|