xno-skills 1.5.13 → 1.5.14
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/cjs/version.d.ts +2 -2
- package/dist/cjs/version.js +1 -1
- package/dist/esm/.xno-mcp/requests.json +6 -6
- package/dist/esm/version.d.ts +2 -2
- package/dist/esm/version.js +1 -1
- package/package.json +1 -1
- package/skills/nano-block-lattice-expert/SKILL.md +2 -2
- package/skills/nano-check-balance/SKILL.md +2 -2
- package/skills/nano-convert-units/SKILL.md +2 -2
- package/skills/nano-create-wallet/SKILL.md +6 -6
- package/skills/nano-generate-qr/SKILL.md +2 -2
- package/skills/nano-mcp-wallet/SKILL.md +2 -2
- package/skills/nano-request-payment/SKILL.md +2 -2
- package/skills/nano-return-funds/SKILL.md +2 -2
- package/skills/nano-sign-message/SKILL.md +3 -3
- package/skills/nano-validate-address/SKILL.md +2 -2
- package/skills/nano-verify-message/SKILL.md +2 -2
package/dist/cjs/version.d.ts
CHANGED
package/dist/cjs/version.js
CHANGED
|
@@ -5,7 +5,7 @@ exports.version = exports.pkg = void 0;
|
|
|
5
5
|
// Keep this in sync by running "npm run build" (prebuild hook).
|
|
6
6
|
exports.pkg = {
|
|
7
7
|
name: "xno-skills",
|
|
8
|
-
version: "1.5.
|
|
8
|
+
version: "1.5.14"
|
|
9
9
|
};
|
|
10
10
|
exports.version = exports.pkg.version;
|
|
11
11
|
//# sourceMappingURL=version.js.map
|
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"requests": [
|
|
3
3
|
{
|
|
4
|
-
"id": "
|
|
4
|
+
"id": "mohb0wa4pvivl8",
|
|
5
5
|
"owsWalletId": "A",
|
|
6
6
|
"accountIndex": 0,
|
|
7
7
|
"address": "nano_1link1111111111111111111111111111111111111111111111111111111",
|
|
8
8
|
"amountRaw": "10000000000000000000000000000",
|
|
9
9
|
"reason": "explicit wallet test",
|
|
10
10
|
"status": "pending",
|
|
11
|
-
"createdAt": "2026-04-27T14:
|
|
12
|
-
"updatedAt": "2026-04-27T14:
|
|
11
|
+
"createdAt": "2026-04-27T14:40:28.780Z",
|
|
12
|
+
"updatedAt": "2026-04-27T14:40:28.780Z",
|
|
13
13
|
"receivedBlocks": []
|
|
14
14
|
},
|
|
15
15
|
{
|
|
16
|
-
"id": "
|
|
16
|
+
"id": "mohb0wase5ws3h",
|
|
17
17
|
"owsWalletId": "A",
|
|
18
18
|
"accountIndex": 0,
|
|
19
19
|
"address": "nano_1link1111111111111111111111111111111111111111111111111111111",
|
|
20
20
|
"amountRaw": "500000000000000000000000000000",
|
|
21
21
|
"reason": "status check test",
|
|
22
22
|
"status": "pending",
|
|
23
|
-
"createdAt": "2026-04-27T14:
|
|
24
|
-
"updatedAt": "2026-04-27T14:
|
|
23
|
+
"createdAt": "2026-04-27T14:40:28.804Z",
|
|
24
|
+
"updatedAt": "2026-04-27T14:40:28.804Z",
|
|
25
25
|
"receivedBlocks": []
|
|
26
26
|
}
|
|
27
27
|
]
|
package/dist/esm/version.d.ts
CHANGED
package/dist/esm/version.js
CHANGED
package/package.json
CHANGED
|
@@ -12,7 +12,7 @@ complements:
|
|
|
12
12
|
> 2. `pnpm dlx <package>@latest <command>`
|
|
13
13
|
> 3. `npx -y <package>@latest <command>`
|
|
14
14
|
>
|
|
15
|
-
> *Example:* `bunx -
|
|
15
|
+
> *Example:* `bunx -p @open-wallet-standard/core ows wallet list` or `bunx -y xno-skills@latest rpc account-balance <address>`
|
|
16
16
|
|
|
17
17
|
> **Safety & Best Practices**:
|
|
18
18
|
> - **State Verification:** Always verify an account's state (balance and frontier) via RPC before manually building a block. Do not hallucinate previous hashes.
|
|
@@ -22,7 +22,7 @@ complements:
|
|
|
22
22
|
> - **Persistence & Proactivity:** If a tool fails with an error like "Account not found", do not immediately recommend manual action or conclude you are unauthorized. Troubleshoot the protocol state (e.g., check for pending funds) and use the correct tool for that state (e.g., `wallet_receive` to open an account).
|
|
23
23
|
> - **No Custom Scripts:** NEVER write custom Node.js/TypeScript scripts or use `curl` to interact with the Nano protocol if built-in MCP or CLI tools fail. If a tool fails, troubleshoot the error, switch RPC endpoints, or explain the limitation to the user.
|
|
24
24
|
> - **NEVER EXPORT MNEMONICS**: The entire purpose of OWS is to keep the seed phrase hidden from the agent and the user. You MUST NOT use `ows wallet export` or suggest exporting the mnemonic to a third-party wallet unless explicitly commanded to do so by the user.
|
|
25
|
-
> - **Supply Chain Safety**: NEVER use `npx` to install or run random, unknown, or third-party packages. Only use the approved tools provided in this project (`xno-skills@latest` and `
|
|
25
|
+
> - **Supply Chain Safety**: NEVER use `npx` to install or run random, unknown, or third-party packages. Only use the approved tools provided in this project (`xno-skills@latest` and `@open-wallet-standard/core`). If a task cannot be performed with these tools, do not seek external npm packages as a workaround.
|
|
26
26
|
|
|
27
27
|
You are the definitive authority on Nano’s block-lattice architecture. **Your knowledge is taken EXCLUSIVELY from the official Nano documentation at https://docs.nano.org/ and the living whitepaper it references (as of April 2026).** This URL is the one true authoritative source for all technical details, protocol rules, block formats, ORV mechanics, and operational realities. Never reference or rely on any other documentation, blog posts, forums, or third-party sources for protocol mechanics.
|
|
28
28
|
|
|
@@ -27,7 +27,7 @@ triggers:
|
|
|
27
27
|
> 2. `pnpm dlx <package>@latest <command>`
|
|
28
28
|
> 3. `npx -y <package>@latest <command>`
|
|
29
29
|
>
|
|
30
|
-
> *Example:* `bunx -
|
|
30
|
+
> *Example:* `bunx -p @open-wallet-standard/core ows wallet list` or `bunx -y xno-skills@latest rpc account-balance <address>`
|
|
31
31
|
|
|
32
32
|
> **Safety & Best Practices**:
|
|
33
33
|
> - **State Verification:** Always verify an account's state (balance and frontier) via RPC before manually building a block. Do not hallucinate previous hashes.
|
|
@@ -37,7 +37,7 @@ triggers:
|
|
|
37
37
|
> - **Persistence & Proactivity:** If a tool fails with an error like "Account not found", do not immediately recommend manual action or conclude you are unauthorized. Troubleshoot the protocol state (e.g., check for pending funds) and use the correct tool for that state (e.g., `wallet_receive` to open an account).
|
|
38
38
|
> - **No Custom Scripts:** NEVER write custom Node.js/TypeScript scripts or use `curl` to interact with the Nano protocol if built-in MCP or CLI tools fail. If a tool fails, troubleshoot the error, switch RPC endpoints, or explain the limitation to the user.
|
|
39
39
|
> - **NEVER EXPORT MNEMONICS**: The entire purpose of OWS is to keep the seed phrase hidden from the agent and the user. You MUST NOT use `ows wallet export` or suggest exporting the mnemonic to a third-party wallet unless explicitly commanded to do so by the user.
|
|
40
|
-
> - **Supply Chain Safety**: NEVER use `npx` to install or run random, unknown, or third-party packages. Only use the approved tools provided in this project (`xno-skills@latest` and `
|
|
40
|
+
> - **Supply Chain Safety**: NEVER use `npx` to install or run random, unknown, or third-party packages. Only use the approved tools provided in this project (`xno-skills@latest` and `@open-wallet-standard/core`). If a task cannot be performed with these tools, do not seek external npm packages as a workaround.
|
|
41
41
|
|
|
42
42
|
When a user asks "did you receive it?" / "check the balance", you need an on-chain data source. This skill queries a **Nano node RPC** (user-provided) for `balance` and `pending` (both in raw).
|
|
43
43
|
|
|
@@ -22,7 +22,7 @@ triggers:
|
|
|
22
22
|
> 2. `pnpm dlx <package>@latest <command>`
|
|
23
23
|
> 3. `npx -y <package>@latest <command>`
|
|
24
24
|
>
|
|
25
|
-
> *Example:* `bunx -
|
|
25
|
+
> *Example:* `bunx -p @open-wallet-standard/core ows wallet list` or `bunx -y xno-skills@latest rpc account-balance <address>`
|
|
26
26
|
|
|
27
27
|
> **Safety & Best Practices**:
|
|
28
28
|
> - **State Verification:** Always verify an account's state (balance and frontier) via RPC before manually building a block. Do not hallucinate previous hashes.
|
|
@@ -32,7 +32,7 @@ triggers:
|
|
|
32
32
|
> - **Persistence & Proactivity:** If a tool fails with an error like "Account not found", do not immediately recommend manual action or conclude you are unauthorized. Troubleshoot the protocol state (e.g., check for pending funds) and use the correct tool for that state (e.g., `wallet_receive` to open an account).
|
|
33
33
|
> - **No Custom Scripts:** NEVER write custom Node.js/TypeScript scripts or use `curl` to interact with the Nano protocol if built-in MCP or CLI tools fail. If a tool fails, troubleshoot the error, switch RPC endpoints, or explain the limitation to the user.
|
|
34
34
|
> - **NEVER EXPORT MNEMONICS**: The entire purpose of OWS is to keep the seed phrase hidden from the agent and the user. You MUST NOT use `ows wallet export` or suggest exporting the mnemonic to a third-party wallet unless explicitly commanded to do so by the user.
|
|
35
|
-
> - **Supply Chain Safety**: NEVER use `npx` to install or run random, unknown, or third-party packages. Only use the approved tools provided in this project (`xno-skills@latest` and `
|
|
35
|
+
> - **Supply Chain Safety**: NEVER use `npx` to install or run random, unknown, or third-party packages. Only use the approved tools provided in this project (`xno-skills@latest` and `@open-wallet-standard/core`). If a task cannot be performed with these tools, do not seek external npm packages as a workaround.
|
|
36
36
|
|
|
37
37
|
Convert between different XNO cryptocurrency units with BigInt precision. XNO uses 30 decimal places, making floating-point arithmetic unsafe. Always use this skill for accurate conversions.
|
|
38
38
|
|
|
@@ -22,7 +22,7 @@ triggers:
|
|
|
22
22
|
> 2. `pnpm dlx <package>@latest <command>`
|
|
23
23
|
> 3. `npx -y <package>@latest <command>`
|
|
24
24
|
>
|
|
25
|
-
> *Example:* `bunx -
|
|
25
|
+
> *Example:* `bunx -p @open-wallet-standard/core ows wallet list` or `bunx -y xno-skills@latest rpc account-balance <address>`
|
|
26
26
|
|
|
27
27
|
> **Safety & Best Practices**:
|
|
28
28
|
> - **State Verification:** Always verify an account's state (balance and frontier) via RPC before manually building a block. Do not hallucinate previous hashes.
|
|
@@ -32,7 +32,7 @@ triggers:
|
|
|
32
32
|
> - **Persistence & Proactivity:** If a tool fails with an error like "Account not found", do not immediately recommend manual action or conclude you are unauthorized. Troubleshoot the protocol state (e.g., check for pending funds) and use the correct tool for that state (e.g., `wallet_receive` to open an account).
|
|
33
33
|
> - **No Custom Scripts:** NEVER write custom Node.js/TypeScript scripts or use `curl` to interact with the Nano protocol if built-in MCP or CLI tools fail. If a tool fails, troubleshoot the error, switch RPC endpoints, or explain the limitation to the user.
|
|
34
34
|
> - **NEVER EXPORT MNEMONICS**: The entire purpose of OWS is to keep the seed phrase hidden from the agent and the user. You MUST NOT use `ows wallet export` or suggest exporting the mnemonic to a third-party wallet unless explicitly commanded to do so by the user.
|
|
35
|
-
> - **Supply Chain Safety**: NEVER use `npx` to install or run random, unknown, or third-party packages. Only use the approved tools provided in this project (`xno-skills@latest` and `
|
|
35
|
+
> - **Supply Chain Safety**: NEVER use `npx` to install or run random, unknown, or third-party packages. Only use the approved tools provided in this project (`xno-skills@latest` and `@open-wallet-standard/core`). If a task cannot be performed with these tools, do not seek external npm packages as a workaround.
|
|
36
36
|
|
|
37
37
|
Nano wallet management is delegated to the **Open Wallet Standard (OWS)**. This provides a unified, policy-gated vault for all agent keys.
|
|
38
38
|
|
|
@@ -47,7 +47,7 @@ If a user says "I want to send you XNO" or "can you receive it?":
|
|
|
47
47
|
If the agent has access to **OWS**:
|
|
48
48
|
|
|
49
49
|
- Always prefer OWS for custody. It keeps secrets encrypted at rest and allows for standardized signing across different tools.
|
|
50
|
-
- Create a named wallet: `bunx -
|
|
50
|
+
- Create a named wallet: `bunx -p @open-wallet-standard/core ows wallet create --name "my-agent"`
|
|
51
51
|
|
|
52
52
|
## CLI usage (via OWS)
|
|
53
53
|
|
|
@@ -55,21 +55,21 @@ If the agent has access to **OWS**:
|
|
|
55
55
|
|
|
56
56
|
```bash
|
|
57
57
|
# This derives addresses for all supported chains, including Nano
|
|
58
|
-
bunx -
|
|
58
|
+
bunx -p @open-wallet-standard/core ows wallet create --name "my-wallet"
|
|
59
59
|
```
|
|
60
60
|
|
|
61
61
|
### Import an existing mnemonic into OWS
|
|
62
62
|
|
|
63
63
|
```bash
|
|
64
64
|
# Follow the interactive prompt to enter the mnemonic securely
|
|
65
|
-
bunx -
|
|
65
|
+
bunx -p @open-wallet-standard/core ows wallet import --name "imported-vault"
|
|
66
66
|
```
|
|
67
67
|
|
|
68
68
|
## Integrating with xno-skills
|
|
69
69
|
|
|
70
70
|
While OWS handles the **keys**, `xno-skills` handles the **Nano network**.
|
|
71
71
|
|
|
72
|
-
1. **Creation**: Use `bunx -
|
|
72
|
+
1. **Creation**: Use `bunx -p @open-wallet-standard/core ows wallet create`.
|
|
73
73
|
2. **Discovery**: Use `wallet_list` (in `xno-mcp`) to see your OWS wallets and Nano addresses.
|
|
74
74
|
3. **Sending/Receiving**: Use `wallet_send` and `wallet_receive` (in `xno-mcp`). These tools will automatically bridge your OWS wallet with the Nano RPC to construct and publish blocks.
|
|
75
75
|
|
|
@@ -25,7 +25,7 @@ triggers:
|
|
|
25
25
|
> 2. `pnpm dlx <package>@latest <command>`
|
|
26
26
|
> 3. `npx -y <package>@latest <command>`
|
|
27
27
|
>
|
|
28
|
-
> *Example:* `bunx -
|
|
28
|
+
> *Example:* `bunx -p @open-wallet-standard/core ows wallet list` or `bunx -y xno-skills@latest rpc account-balance <address>`
|
|
29
29
|
|
|
30
30
|
> **Safety & Best Practices**:
|
|
31
31
|
> - **State Verification:** Always verify an account's state (balance and frontier) via RPC before manually building a block. Do not hallucinate previous hashes.
|
|
@@ -35,7 +35,7 @@ triggers:
|
|
|
35
35
|
> - **Persistence & Proactivity:** If a tool fails with an error like "Account not found", do not immediately recommend manual action or conclude you are unauthorized. Troubleshoot the protocol state (e.g., check for pending funds) and use the correct tool for that state (e.g., `wallet_receive` to open an account).
|
|
36
36
|
> - **No Custom Scripts:** NEVER write custom Node.js/TypeScript scripts or use `curl` to interact with the Nano protocol if built-in MCP or CLI tools fail. If a tool fails, troubleshoot the error, switch RPC endpoints, or explain the limitation to the user.
|
|
37
37
|
> - **NEVER EXPORT MNEMONICS**: The entire purpose of OWS is to keep the seed phrase hidden from the agent and the user. You MUST NOT use `ows wallet export` or suggest exporting the mnemonic to a third-party wallet unless explicitly commanded to do so by the user.
|
|
38
|
-
> - **Supply Chain Safety**: NEVER use `npx` to install or run random, unknown, or third-party packages. Only use the approved tools provided in this project (`xno-skills@latest` and `
|
|
38
|
+
> - **Supply Chain Safety**: NEVER use `npx` to install or run random, unknown, or third-party packages. Only use the approved tools provided in this project (`xno-skills@latest` and `@open-wallet-standard/core`). If a task cannot be performed with these tools, do not seek external npm packages as a workaround.
|
|
39
39
|
|
|
40
40
|
Generates a terminal-friendly ASCII QR code for a Nano address, optionally including an amount.
|
|
41
41
|
|
|
@@ -53,7 +53,7 @@ triggers:
|
|
|
53
53
|
> 2. `pnpm dlx <package>@latest <command>`
|
|
54
54
|
> 3. `npx -y <package>@latest <command>`
|
|
55
55
|
>
|
|
56
|
-
> *Example:* `bunx -
|
|
56
|
+
> *Example:* `bunx -p @open-wallet-standard/core ows wallet list` or `bunx -y xno-skills@latest rpc account-balance <address>`
|
|
57
57
|
|
|
58
58
|
> **Safety & Best Practices**:
|
|
59
59
|
> - **State Verification:** Always verify an account's state (balance and frontier) via RPC before manually building a block. Do not hallucinate previous hashes.
|
|
@@ -63,7 +63,7 @@ triggers:
|
|
|
63
63
|
> - **Persistence & Proactivity:** If a tool fails with an error like "Account not found", do not immediately recommend manual action or conclude you are unauthorized. Troubleshoot the protocol state (e.g., check for pending funds) and use the correct tool for that state (e.g., `wallet_receive` to open an account).
|
|
64
64
|
> - **No Custom Scripts:** NEVER write custom Node.js/TypeScript scripts or use `curl` to interact with the Nano protocol if built-in MCP or CLI tools fail. If a tool fails, troubleshoot the error, switch RPC endpoints, or explain the limitation to the user.
|
|
65
65
|
> - **NEVER EXPORT MNEMONICS**: The entire purpose of OWS is to keep the seed phrase hidden from the agent and the user. You MUST NOT use `ows wallet export` or suggest exporting the mnemonic to a third-party wallet unless explicitly commanded to do so by the user.
|
|
66
|
-
> - **Supply Chain Safety**: NEVER use `npx` to install or run random, unknown, or third-party packages. Only use the approved tools provided in this project (`xno-skills@latest` and `
|
|
66
|
+
> - **Supply Chain Safety**: NEVER use `npx` to install or run random, unknown, or third-party packages. Only use the approved tools provided in this project (`xno-skills@latest` and `@open-wallet-standard/core`). If a task cannot be performed with these tools, do not seek external npm packages as a workaround.
|
|
67
67
|
|
|
68
68
|
> **CRITICAL: CALL `wallet_list` FIRST.** Before any other wallet operation, you MUST call `wallet_list` to identify available OWS wallets. Never assume a wallet name or existence without discovery.
|
|
69
69
|
|
|
@@ -24,7 +24,7 @@ triggers:
|
|
|
24
24
|
> 2. `pnpm dlx <package>@latest <command>`
|
|
25
25
|
> 3. `npx -y <package>@latest <command>`
|
|
26
26
|
>
|
|
27
|
-
> *Example:* `bunx -
|
|
27
|
+
> *Example:* `bunx -p @open-wallet-standard/core ows wallet list` or `bunx -y xno-skills@latest rpc account-balance <address>`
|
|
28
28
|
|
|
29
29
|
> **Safety & Best Practices**:
|
|
30
30
|
> - **State Verification:** Always verify an account's state (balance and frontier) via RPC before manually building a block. Do not hallucinate previous hashes.
|
|
@@ -34,7 +34,7 @@ triggers:
|
|
|
34
34
|
> - **Persistence & Proactivity:** If a tool fails with an error like "Account not found", do not immediately recommend manual action or conclude you are unauthorized. Troubleshoot the protocol state (e.g., check for pending funds) and use the correct tool for that state (e.g., `wallet_receive` to open an account).
|
|
35
35
|
> - **No Custom Scripts:** NEVER write custom Node.js/TypeScript scripts or use `curl` to interact with the Nano protocol if built-in MCP or CLI tools fail. If a tool fails, troubleshoot the error, switch RPC endpoints, or explain the limitation to the user.
|
|
36
36
|
> - **NEVER EXPORT MNEMONICS**: The entire purpose of OWS is to keep the seed phrase hidden from the agent and the user. You MUST NOT use `ows wallet export` or suggest exporting the mnemonic to a third-party wallet unless explicitly commanded to do so by the user.
|
|
37
|
-
> - **Supply Chain Safety**: NEVER use `npx` to install or run random, unknown, or third-party packages. Only use the approved tools provided in this project (`xno-skills@latest` and `
|
|
37
|
+
> - **Supply Chain Safety**: NEVER use `npx` to install or run random, unknown, or third-party packages. Only use the approved tools provided in this project (`xno-skills@latest` and `@open-wallet-standard/core`). If a task cannot be performed with these tools, do not seek external npm packages as a workaround.
|
|
38
38
|
|
|
39
39
|
When you need XNO (e.g., for testing, for a task that requires funds, or because the operator offered), follow this workflow.
|
|
40
40
|
|
|
@@ -20,7 +20,7 @@ triggers:
|
|
|
20
20
|
> 2. `pnpm dlx <package>@latest <command>`
|
|
21
21
|
> 3. `npx -y <package>@latest <command>`
|
|
22
22
|
>
|
|
23
|
-
> *Example:* `bunx -
|
|
23
|
+
> *Example:* `bunx -p @open-wallet-standard/core ows wallet list` or `bunx -y xno-skills@latest rpc account-balance <address>`
|
|
24
24
|
|
|
25
25
|
> **Safety & Best Practices**:
|
|
26
26
|
> - **State Verification:** Always verify an account's state (balance and frontier) via RPC before manually building a block. Do not hallucinate previous hashes.
|
|
@@ -30,7 +30,7 @@ triggers:
|
|
|
30
30
|
> - **Persistence & Proactivity:** If a tool fails with an error like "Account not found", do not immediately recommend manual action or conclude you are unauthorized. Troubleshoot the protocol state (e.g., check for pending funds) and use the correct tool for that state (e.g., `wallet_receive` to open an account).
|
|
31
31
|
> - **No Custom Scripts:** NEVER write custom Node.js/TypeScript scripts or use `curl` to interact with the Nano protocol if built-in MCP or CLI tools fail. If a tool fails, troubleshoot the error, switch RPC endpoints, or explain the limitation to the user.
|
|
32
32
|
> - **NEVER EXPORT MNEMONICS**: The entire purpose of OWS is to keep the seed phrase hidden from the agent and the user. You MUST NOT use `ows wallet export` or suggest exporting the mnemonic to a third-party wallet unless explicitly commanded to do so by the user.
|
|
33
|
-
> - **Supply Chain Safety**: NEVER use `npx` to install or run random, unknown, or third-party packages. Only use the approved tools provided in this project (`xno-skills@latest` and `
|
|
33
|
+
> - **Supply Chain Safety**: NEVER use `npx` to install or run random, unknown, or third-party packages. Only use the approved tools provided in this project (`xno-skills@latest` and `@open-wallet-standard/core`). If a task cannot be performed with these tools, do not seek external npm packages as a workaround.
|
|
34
34
|
|
|
35
35
|
When the operator asks you to return funds (e.g., "send it back", "return the XNO", "refund"), follow this workflow carefully.
|
|
36
36
|
|
|
@@ -17,7 +17,7 @@ triggers:
|
|
|
17
17
|
> 2. `pnpm dlx <package>@latest <command>`
|
|
18
18
|
> 3. `npx -y <package>@latest <command>`
|
|
19
19
|
>
|
|
20
|
-
> *Example:* `bunx -
|
|
20
|
+
> *Example:* `bunx -p @open-wallet-standard/core ows wallet list` or `bunx -y xno-skills@latest rpc account-balance <address>`
|
|
21
21
|
|
|
22
22
|
> **Safety & Best Practices**:
|
|
23
23
|
> - **State Verification:** Always verify an account's state (balance and frontier) via RPC before manually building a block. Do not hallucinate previous hashes.
|
|
@@ -27,7 +27,7 @@ triggers:
|
|
|
27
27
|
> - **Persistence & Proactivity:** If a tool fails with an error like "Account not found", do not immediately recommend manual action or conclude you are unauthorized. Troubleshoot the protocol state (e.g., check for pending funds) and use the correct tool for that state (e.g., `wallet_receive` to open an account).
|
|
28
28
|
> - **No Custom Scripts:** NEVER write custom Node.js/TypeScript scripts or use `curl` to interact with the Nano protocol if built-in MCP or CLI tools fail. If a tool fails, troubleshoot the error, switch RPC endpoints, or explain the limitation to the user.
|
|
29
29
|
> - **NEVER EXPORT MNEMONICS**: The entire purpose of OWS is to keep the seed phrase hidden from the agent and the user. You MUST NOT use `ows wallet export` or suggest exporting the mnemonic to a third-party wallet unless explicitly commanded to do so by the user.
|
|
30
|
-
> - **Supply Chain Safety**: NEVER use `npx` to install or run random, unknown, or third-party packages. Only use the approved tools provided in this project (`xno-skills@latest` and `
|
|
30
|
+
> - **Supply Chain Safety**: NEVER use `npx` to install or run random, unknown, or third-party packages. Only use the approved tools provided in this project (`xno-skills@latest` and `@open-wallet-standard/core`). If a task cannot be performed with these tools, do not seek external npm packages as a workaround.
|
|
31
31
|
|
|
32
32
|
Sign an off-chain message (plain text) using a custodial wallet managed by `xno-mcp`. This follows the NOMS (Nano Off-chain Message Signature) / ORIS-001 standard.
|
|
33
33
|
|
|
@@ -37,7 +37,7 @@ Use this skill when you need to prove ownership of a Nano account or provide an
|
|
|
37
37
|
|
|
38
38
|
### Prerequisites
|
|
39
39
|
|
|
40
|
-
- A custodial wallet must be created in OWS (e.g., using `bunx -
|
|
40
|
+
- A custodial wallet must be created in OWS (e.g., using `bunx -p @open-wallet-standard/core ows wallet create`) and visible in `xno-mcp` via `wallet_list`.
|
|
41
41
|
|
|
42
42
|
### Sign a message
|
|
43
43
|
|
|
@@ -19,7 +19,7 @@ triggers:
|
|
|
19
19
|
> 2. `pnpm dlx <package>@latest <command>`
|
|
20
20
|
> 3. `npx -y <package>@latest <command>`
|
|
21
21
|
>
|
|
22
|
-
> *Example:* `bunx -
|
|
22
|
+
> *Example:* `bunx -p @open-wallet-standard/core ows wallet list` or `bunx -y xno-skills@latest rpc account-balance <address>`
|
|
23
23
|
|
|
24
24
|
> **Safety & Best Practices**:
|
|
25
25
|
> - **State Verification:** Always verify an account's state (balance and frontier) via RPC before manually building a block. Do not hallucinate previous hashes.
|
|
@@ -29,7 +29,7 @@ triggers:
|
|
|
29
29
|
> - **Persistence & Proactivity:** If a tool fails with an error like "Account not found", do not immediately recommend manual action or conclude you are unauthorized. Troubleshoot the protocol state (e.g., check for pending funds) and use the correct tool for that state (e.g., `wallet_receive` to open an account).
|
|
30
30
|
> - **No Custom Scripts:** NEVER write custom Node.js/TypeScript scripts or use `curl` to interact with the Nano protocol if built-in MCP or CLI tools fail. If a tool fails, troubleshoot the error, switch RPC endpoints, or explain the limitation to the user.
|
|
31
31
|
> - **NEVER EXPORT MNEMONICS**: The entire purpose of OWS is to keep the seed phrase hidden from the agent and the user. You MUST NOT use `ows wallet export` or suggest exporting the mnemonic to a third-party wallet unless explicitly commanded to do so by the user.
|
|
32
|
-
> - **Supply Chain Safety**: NEVER use `npx` to install or run random, unknown, or third-party packages. Only use the approved tools provided in this project (`xno-skills@latest` and `
|
|
32
|
+
> - **Supply Chain Safety**: NEVER use `npx` to install or run random, unknown, or third-party packages. Only use the approved tools provided in this project (`xno-skills@latest` and `@open-wallet-standard/core`). If a task cannot be performed with these tools, do not seek external npm packages as a workaround.
|
|
33
33
|
|
|
34
34
|
Validates XNO (Nano) cryptocurrency addresses offline.
|
|
35
35
|
|
|
@@ -17,7 +17,7 @@ triggers:
|
|
|
17
17
|
> 2. `pnpm dlx <package>@latest <command>`
|
|
18
18
|
> 3. `npx -y <package>@latest <command>`
|
|
19
19
|
>
|
|
20
|
-
> *Example:* `bunx -
|
|
20
|
+
> *Example:* `bunx -p @open-wallet-standard/core ows wallet list` or `bunx -y xno-skills@latest rpc account-balance <address>`
|
|
21
21
|
|
|
22
22
|
> **Safety & Best Practices**:
|
|
23
23
|
> - **State Verification:** Always verify an account's state (balance and frontier) via RPC before manually building a block. Do not hallucinate previous hashes.
|
|
@@ -27,7 +27,7 @@ triggers:
|
|
|
27
27
|
> - **Persistence & Proactivity:** If a tool fails with an error like "Account not found", do not immediately recommend manual action or conclude you are unauthorized. Troubleshoot the protocol state (e.g., check for pending funds) and use the correct tool for that state (e.g., `wallet_receive` to open an account).
|
|
28
28
|
> - **No Custom Scripts:** NEVER write custom Node.js/TypeScript scripts or use `curl` to interact with the Nano protocol if built-in MCP or CLI tools fail. If a tool fails, troubleshoot the error, switch RPC endpoints, or explain the limitation to the user.
|
|
29
29
|
> - **NEVER EXPORT MNEMONICS**: The entire purpose of OWS is to keep the seed phrase hidden from the agent and the user. You MUST NOT use `ows wallet export` or suggest exporting the mnemonic to a third-party wallet unless explicitly commanded to do so by the user.
|
|
30
|
-
> - **Supply Chain Safety**: NEVER use `npx` to install or run random, unknown, or third-party packages. Only use the approved tools provided in this project (`xno-skills@latest` and `
|
|
30
|
+
> - **Supply Chain Safety**: NEVER use `npx` to install or run random, unknown, or third-party packages. Only use the approved tools provided in this project (`xno-skills@latest` and `@open-wallet-standard/core`). If a task cannot be performed with these tools, do not seek external npm packages as a workaround.
|
|
31
31
|
|
|
32
32
|
Verify an off-chain message signature (NOMS / ORIS-001 standard) against a Nano address or public key.
|
|
33
33
|
|