troxy-cli 1.11.0 → 1.11.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/package.json +6 -2
- package/src/init.js +1 -2
package/package.json
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "troxy-cli",
|
|
3
|
-
"version": "1.11.
|
|
4
|
-
"description": "AI
|
|
3
|
+
"version": "1.11.1",
|
|
4
|
+
"description": "Control layer for AI agents: check payments, emails, logins and destructive actions against your policies",
|
|
5
|
+
"homepage": "https://troxy.io",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"email": "support@troxy.io"
|
|
8
|
+
},
|
|
5
9
|
"type": "module",
|
|
6
10
|
"bin": {
|
|
7
11
|
"troxy": "bin/troxy.js"
|
package/src/init.js
CHANGED
|
@@ -122,8 +122,7 @@ async function printHostedAgentSetup(key) {
|
|
|
122
122
|
text = buildHostedInstructions(await api.agentInstructions(key), key);
|
|
123
123
|
} catch {
|
|
124
124
|
console.log(' Could not reach the Troxy API to fetch them.');
|
|
125
|
-
console.log('
|
|
126
|
-
console.log(' or re-run this command once you are back online.\n');
|
|
125
|
+
console.log(' Re-run this command once you are back online.\n');
|
|
127
126
|
return;
|
|
128
127
|
}
|
|
129
128
|
|