@vibe-assurance/cli 1.0.1 → 1.0.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibe-assurance/cli",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Vibe Assurance CLI - Connect Claude Code to your governance platform",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/api/client.js CHANGED
@@ -1,8 +1,8 @@
1
1
  const axios = require('axios');
2
2
  const { getCredentials, storeCredentials, deleteCredentials } = require('../config/credentials');
3
3
 
4
- // Default to production URL, can be overridden via environment variable
5
- const API_BASE_URL = process.env.VIBE_API_URL || 'https://agent-platform-prod.azurewebsites.net';
4
+ // Default to dev Azure URL, can be overridden via environment variable
5
+ const API_BASE_URL = process.env.VIBE_API_URL || 'https://agent-platform-dev.azurewebsites.net';
6
6
 
7
7
  /**
8
8
  * Create an authenticated axios instance with token refresh handling