@t2000/cli 0.50.3 → 0.51.0
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/{chunk-Q52KM4VI.js → chunk-6QF7QYS4.js} +38 -14
- package/dist/{chunk-Q52KM4VI.js.map → chunk-6QF7QYS4.js.map} +1 -1
- package/dist/{dist-4KFY6MX6.js → dist-53IAVMW6.js} +2 -2
- package/dist/{dist-UTSUSZ5R.js → dist-LBQE6JNT.js} +39 -15
- package/dist/{dist-UTSUSZ5R.js.map → dist-LBQE6JNT.js.map} +1 -1
- package/dist/index.js +3 -3
- package/package.json +3 -3
- /package/dist/{dist-4KFY6MX6.js.map → dist-53IAVMW6.js.map} +0 -0
package/dist/index.js
CHANGED
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
saveKey,
|
|
18
18
|
truncateAddress,
|
|
19
19
|
walletExists
|
|
20
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-6QF7QYS4.js";
|
|
21
21
|
import "./chunk-V7PXDEKG.js";
|
|
22
22
|
import "./chunk-Q2LY5BHK.js";
|
|
23
23
|
import "./chunk-3XUF7GM3.js";
|
|
@@ -7832,7 +7832,7 @@ function registerLock(program3) {
|
|
|
7832
7832
|
});
|
|
7833
7833
|
program3.command("unlock").description("Unlock agent \u2014 resume operations").action(async () => {
|
|
7834
7834
|
try {
|
|
7835
|
-
const { T2000: T20003 } = await import("./dist-
|
|
7835
|
+
const { T2000: T20003 } = await import("./dist-53IAVMW6.js");
|
|
7836
7836
|
const MAX_ATTEMPTS2 = 3;
|
|
7837
7837
|
let pin;
|
|
7838
7838
|
for (let attempt = 1; attempt <= MAX_ATTEMPTS2; attempt++) {
|
|
@@ -8006,7 +8006,7 @@ function registerMcp(program3) {
|
|
|
8006
8006
|
mcp.command("start", { isDefault: true }).description("Start MCP server (stdio transport)").option("--key <path>", "Key file path").action(async (opts) => {
|
|
8007
8007
|
let mod;
|
|
8008
8008
|
try {
|
|
8009
|
-
mod = await import("./dist-
|
|
8009
|
+
mod = await import("./dist-LBQE6JNT.js");
|
|
8010
8010
|
} catch {
|
|
8011
8011
|
console.error(
|
|
8012
8012
|
"MCP server not installed. Run:\n npm install -g @t2000/mcp"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@t2000/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.51.0",
|
|
4
4
|
"description": "A bank account for AI agents on Sui — guided setup, MCP integration, send, save, borrow, swap. Same 34 tools as the engine, scriptable from any shell.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"tsup": "^8",
|
|
43
43
|
"typescript": "^5",
|
|
44
44
|
"vitest": "^3",
|
|
45
|
-
"@t2000/mcp": "0.
|
|
46
|
-
"@t2000/sdk": "0.
|
|
45
|
+
"@t2000/mcp": "0.51.0",
|
|
46
|
+
"@t2000/sdk": "0.51.0"
|
|
47
47
|
},
|
|
48
48
|
"license": "MIT",
|
|
49
49
|
"scripts": {
|
|
File without changes
|