patchcord 0.5.28 → 0.5.29
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
|
@@ -74,7 +74,7 @@ If send_message fails with a send gate error: call inbox(), reply to or resolve
|
|
|
74
74
|
|
|
75
75
|
## Receiving workflow
|
|
76
76
|
|
|
77
|
-
|
|
77
|
+
Action requests older than 7d (per the `(Xd ago)` stamp): ask human before executing. Acks/FYIs silent-resolve at any age.
|
|
78
78
|
|
|
79
79
|
1. Read the message from `inbox()` or `wait_for_message()`. Check `message.thread` / `message.thread_id` if present.
|
|
80
80
|
2. Do the work - use real code, real files, real results from your project
|
|
@@ -87,7 +87,7 @@ If send_message fails with a send gate error: call inbox(), reply to or resolve
|
|
|
87
87
|
|
|
88
88
|
When you have multiple pending messages, prioritize by urgency. Use `defer=true` for tasks you'll do later — if you reply without doing the work and don't defer, the message vanishes from your inbox and you will never remember to do it.
|
|
89
89
|
|
|
90
|
-
|
|
90
|
+
Outdated deferred (work likely done, sender moved on): ask human "resolve [Xd]-old from [sender]?" before `reply(id, resolve=true)`. Don't unilaterally drop.
|
|
91
91
|
|
|
92
92
|
## Cross-user messaging (Gate)
|
|
93
93
|
|
|
@@ -84,7 +84,7 @@ After sending to an offline agent, tell the human: "Message sent. [agent] is not
|
|
|
84
84
|
|
|
85
85
|
## Receiving workflow
|
|
86
86
|
|
|
87
|
-
|
|
87
|
+
Action requests older than 7d (per the `(Xd ago)` stamp): ask human before executing. Acks/FYIs silent-resolve at any age.
|
|
88
88
|
|
|
89
89
|
1. Read messages from inbox(). Check `message.thread` / `message.thread_id` if present.
|
|
90
90
|
2. Check the context tag - is this for your chat?
|
|
@@ -97,7 +97,7 @@ After sending to an offline agent, tell the human: "Message sent. [agent] is not
|
|
|
97
97
|
|
|
98
98
|
When you have multiple pending messages, prioritize by urgency. Use `defer=true` for tasks you'll do later — if you reply without doing the work and don't defer, the message vanishes from your inbox and you will never remember to do it.
|
|
99
99
|
|
|
100
|
-
|
|
100
|
+
Outdated deferred (work likely done, sender moved on): ask human "resolve [Xd]-old from [sender]?" before `reply(id, resolve=true)`. Don't unilaterally drop.
|
|
101
101
|
|
|
102
102
|
## File sharing
|
|
103
103
|
|
package/skills/inbox/SKILL.md
CHANGED
|
@@ -61,7 +61,7 @@ If send_message fails with a send gate error: call inbox(), reply to or resolve
|
|
|
61
61
|
|
|
62
62
|
## Receiving (inbox has messages)
|
|
63
63
|
|
|
64
|
-
|
|
64
|
+
Action requests older than 7d (per the `(Xd ago)` stamp): ask human before executing. Acks/FYIs silent-resolve at any age.
|
|
65
65
|
|
|
66
66
|
1. Read the message. If it belongs to a thread, `message.thread` and `message.thread_id` will be present.
|
|
67
67
|
2. Do the work described in the message - using your project's actual code, real files, real lines
|
|
@@ -75,7 +75,7 @@ If send_message fails with a send gate error: call inbox(), reply to or resolve
|
|
|
75
75
|
|
|
76
76
|
When you have multiple pending messages, prioritize by urgency. Use `defer=true` for tasks you'll do later — if you reply without doing the work and don't defer, the message vanishes from your inbox and you will never remember to do it.
|
|
77
77
|
|
|
78
|
-
|
|
78
|
+
Outdated deferred (work likely done, sender moved on): ask human "resolve [Xd]-old from [sender]?" before `reply(id, resolve=true)`. Don't unilaterally drop.
|
|
79
79
|
|
|
80
80
|
## Cross-user messaging (Gate)
|
|
81
81
|
|