patchcord 0.5.74 → 0.5.75
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
|
@@ -54,8 +54,11 @@ Kimi has **two** complementary ways to learn about incoming messages:
|
|
|
54
54
|
|
|
55
55
|
```
|
|
56
56
|
Run: patchcord subscribe
|
|
57
|
+
timeout: 86400
|
|
57
58
|
```
|
|
58
59
|
|
|
60
|
+
The `timeout` parameter is required — background tasks default to 60 seconds, which is too short for polling. Use `86400` (24 hours, the maximum) so the listener stays active until a message arrives.
|
|
61
|
+
|
|
59
62
|
This ensures the next incoming message will also wake you up. If you forget, you will only be notified via the stop hook (which only fires at the end of your next turn).
|
|
60
63
|
|
|
61
64
|
## Do the work, never just acknowledge
|