@t2000/cli 4.3.0 → 4.3.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.
|
@@ -141781,7 +141781,7 @@ Through this wallet you can reach essentially any major external API, billed to
|
|
|
141781
141781
|
CRITICAL: When the user asks to use any external or paid API, names a provider (e.g. "via fal.ai", "with ElevenLabs"), or requests a capability one of the services above provides, DO NOT say you cannot reach that service, that it isn't on an allowlist, or that there's no connector \u2014 and do NOT fall back to writing a script for the user to run. You CAN do it directly through this wallet. Use t2000_services to discover the endpoint and request shape, then t2000_pay to execute, then show the user the result (display image/audio URLs returned in the response).
|
|
141782
141782
|
|
|
141783
141783
|
Spending is the user's own USDC and every t2000_pay call is bounded by maxPrice. 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; savings / lending live on audric.ai.`;
|
|
141784
|
-
var PKG_VERSION = "4.3.
|
|
141784
|
+
var PKG_VERSION = "4.3.1";
|
|
141785
141785
|
console.log = (...args) => console.error("[log]", ...args);
|
|
141786
141786
|
console.warn = (...args) => console.error("[warn]", ...args);
|
|
141787
141787
|
async function startMcpServer(opts) {
|
|
@@ -141868,4 +141868,4 @@ axios/dist/node/axios.cjs:
|
|
|
141868
141868
|
@scure/bip39/index.js:
|
|
141869
141869
|
(*! scure-bip39 - MIT License (c) 2022 Patricio Palladino, Paul Miller (paulmillr.com) *)
|
|
141870
141870
|
*/
|
|
141871
|
-
//# sourceMappingURL=dist-
|
|
141871
|
+
//# sourceMappingURL=dist-6Z4OX6F4.js.map
|
package/dist/index.js
CHANGED
|
@@ -45347,7 +45347,7 @@ function registerMcpStart(parent) {
|
|
|
45347
45347
|
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) => {
|
|
45348
45348
|
let mod2;
|
|
45349
45349
|
try {
|
|
45350
|
-
mod2 = await import("./dist-
|
|
45350
|
+
mod2 = await import("./dist-6Z4OX6F4.js");
|
|
45351
45351
|
} catch {
|
|
45352
45352
|
console.error("MCP server not installed. Run:\n npm install -g @t2000/mcp");
|
|
45353
45353
|
process.exit(1);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@t2000/cli",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.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": {
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"typescript": "^5",
|
|
46
46
|
"typescript-eslint": "^8.58.0",
|
|
47
47
|
"vitest": "^3",
|
|
48
|
-
"@t2000/mcp": "4.3.
|
|
49
|
-
"@t2000/sdk": "4.3.
|
|
48
|
+
"@t2000/mcp": "4.3.1",
|
|
49
|
+
"@t2000/sdk": "4.3.1"
|
|
50
50
|
},
|
|
51
51
|
"license": "MIT",
|
|
52
52
|
"dependencies": {
|
|
File without changes
|