@t2000/cli 10.3.0 → 10.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.
@@ -147024,7 +147024,7 @@ CRITICAL: When the user asks to use any external or paid API, names a provider (
147024
147024
  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.
147025
147025
 
147026
147026
  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.`;
147027
- var PKG_VERSION = "10.3.0";
147027
+ var PKG_VERSION = "10.3.1";
147028
147028
  console.log = (...args) => console.error("[log]", ...args);
147029
147029
  console.warn = (...args) => console.error("[warn]", ...args);
147030
147030
  async function startMcpServer(opts) {
@@ -147110,4 +147110,4 @@ mime-types/index.js:
147110
147110
  @scure/bip39/index.js:
147111
147111
  (*! scure-bip39 - MIT License (c) 2022 Patricio Palladino, Paul Miller (paulmillr.com) *)
147112
147112
  */
147113
- //# sourceMappingURL=dist-BJGEDLKS.js.map
147113
+ //# sourceMappingURL=dist-SPMZETJ4.js.map
package/dist/index.js CHANGED
@@ -22920,6 +22920,9 @@ you pay the price of the model that actually served each request).`
22920
22920
  printWarning("No API key found.");
22921
22921
  printInfo(`1. Sign in at ${CONSOLE_KEYS_URL} (Google) and create an API key`);
22922
22922
  printInfo(`2. Re-run: t2 connect ${slug} --key sk-...`);
22923
+ printInfo(
22924
+ "Prefer no key? Pay per call in USDC: t2 pay (x402) \u2014 see developers.t2000.ai/authentication"
22925
+ );
22923
22926
  printBlank();
22924
22927
  process.exitCode = 1;
22925
22928
  return;
@@ -23382,7 +23385,7 @@ function registerMcpStart(parent) {
23382
23385
  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) => {
23383
23386
  let mod;
23384
23387
  try {
23385
- mod = await import("./dist-BJGEDLKS.js");
23388
+ mod = await import("./dist-SPMZETJ4.js");
23386
23389
  } catch {
23387
23390
  console.error("MCP server not installed. Run:\n npm install -g @t2000/mcp");
23388
23391
  process.exit(1);