@t2000/cli 1.0.1 → 1.1.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-G2DXW5RK.js → chunk-KDR2GPAB.js} +85 -92
- package/dist/{chunk-G2DXW5RK.js.map → chunk-KDR2GPAB.js.map} +1 -1
- package/dist/{dist-4CCB73ET.js → dist-67XBQC7P.js} +6 -4
- package/dist/{dist-R6F53QGO.js → dist-SLM2OSSP.js} +54 -98
- package/dist/{dist-R6F53QGO.js.map → dist-SLM2OSSP.js.map} +1 -1
- package/dist/index.js +3 -3
- package/package.json +3 -3
- /package/dist/{dist-4CCB73ET.js.map → dist-67XBQC7P.js.map} +0 -0
package/dist/index.js
CHANGED
|
@@ -16,7 +16,7 @@ import {
|
|
|
16
16
|
saveKey,
|
|
17
17
|
truncateAddress,
|
|
18
18
|
walletExists
|
|
19
|
-
} from "./chunk-
|
|
19
|
+
} from "./chunk-KDR2GPAB.js";
|
|
20
20
|
import "./chunk-V7PXDEKG.js";
|
|
21
21
|
import "./chunk-Q2LY5BHK.js";
|
|
22
22
|
import "./chunk-3XUF7GM3.js";
|
|
@@ -7859,7 +7859,7 @@ function registerLock(program3) {
|
|
|
7859
7859
|
});
|
|
7860
7860
|
program3.command("unlock").description("Unlock agent \u2014 resume operations").action(async () => {
|
|
7861
7861
|
try {
|
|
7862
|
-
const { T2000: T20003 } = await import("./dist-
|
|
7862
|
+
const { T2000: T20003 } = await import("./dist-67XBQC7P.js");
|
|
7863
7863
|
const MAX_ATTEMPTS2 = 3;
|
|
7864
7864
|
let pin;
|
|
7865
7865
|
for (let attempt = 1; attempt <= MAX_ATTEMPTS2; attempt++) {
|
|
@@ -8033,7 +8033,7 @@ function registerMcp(program3) {
|
|
|
8033
8033
|
mcp.command("start", { isDefault: true }).description("Start MCP server (stdio transport)").option("--key <path>", "Key file path").action(async (opts) => {
|
|
8034
8034
|
let mod;
|
|
8035
8035
|
try {
|
|
8036
|
-
mod = await import("./dist-
|
|
8036
|
+
mod = await import("./dist-SLM2OSSP.js");
|
|
8037
8037
|
} catch {
|
|
8038
8038
|
console.error(
|
|
8039
8039
|
"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": "1.0
|
|
3
|
+
"version": "1.1.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": "1.0
|
|
46
|
-
"@t2000/sdk": "1.0
|
|
45
|
+
"@t2000/mcp": "1.1.0",
|
|
46
|
+
"@t2000/sdk": "1.1.0"
|
|
47
47
|
},
|
|
48
48
|
"license": "MIT",
|
|
49
49
|
"scripts": {
|
|
File without changes
|