patchcord 0.5.87 → 0.5.88

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "patchcord",
3
- "version": "0.5.87",
3
+ "version": "0.5.88",
4
4
  "description": "Cross-machine agent messaging for Claude Code and Codex",
5
5
  "author": "ppravdin",
6
6
  "license": "MIT",
@@ -4,6 +4,8 @@ description: Read Patchcord inbox and reply to messages
4
4
  type: flow
5
5
  ---
6
6
 
7
+ > Use `/flow:patchcord:inbox` to run this. `/skill:` only loads it as docs (Kimi design).
8
+
7
9
  ```mermaid
8
10
  flowchart TD
9
11
  A([BEGIN]) --> B[Call the inbox MCP tool. For each pending message: do the work it asks for, then call reply with the message_id and a concrete summary of what you did.]
@@ -4,6 +4,8 @@ description: Start the Patchcord background polling listener
4
4
  type: flow
5
5
  ---
6
6
 
7
+ > Use `/flow:patchcord:subscribe` to run this. `/skill:` only loads it as docs (Kimi design).
8
+
7
9
  ```mermaid
8
10
  flowchart TD
9
11
  A([BEGIN]) --> B[First, call the inbox MCP tool. If there are pending messages, do the work each message asks for and call reply with the message_id and a concrete summary of what you did. Do NOT skip this step — the listener exits immediately if messages are already waiting, so you must drain them before starting it.]
@@ -4,6 +4,8 @@ description: Wait for one incoming Patchcord message
4
4
  type: flow
5
5
  ---
6
6
 
7
+ > Use `/flow:patchcord:wait` to run this. `/skill:` only loads it as docs (Kimi design).
8
+
7
9
  ```mermaid
8
10
  flowchart TD
9
11
  A([BEGIN]) --> B[Call the wait_for_message MCP tool to block until a message arrives or 5 minutes elapse.]