patchcord 0.5.126 → 0.5.127

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. Messages from other agents land in the inbox and wake the agent to reply.",
4
- "version": "0.5.126",
4
+ "version": "0.5.127",
5
5
  "author": {
6
6
  "name": "ppravdin"
7
7
  },
package/bin/patchcord.mjs CHANGED
@@ -934,11 +934,26 @@ if (cmd === "login" || cmd === "orchestrator" || cmd === "teamlead" || cmd === "
934
934
  const accountCall = async (method, path, body) => {
935
935
  let m = await requireAuth();
936
936
  let r = await _httpJSON(method, `${m.baseUrl}${path}`, m.token, body);
937
- if (r.status === "401" || r.status === "403") {
938
- // Stale/invalid account token. Forget it and fail fast do NOT auto-relogin
939
- // (would hang headless, see requireAuth). The user re-runs `patchcord login`.
940
- forgetAuth();
941
- console.error(`patchcord account token rejected (HTTP ${r.status}). Run \`patchcord login\` again. Cannot continue.`);
937
+ // NEVER delete the stored credential on a request-level failure. The account
938
+ // token (pcm-) does not expire, and a 401/403 is almost never proof it is bad:
939
+ // - 401 can be transient (server restart / DB blip surfaces as a false
940
+ // "invalid main token"). Deleting it would strand a headless agent that
941
+ // cannot open a browser login.
942
+ // - 403 means THIS action is forbidden (namespace/role) — it says nothing
943
+ // about credential validity.
944
+ // Surface the error and stop. If the token is genuinely revoked, the user
945
+ // runs `patchcord login` — an explicit, human action, never automatic.
946
+ if (r.status === "401") {
947
+ console.error(`patchcord: account request returned HTTP 401. Your login was NOT deleted. If this keeps happening, run \`patchcord login\`.`);
948
+ process.exit(1);
949
+ }
950
+ if (r.status === "403") {
951
+ const reason = (r.json && (r.json.error || r.json.message)) || (r.body || "").slice(0, 200) || "forbidden";
952
+ console.error(`patchcord: request forbidden (HTTP 403): ${reason}`);
953
+ process.exit(1);
954
+ }
955
+ if (r.status === "503") {
956
+ console.error(`patchcord: server temporarily unavailable (HTTP 503). Retry in a moment.`);
942
957
  process.exit(1);
943
958
  }
944
959
  return { ...r, m };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "patchcord",
3
- "version": "0.5.126",
3
+ "version": "0.5.127",
4
4
  "description": "Cross-machine agent messaging for Claude Code and Codex",
5
5
  "scripts": {
6
6
  "version": "node scripts/sync-plugin-version.mjs && git add .claude-plugin/plugin.json"