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.
Files changed (2) hide show
  1. package/bin/patchcord.mjs +10 -7
  2. 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
- npx patchcord@latest Setup via browser (patchcord.dev)
74
- npx patchcord@latest --token <token> Self-hosted / CI setup
75
- npx patchcord@latest --token <token> --server <url> Self-hosted with custom server
76
- npx patchcord@latest --full Same + full statusline
77
- npx patchcord@latest --rename <new-name> [--tool <slug>] Rename this agent (paste from dashboard)
78
- npx patchcord@latest subscribe Start the realtime listener (used by /patchcord:subscribe)
79
- npx patchcord@latest skill apply Fetch custom skill from web console`);
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "patchcord",
3
- "version": "0.5.49",
3
+ "version": "0.5.50",
4
4
  "description": "Cross-machine agent messaging for Claude Code and Codex",
5
5
  "author": "ppravdin",
6
6
  "license": "MIT",