@t2000/cli 10.13.0 → 10.13.1
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.
|
@@ -147269,7 +147269,7 @@ CRITICAL: When the user asks to use any external or paid API, names a provider (
|
|
|
147269
147269
|
The wallet also trades on the t2 AGENT ECONOMY (agents.t2000.ai). It can HIRE other agents: browse structured fixed-price agent services with t2000_browse, fund an on-chain USDC escrow job with t2000_job_create, track it with t2000_jobs, settle with t2000_job_settle, and rate the seller with t2000_job_review (escrow protects both sides \u2014 no delivery means an automatic refund path). It can EARN too: list what THIS agent sells with t2000_service_create (no server or endpoint needed), watch incoming jobs with t2000_jobs (role: seller), and deliver with t2000_job_deliver \u2014 the escrow pays this wallet on release.
|
|
147270
147270
|
|
|
147271
147271
|
Spending is the user's own USDC and every t2000_pay call is bounded by maxPrice; t2000_job_create locks the listed service price in escrow. For larger or multi-step spends, state the estimated cost first and proceed once the user is happy. Use t2000_balance to check funds. The v4 wallet is payments-only \u2014 there is no savings / lending surface.`;
|
|
147272
|
-
var PKG_VERSION = "10.13.
|
|
147272
|
+
var PKG_VERSION = "10.13.1";
|
|
147273
147273
|
console.log = (...args) => console.error("[log]", ...args);
|
|
147274
147274
|
console.warn = (...args) => console.error("[warn]", ...args);
|
|
147275
147275
|
async function startMcpServer(opts) {
|
|
@@ -147355,4 +147355,4 @@ mime-types/index.js:
|
|
|
147355
147355
|
@scure/bip39/index.js:
|
|
147356
147356
|
(*! scure-bip39 - MIT License (c) 2022 Patricio Palladino, Paul Miller (paulmillr.com) *)
|
|
147357
147357
|
*/
|
|
147358
|
-
//# sourceMappingURL=dist-
|
|
147358
|
+
//# sourceMappingURL=dist-GIJDTUKJ.js.map
|
package/dist/index.js
CHANGED
|
@@ -23391,7 +23391,7 @@ function registerMcpStart(parent) {
|
|
|
23391
23391
|
parent.command("start", { isDefault: true }).description("Start MCP server (stdio transport \u2014 for AI client integration)").option("--key <path>", "Custom wallet path (default ~/.t2000/wallet.key)").action(async (opts) => {
|
|
23392
23392
|
let mod;
|
|
23393
23393
|
try {
|
|
23394
|
-
mod = await import("./dist-
|
|
23394
|
+
mod = await import("./dist-GIJDTUKJ.js");
|
|
23395
23395
|
} catch {
|
|
23396
23396
|
console.error("MCP server not installed. Run:\n npm install -g @t2000/mcp");
|
|
23397
23397
|
process.exit(1);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@t2000/cli",
|
|
3
|
-
"version": "10.13.
|
|
3
|
+
"version": "10.13.1",
|
|
4
4
|
"description": "Agent Wallet for AI agents on Sui — gasless USDC + USDsui sends, Cetus swap, MPP paid API access, MCP integration, scriptable from any shell.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
"typescript": "^5",
|
|
47
47
|
"typescript-eslint": "^8.58.0",
|
|
48
48
|
"vitest": "^3",
|
|
49
|
-
"@t2000/sdk": "10.13.
|
|
50
|
-
"@t2000/mcp": "10.13.
|
|
49
|
+
"@t2000/sdk": "10.13.1",
|
|
50
|
+
"@t2000/mcp": "10.13.1"
|
|
51
51
|
},
|
|
52
52
|
"license": "MIT",
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"qrcode": "^1.5.4",
|
|
55
|
-
"@t2000/id": "^10.13.
|
|
55
|
+
"@t2000/id": "^10.13.1"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
58
|
"build": "tsup",
|
|
File without changes
|