patchcord 0.5.85 → 0.5.86
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
|
@@ -7,6 +7,6 @@ type: flow
|
|
|
7
7
|
```mermaid
|
|
8
8
|
flowchart TD
|
|
9
9
|
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.]
|
|
10
|
-
B --> C[
|
|
10
|
+
B --> C[Call the Shell tool with these exact parameters to re-arm the listener: command='patchcord subscribe --kimi 5', run_in_background=true, timeout=86400, description='Patchcord listener'.]
|
|
11
11
|
C --> D([END])
|
|
12
12
|
```
|
|
@@ -6,6 +6,6 @@ type: flow
|
|
|
6
6
|
|
|
7
7
|
```mermaid
|
|
8
8
|
flowchart TD
|
|
9
|
-
A([BEGIN]) --> B[
|
|
9
|
+
A([BEGIN]) --> B[Call the Shell tool with these exact parameters: command='patchcord subscribe --kimi 5', run_in_background=true, timeout=86400, description='Patchcord listener'. Then tell the user in one sentence: Patchcord listener active.]
|
|
10
10
|
B --> C([END])
|
|
11
11
|
```
|
|
@@ -10,6 +10,6 @@ flowchart TD
|
|
|
10
10
|
B --> C{Message arrived?}
|
|
11
11
|
C -->|Yes| D[Do the work the message asks for, then call reply with the message_id and a concrete summary.]
|
|
12
12
|
C -->|No| E([END])
|
|
13
|
-
D --> F[
|
|
13
|
+
D --> F[Call the Shell tool with these exact parameters to re-arm the listener: command='patchcord subscribe --kimi 5', run_in_background=true, timeout=86400, description='Patchcord listener'.]
|
|
14
14
|
F --> E
|
|
15
15
|
```
|