@byreal-io/byreal-cli-realclaw 0.3.0 → 0.3.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.
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Byreal Agent Skills
|
|
2
2
|
|
|
3
|
-
> **Note:** This is the **
|
|
3
|
+
> **Note:** This is the **RealClaw** internal branch (`openclaw`). Write commands output unsigned base64 transactions by default and require `--wallet-address <address>` instead of local keypair setup. Package name: `@byreal-io/byreal-cli-realclaw`.
|
|
4
4
|
|
|
5
5
|
Agent skills for [Byreal](https://byreal.io) — a concentrated liquidity (CLMM) DEX on Solana. Every command supports structured JSON output, and the built-in skill system lets AI agents discover and use all capabilities automatically.
|
|
6
6
|
|
|
@@ -15,6 +15,10 @@ npx skills add https://github.com/byreal-git/byreal-agent-skills/tree/openclaw
|
|
|
15
15
|
Or install the CLI only:
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
+
# If @byreal-io/byreal-cli (main branch) is already installed, uninstall first
|
|
19
|
+
# to avoid bin name conflict (both packages use the `byreal-cli` binary name):
|
|
20
|
+
npm uninstall -g @byreal-io/byreal-cli
|
|
21
|
+
|
|
18
22
|
npm install -g @byreal-io/byreal-cli-realclaw
|
|
19
23
|
```
|
|
20
24
|
|
package/dist/index.cjs
CHANGED
|
@@ -3033,7 +3033,7 @@ var INJECTED_VERSION, VERSION, CLI_NAME, NPM_PACKAGE, API_BASE_URL, API_ENDPOINT
|
|
|
3033
3033
|
var init_constants = __esm({
|
|
3034
3034
|
"src/core/constants.ts"() {
|
|
3035
3035
|
"use strict";
|
|
3036
|
-
INJECTED_VERSION = true ? "0.3.
|
|
3036
|
+
INJECTED_VERSION = true ? "0.3.2" : void 0;
|
|
3037
3037
|
VERSION = INJECTED_VERSION ?? process.env.npm_package_version ?? "0.0.0";
|
|
3038
3038
|
CLI_NAME = "byreal-cli";
|
|
3039
3039
|
NPM_PACKAGE = "@byreal-io/byreal-cli-realclaw";
|
|
@@ -84030,6 +84030,9 @@ Byreal DEX (Solana) all-in-one CLI: query pools/tokens/TVL, analyze pool APR & r
|
|
|
84030
84030
|
# Check if already installed
|
|
84031
84031
|
which byreal-cli && byreal-cli --version
|
|
84032
84032
|
|
|
84033
|
+
# If @byreal-io/byreal-cli (main branch) is installed, uninstall first (bin name conflict):
|
|
84034
|
+
npm uninstall -g @byreal-io/byreal-cli
|
|
84035
|
+
|
|
84033
84036
|
# Install
|
|
84034
84037
|
npm install -g @byreal-io/byreal-cli-realclaw
|
|
84035
84038
|
\`\`\`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byreal-io/byreal-cli-realclaw",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "AI-native CLI for Byreal CLMM DEX on Solana",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -73,4 +73,4 @@
|
|
|
73
73
|
"dependencies": {
|
|
74
74
|
"@byreal-io/byreal-clmm-sdk": "^0.2.2"
|
|
75
75
|
}
|
|
76
|
-
}
|
|
76
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: byreal-cli
|
|
3
|
-
description: "Byreal DEX (Solana)
|
|
2
|
+
name: byreal-cli-realclaw
|
|
3
|
+
description: "RealClaw edition of Byreal DEX CLI (Solana): query pools/tokens/TVL, analyze pool APR & risk, open/close/claim CLMM positions, token swap, wallet balance. Outputs unsigned base64 transactions for hosted wallet signing. Use when user mentions Byreal, LP, liquidity, pools, DeFi positions, token swap, or Solana DEX operations."
|
|
4
4
|
metadata:
|
|
5
5
|
openclaw:
|
|
6
6
|
homepage: https://github.com/byreal-git/byreal-agent-skills
|
|
@@ -37,6 +37,10 @@ byreal-cli catalog show <capability-id>
|
|
|
37
37
|
# Check if already installed
|
|
38
38
|
which byreal-cli && byreal-cli --version
|
|
39
39
|
|
|
40
|
+
# If @byreal-io/byreal-cli (main branch version) is already installed,
|
|
41
|
+
# uninstall it first to avoid bin name conflict:
|
|
42
|
+
npm uninstall -g @byreal-io/byreal-cli
|
|
43
|
+
|
|
40
44
|
# Install
|
|
41
45
|
npm install -g @byreal-io/byreal-cli-realclaw
|
|
42
46
|
```
|