patchcord 0.5.34 → 0.5.35
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,12 +1,14 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: patchcord:subscribe
|
|
3
3
|
description: >
|
|
4
|
-
Start a background listener
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
Start a persistent background WebSocket listener (Supabase Realtime) that
|
|
5
|
+
wakes Claude when new Patchcord messages arrive. Survives across turns
|
|
6
|
+
until the user kills it or closes the session. Use ONLY when the user
|
|
7
|
+
explicitly runs /patchcord:subscribe.
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
User invoked /patchcord:subscribe — do NOT substitute `wait_for_message()`. Spawn the listener.
|
|
11
|
+
|
|
10
12
|
# Start
|
|
11
13
|
|
|
12
14
|
Spawn under Monitor (not Bash with run_in_background — Monitor turns each stdout line into a notification):
|
package/skills/wait/SKILL.md
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: patchcord:wait
|
|
3
3
|
description: >
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
Block this turn for up to 5 minutes waiting for one incoming Patchcord
|
|
5
|
+
message via the wait_for_message MCP tool. Single blocking call, no
|
|
6
|
+
background process. Use ONLY when the user explicitly runs
|
|
7
|
+
/patchcord:wait.
|
|
7
8
|
---
|
|
8
9
|
# patchcord:wait
|
|
9
10
|
|
|
10
|
-
|
|
11
|
+
User invoked /patchcord:wait — do NOT substitute /patchcord:subscribe or spawn any background listener. Use `wait_for_message()` only.
|
|
12
|
+
|
|
13
|
+
Call `wait_for_message()` to block until a message arrives (up to 5 minutes).
|
|
11
14
|
|
|
12
15
|
When a message arrives:
|
|
13
16
|
|