@arkade-os/skill 0.1.3 → 0.1.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.
Files changed (2) hide show
  1. package/SKILL.md +15 -0
  2. package/package.json +1 -1
package/SKILL.md CHANGED
@@ -27,6 +27,21 @@ Swap between BTC and stablecoins (USDC/USDT) via LendaSwap.
27
27
 
28
28
  **Default Server:** https://arkade.computer
29
29
 
30
+ ## Agent Safety Rules
31
+
32
+ **IMPORTANT: The following commands move real funds. The agent MUST always ask the user for explicit confirmation before executing them, displaying the amount and destination:**
33
+
34
+ - `send` — sends sats to an Ark address
35
+ - `offboard` — moves offchain BTC to an onchain Bitcoin address
36
+ - `onboard` — moves onchain BTC into Arkade
37
+ - `ln-pay` — pays a Lightning invoice
38
+ - `swap-to-stable` / `swap-to-btc` — executes a stablecoin swap
39
+ - `swap-claim` / `swap-refund` — claims or refunds a swap
40
+
41
+ Read-only commands (`address`, `balance`, `history`, `ln-invoice`, `ln-fees`, `ln-limits`, `ln-pending`, `swap-quote`, `swap-pairs`, `swap-status`, `swap-pending`, `boarding-address`) are safe to run without confirmation.
42
+
43
+ **Wallet initialization:** `init` creates a new private key stored at `~/.arkade-wallet/config.json` (permissions `0600`). The agent should inform the user before first initialization.
44
+
30
45
  ## Installation
31
46
 
32
47
  ### Quick Start (no install required)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arkade-os/skill",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Arkade SDK skills for agent integration - send and receive Bitcoin over Arkade and Lightning, swap USDC/USDT via LendaSwap",
5
5
  "type": "module",
6
6
  "main": "./dist/cjs/index.js",