@vibe-assurance/cli 1.0.3 → 1.0.4
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 +4 -3
- package/src/commands/login.js +1 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibe-assurance/cli",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Vibe Assurance CLI - Connect
|
|
3
|
+
"version": "1.0.4",
|
|
4
|
+
"description": "Vibe Assurance CLI - Connect AI coding agents to your governance platform via MCP",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"vibe": "./bin/vibe.js"
|
|
@@ -14,7 +14,8 @@
|
|
|
14
14
|
"vibe-assurance",
|
|
15
15
|
"governance",
|
|
16
16
|
"mcp",
|
|
17
|
-
"
|
|
17
|
+
"model-context-protocol",
|
|
18
|
+
"ai-agents",
|
|
18
19
|
"compliance",
|
|
19
20
|
"security"
|
|
20
21
|
],
|
package/src/commands/login.js
CHANGED
|
@@ -145,6 +145,7 @@ async function login() {
|
|
|
145
145
|
console.log(' 1. Run `vibe setup-claude` to configure Claude Code');
|
|
146
146
|
console.log(' 2. Restart Claude Code');
|
|
147
147
|
console.log(' 3. Start using vibe_* tools in your conversations');
|
|
148
|
+
process.exit(0); // Exit cleanly after successful login
|
|
148
149
|
} catch (err) {
|
|
149
150
|
cleanup();
|
|
150
151
|
spinner.fail(`Authentication failed: ${err.message}`);
|