troxy-cli 1.25.0 → 1.25.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/init.js +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "troxy-cli",
3
- "version": "1.25.0",
3
+ "version": "1.25.1",
4
4
  "description": "A secure control layer for AI agents: policies across payments, messages, logins, destructive actions, model usage, and secrets, all enforceable from the CLI",
5
5
  "homepage": "https://troxy.io",
6
6
  "bugs": {
package/src/init.js CHANGED
@@ -611,7 +611,9 @@ async function maybeEnableClaudeCodeProxy(proxyOptIn) {
611
611
  console.log(' opportunity, not just suggest one.');
612
612
  console.log(" Trade-off: while this is on, Claude Code's Remote Control feature is");
613
613
  console.log(' disabled (Anthropic disables it whenever the API base URL points');
614
- console.log(' anywhere other than api.anthropic.com).');
614
+ console.log(' anywhere other than api.anthropic.com). Also, model policies (e.g. a');
615
+ console.log(' BLOCK rule on a specific model) are not enforced on this path yet -');
616
+ console.log(' only the cost-saving model swap is live.');
615
617
  const answer = await prompt(' Enable? (y/N): ');
616
618
  enable = /^y(es)?$/i.test(answer);
617
619
  }