@goplausible/openclaw-algorand-plugin 1.9.3 → 1.9.4

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/memory/MEMORY.md CHANGED
@@ -23,7 +23,8 @@
23
23
  * `alpha-arcade-interaction` — Load for prediction market trading via MCP tools (browse markets, place orders, manage positions).
24
24
 
25
25
  ### QR Codes
26
- * `generate_algorand_qrcode` returns `qr` (UTF-8 text QR), `uri` (algorand:// URI), `link` (shareable hosted QR URL via QRClaw), and `expires_in` (link validity). Always include the UTF-8 QR block, URI string, and shareable link in your response.
26
+ * `generate_algorand_qrcode` returns `qr` (UTF-8 text QR), `uri` (algorand:// URI), `link` (shareable hosted QR URL via QRClaw), and `expires_in` (link validity).
27
+ * **Channel-aware output**: In TUI/Web channels, include UTF-8 QR block + URI + shareable link. In social channels (Telegram, Discord, WhatsApp, Slack, etc.), skip the QR block (too bulky) and show only URI + shareable link.
27
28
 
28
29
  ### Documentation
29
30
  * Use `get_knowledge_doc` MCP tool for Algorand developer documentation (categories: arcs, sdks, algokit, algokit-utils, tealscript, puya, liquid-auth, python, developers, clis, nodes, details).
@@ -62,26 +62,28 @@ When generating QR codes with `generate_algorand_qrcode`, the tool returns:
62
62
  - `link` — shareable hosted QR URL (via QRClaw service)
63
63
  - `expires_in` — link validity period
64
64
 
65
- After calling the tool, **extract and paste the QR code directly in your response**.
66
- **Always include all of these in your reply:**
65
+ **Channel-Aware Output:**
67
66
 
68
- 1. **UTF-8 QR block** — Unicode block characters from `qr`. Paste inside a code block.
69
- 2. **URI string** — always show this, users need it for wallet deep links.
70
- 3. **Shareable link** — the hosted QR URL from `link`, so users can share or open it in a browser.
67
+ After calling `generate_algorand_qrcode`, tailor output to the channel:
71
68
 
72
- ### Steps to include QR code in reply:
73
- 1. Call the tool and capture output
74
- 2. Extract `qr`, `uri`, and `link` from the response
75
- 3. Include in your reply:
69
+ **TUI / Web channels** (terminal, web UI, canvas):
70
+ 1. **UTF-8 QR block** — paste the Unicode block characters from `qr` inside a code fence
71
+ 2. **URI string** the `algorand://` URI for wallet deep links
72
+ 3. **Shareable link** the hosted QR URL from `link`
76
73
 
74
+ Example:
77
75
  ```
78
76
  [paste UTF-8 QR here]
79
77
  ```
80
-
81
78
  URI: `algorand://...`
82
-
83
79
  Shareable QR: [link URL]
84
80
 
81
+ **Social channels** (Telegram, Discord, WhatsApp, Signal, Slack, IRC, etc.):
82
+ - **Skip** the UTF-8 QR block — too bulky for chat
83
+ - Show only:
84
+ - **URI string** — for wallet deep links
85
+ - **Shareable link** — renders nicely in-app as a clickable QR image
86
+
85
87
  ## Key things to remember
86
88
 
87
89
  - Always check wallet with `wallet_get_info` before blockchain operations
@@ -2,7 +2,7 @@
2
2
  "id": "openclaw-algorand-plugin",
3
3
  "name": "Algorand Integration",
4
4
  "description": "Algorand blockchain integration with MCP and skills — by GoPlausible",
5
- "version": "1.9.3",
5
+ "version": "1.9.4",
6
6
  "skills": [
7
7
  "skills/algorand-development",
8
8
  "skills/algorand-typescript",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goplausible/openclaw-algorand-plugin",
3
- "version": "1.9.3",
3
+ "version": "1.9.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -229,26 +229,28 @@ All prices and quantities use **microunits** (1,000,000 = $1.00 or 1 share). Ord
229
229
  - `link` — shareable hosted QR URL (via QRClaw service)
230
230
  - `expires_in` — link validity period
231
231
 
232
- After calling the tool, **extract and paste the QR code directly in your response**.
233
- **Always include all of these in your reply:**
232
+ **Channel-Aware Output:**
234
233
 
235
- 1. **UTF-8 QR block** — Unicode block characters from `qr`. Paste inside a code block.
236
- 2. **URI string** — always show this, users need it for wallet deep links.
237
- 3. **Shareable link** — the hosted QR URL from `link`, so users can share or open it in a browser.
234
+ After calling `generate_algorand_qrcode`, tailor output to the channel:
238
235
 
239
- ### Steps to include QR code in reply:
240
- 1. Call the tool and capture output
241
- 2. Extract `qr`, `uri`, and `link` from the response
242
- 3. Include in your reply:
236
+ **TUI / Web channels** (terminal, web UI, canvas):
237
+ 1. **UTF-8 QR block** — paste the Unicode block characters from `qr` inside a code fence
238
+ 2. **URI string** the `algorand://` URI for wallet deep links
239
+ 3. **Shareable link** the hosted QR URL from `link`
243
240
 
241
+ Example:
244
242
  ```
245
243
  [paste UTF-8 QR here]
246
244
  ```
247
-
248
245
  URI: `algorand://...`
249
-
250
246
  Shareable QR: [link URL]
251
247
 
248
+ **Social channels** (Telegram, Discord, WhatsApp, Signal, Slack, IRC, etc.):
249
+ - **Skip** the UTF-8 QR block — too bulky for chat
250
+ - Show only:
251
+ - **URI string** — for wallet deep links
252
+ - **Shareable link** — renders nicely in-app as a clickable QR image
253
+
252
254
  ## References
253
255
 
254
256
  For detailed tool documentation:
@@ -799,26 +799,28 @@ Mainnet asset verification via Pera Wallet API. Use to check if assets are legit
799
799
 
800
800
  ### QR Code Display
801
801
 
802
- After calling the tool, **extract and paste the QR code directly in your response**.
803
- **Always include all of these in your reply:**
802
+ **Channel-Aware Output:**
804
803
 
805
- 1. **UTF-8 QR block** — Unicode block characters from `qr`. Paste inside a code block.
806
- 2. **URI string** — always show this, users need it for wallet deep links.
807
- 3. **Shareable link** — the hosted QR URL from `link`, so users can share or open it in a browser.
804
+ After calling `generate_algorand_qrcode`, tailor output to the channel:
808
805
 
809
- **Steps to include QR code in reply:**
810
- 1. Call the tool and capture output
811
- 2. Extract `qr`, `uri`, and `link` from the response
812
- 3. Include in your reply:
806
+ **TUI / Web channels** (terminal, web UI, canvas):
807
+ 1. **UTF-8 QR block** — paste the Unicode block characters from `qr` inside a code fence
808
+ 2. **URI string** the `algorand://` URI for wallet deep links
809
+ 3. **Shareable link** the hosted QR URL from `link`
813
810
 
811
+ Example:
814
812
  ```
815
813
  [paste UTF-8 QR here]
816
814
  ```
817
-
818
815
  URI: `algorand://ADDRESS?amount=X&asset=Y`
819
-
820
816
  Shareable QR: [link URL]
821
817
 
818
+ **Social channels** (Telegram, Discord, WhatsApp, Signal, Slack, IRC, etc.):
819
+ - **Skip** the UTF-8 QR block — too bulky for chat
820
+ - Show only:
821
+ - **URI string** — for wallet deep links
822
+ - **Shareable link** — renders nicely in-app as a clickable QR image
823
+
822
824
  ---
823
825
 
824
826
  ## Knowledge Base Tools