@t2000/cli 10.1.1 → 10.1.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.
|
@@ -147199,7 +147199,7 @@ CRITICAL: When the user asks to use any external or paid API, names a provider (
|
|
|
147199
147199
|
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.
|
|
147200
147200
|
|
|
147201
147201
|
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.`;
|
|
147202
|
-
var PKG_VERSION = "10.1.
|
|
147202
|
+
var PKG_VERSION = "10.1.2";
|
|
147203
147203
|
console.log = (...args) => console.error("[log]", ...args);
|
|
147204
147204
|
console.warn = (...args) => console.error("[warn]", ...args);
|
|
147205
147205
|
async function startMcpServer(opts) {
|
|
@@ -147285,4 +147285,4 @@ mime-types/index.js:
|
|
|
147285
147285
|
@scure/bip39/index.js:
|
|
147286
147286
|
(*! scure-bip39 - MIT License (c) 2022 Patricio Palladino, Paul Miller (paulmillr.com) *)
|
|
147287
147287
|
*/
|
|
147288
|
-
//# sourceMappingURL=dist-
|
|
147288
|
+
//# sourceMappingURL=dist-I27FW5PV.js.map
|
package/dist/index.js
CHANGED
|
@@ -23373,7 +23373,7 @@ function registerMcpStart(parent) {
|
|
|
23373
23373
|
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) => {
|
|
23374
23374
|
let mod;
|
|
23375
23375
|
try {
|
|
23376
|
-
mod = await import("./dist-
|
|
23376
|
+
mod = await import("./dist-I27FW5PV.js");
|
|
23377
23377
|
} catch {
|
|
23378
23378
|
console.error("MCP server not installed. Run:\n npm install -g @t2000/mcp");
|
|
23379
23379
|
process.exit(1);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@t2000/cli",
|
|
3
|
-
"version": "10.1.
|
|
3
|
+
"version": "10.1.2",
|
|
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": {
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"typescript": "^5",
|
|
46
46
|
"typescript-eslint": "^8.58.0",
|
|
47
47
|
"vitest": "^3",
|
|
48
|
-
"@t2000/sdk": "10.1.
|
|
49
|
-
"@t2000/mcp": "10.1.
|
|
48
|
+
"@t2000/sdk": "10.1.2",
|
|
49
|
+
"@t2000/mcp": "10.1.2"
|
|
50
50
|
},
|
|
51
51
|
"license": "MIT",
|
|
52
52
|
"dependencies": {
|
|
File without changes
|