patchcord 0.5.49 → 0.5.50
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/bin/patchcord.mjs +10 -7
- package/package.json +1 -1
package/bin/patchcord.mjs
CHANGED
|
@@ -70,13 +70,16 @@ if (cmd === "help" || cmd === "--help" || cmd === "-h") {
|
|
|
70
70
|
console.log(`patchcord — agent messaging for AI coding agents
|
|
71
71
|
|
|
72
72
|
Usage:
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
73
|
+
patchcord Setup via browser (patchcord.dev)
|
|
74
|
+
patchcord --token <token> Self-hosted / CI setup
|
|
75
|
+
patchcord --token <token> --server <url> Self-hosted with custom server
|
|
76
|
+
patchcord --full Same + full statusline
|
|
77
|
+
patchcord --rename <new-name> [--tool <slug>] Rename this agent (paste from dashboard)
|
|
78
|
+
patchcord subscribe Start the realtime listener
|
|
79
|
+
patchcord --version Show installed version
|
|
80
|
+
patchcord --help Show this help
|
|
81
|
+
|
|
82
|
+
First install: npx patchcord@latest`);
|
|
80
83
|
process.exit(0);
|
|
81
84
|
}
|
|
82
85
|
|