troxy-cli 1.20.0 → 1.20.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.
package/bin/troxy.js CHANGED
@@ -541,7 +541,7 @@ switch (command) {
541
541
  default:
542
542
  if (command) console.error(` Unknown command: ${command}\n`);
543
543
  console.log(`
544
- Troxy: AI payment control
544
+ Troxy: a secure control layer for AI agents
545
545
 
546
546
  This CLI has two parts:
547
547
  - Commands below (policies, mcps, activity, ...) are for YOU to run and manage your account.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "troxy-cli",
3
- "version": "1.20.0",
3
+ "version": "1.20.1",
4
4
  "description": "Control layer for AI agents: check payments, emails, logins and destructive actions against your policies",
5
5
  "homepage": "https://troxy.io",
6
6
  "bugs": {
package/src/init.js CHANGED
@@ -246,7 +246,7 @@ export async function runInit({ key, name } = {}) {
246
246
  process.exit(1);
247
247
  }
248
248
 
249
- console.log('\n Troxy: AI payment control\n');
249
+ console.log('\n Troxy: a secure control layer for AI agents\n');
250
250
 
251
251
  // Validate the key by hitting /evaluate (404 = key is valid, TypeError = network failure)
252
252
  process.stdout.write(' Validating API key... ');
@@ -304,9 +304,7 @@ export async function runInit({ key, name } = {}) {
304
304
 
305
305
  console.log('\n Your payments are now protected.');
306
306
  console.log(' Dashboard → https://dash.troxy.io');
307
- console.log('\n Try it:');
308
- console.log(` troxy pay --merchant "Test" --amount 10`);
309
- console.log(' This will appear in your dashboard within seconds.\n');
307
+ console.log('\n For more information, visit https://docs.troxy.io\n');
310
308
  }
311
309
 
312
310
  function installService(apiKey, agentName) {