opencode-mailbox 0.0.5 → 0.0.6
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/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -12815,7 +12815,7 @@ var mailboxPlugin = async (ctx) => {
|
|
|
12815
12815
|
const { tool: tool3 } = await Promise.resolve().then(() => (init_dist(), exports_dist));
|
|
12816
12816
|
const z = tool3.schema;
|
|
12817
12817
|
const sendMailTool = tool3({
|
|
12818
|
-
description: "Send a message to a recipient's mailbox",
|
|
12818
|
+
description: "Send a message to a recipient's mailbox. Note: The parameters 'to' and 'from' do NOT have to be an email. It can just be a name that the recipient watches for (e.g. 'samus').",
|
|
12819
12819
|
args: {
|
|
12820
12820
|
to: z.string().describe("Recipient name. Note, this does NOT have to be an email. It can just be a name that the recipient watches for it (e.g. 'samus')."),
|
|
12821
12821
|
from: z.string().describe("Sender name. Note, this does NOT have to be an email. It can just be a name that the sender wants to appear as (e.g. 'link')."),
|
|
@@ -12830,7 +12830,7 @@ var mailboxPlugin = async (ctx) => {
|
|
|
12830
12830
|
}
|
|
12831
12831
|
});
|
|
12832
12832
|
const watchUnreadMailTool = tool3({
|
|
12833
|
-
description: "Create a hook that auto-injects messages when they are received for a specific name and can specify what should be done with the messages",
|
|
12833
|
+
description: "Create a hook that auto-injects messages when they are received for a specific name and can specify what should be done with the messages. Note: The parameters 'name' does NOT have to be an email. It can just be a name that the recipient watches for (e.g. 'samus').",
|
|
12834
12834
|
args: {
|
|
12835
12835
|
name: z.string().describe("Name of the recipient to watch. Note: this does NOT have to be an email. It can just be a name that the sender uses (e.g. 'samus')."),
|
|
12836
12836
|
"what-to-do-with-it": z.string().describe("Instructions on how to process received messages")
|