@solongate/proxy 0.25.2 → 0.25.3

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/dist/index.js CHANGED
@@ -620,11 +620,14 @@ function ensureEnvFile() {
620
620
  const envPath = resolve2(".env");
621
621
  if (!existsSync3(envPath)) {
622
622
  const envContent = `# SolonGate Configuration
623
- # Get your API key from: https://dashboard.solongate.com/api-keys
624
623
  # IMPORTANT: Never commit this file to git!
625
624
 
626
- # Your SolonGate API key \u2014 the proxy reads this automatically
625
+ # Your SolonGate API key \u2014 get one at https://dashboard.solongate.com
627
626
  SOLONGATE_API_KEY=sg_live_your_key_here
627
+
628
+ # AI Judge (semantic security layer) \u2014 get a free key at https://console.groq.com/keys
629
+ # Enable with: npx @solongate/proxy --ai-judge ...
630
+ GROQ_API_KEY=gsk_your_groq_key_here
628
631
  `;
629
632
  writeFileSync2(envPath, envContent);
630
633
  console.log(` Created .env`);
package/dist/init.js CHANGED
@@ -283,11 +283,14 @@ function ensureEnvFile() {
283
283
  const envPath = resolve(".env");
284
284
  if (!existsSync(envPath)) {
285
285
  const envContent = `# SolonGate Configuration
286
- # Get your API key from: https://dashboard.solongate.com/api-keys
287
286
  # IMPORTANT: Never commit this file to git!
288
287
 
289
- # Your SolonGate API key \u2014 the proxy reads this automatically
288
+ # Your SolonGate API key \u2014 get one at https://dashboard.solongate.com
290
289
  SOLONGATE_API_KEY=sg_live_your_key_here
290
+
291
+ # AI Judge (semantic security layer) \u2014 get a free key at https://console.groq.com/keys
292
+ # Enable with: npx @solongate/proxy --ai-judge ...
293
+ GROQ_API_KEY=gsk_your_groq_key_here
291
294
  `;
292
295
  writeFileSync(envPath, envContent);
293
296
  console.log(` Created .env`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solongate/proxy",
3
- "version": "0.25.2",
3
+ "version": "0.25.3",
4
4
  "description": "MCP security proxy — protect any MCP server with customizable policies, path/command constraints, rate limiting, and audit logging. Zero code changes required.",
5
5
  "type": "module",
6
6
  "bin": {