@rubytech/taskmaster 1.16.1 → 1.16.2

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.
@@ -15,7 +15,7 @@ export function createQrGenerateTool() {
15
15
  label: "QR Code Generator",
16
16
  name: "qr_generate",
17
17
  description: "Generate a QR code PNG from any string (URL, text, vCard, WhatsApp link). " +
18
- "Returns a MEDIA: path — copy it into the message tool's media parameter to send the image.",
18
+ "Returns a MEDIA: path — copy the MEDIA: line exactly into your response to deliver the image.",
19
19
  parameters: QrGenerateSchema,
20
20
  execute: async (_toolCallId, params) => {
21
21
  const data = readStringParam(params, "data");
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.16.1",
3
- "commit": "cefc01b75d3ff0790f81d413cbc5273afa2af452",
4
- "builtAt": "2026-03-04T17:39:48.836Z"
2
+ "version": "1.16.2",
3
+ "commit": "5b738cb70310248225f83f6a39d49c7f9abcbe71",
4
+ "builtAt": "2026-03-04T17:48:55.756Z"
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rubytech/taskmaster",
3
- "version": "1.16.1",
3
+ "version": "1.16.2",
4
4
  "description": "AI-powered business assistant for small businesses",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -18,10 +18,14 @@ Generate a QR code image and send it via the `message` tool.
18
18
 
19
19
  1. **Assemble the data string** (see Content Types below)
20
20
  2. **Call `qr_generate`** with the assembled string as `data`
21
- 3. **Copy the `MEDIA:` path** from the tool result exactly
22
- 4. **Call `message`** with that path as the `media` parameter and a short caption
21
+ 3. **Copy the `MEDIA:` line from the tool result verbatim into your response** — do not convert it to markdown or a URL. Write it exactly as returned (e.g. `MEDIA:/tmp/qr-1234567890.png`). The channel delivers it as an image attachment automatically.
22
+ 4. **Add a brief caption** as a separate line of text before or after the `MEDIA:` line.
23
23
 
24
- Example caption: "Here's your QR code — scan to open the listing."
24
+ Example response:
25
+ ```
26
+ Here's your QR code — scan to open the listing.
27
+ MEDIA:/tmp/qr-1234567890.png
28
+ ```
25
29
 
26
30
  ## Content Types
27
31