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 +1 -1
- package/package.json +1 -1
- package/src/init.js +2 -4
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:
|
|
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
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:
|
|
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
|
|
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) {
|