agentvibes 2.2.3 → 2.3.0
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/.claude/commands/agent-vibes/hide.md +91 -0
- package/.claude/commands/agent-vibes/show.md +84 -0
- package/.claude/github-star-reminder.txt +1 -1
- package/.mcp-minimal.json +4 -19
- package/README.md +2 -2
- package/RELEASE_NOTES.md +57 -57
- package/package.json +1 -1
- package/src/installer.js +18 -10
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Hide all AgentVibes slash commands from the command list (MCP users)
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
You are about to hide all AgentVibes slash commands from the Claude Code interface.
|
|
6
|
+
|
|
7
|
+
**What this does:**
|
|
8
|
+
- Moves all AgentVibes commands from `.claude/commands/agent-vibes/` to `.claude/.agentvibes-backup/`
|
|
9
|
+
- Keeps only the `show.md` and `hide.md` commands visible
|
|
10
|
+
- Creates a flag file to track hidden state
|
|
11
|
+
- Does NOT affect MCP functionality - you can still use AgentVibes through MCP tools
|
|
12
|
+
|
|
13
|
+
**IMPORTANT IMPLEMENTATION STEPS:**
|
|
14
|
+
|
|
15
|
+
1. **Check if already hidden:**
|
|
16
|
+
- Check if `.claude/.agentvibes-hidden.flag` exists
|
|
17
|
+
- If it exists, respond: "⚠️ AgentVibes commands are already hidden. Use /agent-vibes:show to restore them."
|
|
18
|
+
- Stop execution
|
|
19
|
+
|
|
20
|
+
2. **Create backup directory:**
|
|
21
|
+
```bash
|
|
22
|
+
mkdir -p .claude/.agentvibes-backup
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
3. **Move all command files EXCEPT hide.md and show.md:**
|
|
26
|
+
```bash
|
|
27
|
+
cd .claude/commands/agent-vibes
|
|
28
|
+
|
|
29
|
+
# Move all files except hide.md and show.md
|
|
30
|
+
for file in *.md *.json; do
|
|
31
|
+
if [ "$file" != "hide.md" ] && [ "$file" != "show.md" ]; then
|
|
32
|
+
mv "$file" ../../.agentvibes-backup/
|
|
33
|
+
fi
|
|
34
|
+
done
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
4. **Create the hidden state flag:**
|
|
38
|
+
```bash
|
|
39
|
+
touch .claude/.agentvibes-hidden.flag
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
5. **Display success message:**
|
|
43
|
+
```
|
|
44
|
+
✅ AgentVibes commands hidden successfully!
|
|
45
|
+
|
|
46
|
+
📦 Backed up to: `.claude/.agentvibes-backup/`
|
|
47
|
+
|
|
48
|
+
🔄 Please reload Claude Code to see changes:
|
|
49
|
+
Press Ctrl+Shift+P → "Developer: Reload Window"
|
|
50
|
+
|
|
51
|
+
💡 To restore commands, use: /agent-vibes:show
|
|
52
|
+
|
|
53
|
+
ℹ️ MCP functionality is unaffected - AgentVibes MCP tools still work normally.
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
**Files that will be hidden:**
|
|
57
|
+
- add.md
|
|
58
|
+
- agent-vibes.md
|
|
59
|
+
- agent.md
|
|
60
|
+
- agent-health-coach.md
|
|
61
|
+
- agent-motivator.md
|
|
62
|
+
- agent-negotiator.md
|
|
63
|
+
- bmad.md
|
|
64
|
+
- get.md
|
|
65
|
+
- language.md
|
|
66
|
+
- learn.md
|
|
67
|
+
- list.md
|
|
68
|
+
- personality.md
|
|
69
|
+
- preview.md
|
|
70
|
+
- provider.md
|
|
71
|
+
- replay-target.md
|
|
72
|
+
- replay.md
|
|
73
|
+
- sample.md
|
|
74
|
+
- sentiment.md
|
|
75
|
+
- set-favorite-voice.md
|
|
76
|
+
- set-language.md
|
|
77
|
+
- set-pretext.md
|
|
78
|
+
- set-speed.md
|
|
79
|
+
- switch.md
|
|
80
|
+
- target-voice.md
|
|
81
|
+
- target.md
|
|
82
|
+
- update.md
|
|
83
|
+
- version.md
|
|
84
|
+
- whoami.md
|
|
85
|
+
- commands.json
|
|
86
|
+
|
|
87
|
+
**Files that will remain visible:**
|
|
88
|
+
- hide.md (this command)
|
|
89
|
+
- show.md (to restore commands)
|
|
90
|
+
|
|
91
|
+
Now execute the hiding process following the steps above.
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Restore all hidden AgentVibes slash commands to the command list
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
You are about to restore all hidden AgentVibes slash commands.
|
|
6
|
+
|
|
7
|
+
**What this does:**
|
|
8
|
+
- Moves all AgentVibes commands from `.claude/.agentvibes-backup/` back to `.claude/commands/agent-vibes/`
|
|
9
|
+
- Restores full command visibility
|
|
10
|
+
- Removes the hidden state flag
|
|
11
|
+
- All AgentVibes slash commands become visible again
|
|
12
|
+
|
|
13
|
+
**IMPORTANT IMPLEMENTATION STEPS:**
|
|
14
|
+
|
|
15
|
+
1. **Check if commands are hidden:**
|
|
16
|
+
- Check if `.claude/.agentvibes-hidden.flag` exists
|
|
17
|
+
- If it does NOT exist, respond: "⚠️ AgentVibes commands are already visible. Nothing to restore."
|
|
18
|
+
- Stop execution
|
|
19
|
+
|
|
20
|
+
2. **Check if backup directory exists:**
|
|
21
|
+
```bash
|
|
22
|
+
if [ ! -d ".claude/.agentvibes-backup" ]; then
|
|
23
|
+
echo "⚠️ Backup directory not found. Commands may not have been properly hidden."
|
|
24
|
+
exit 1
|
|
25
|
+
fi
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
3. **Restore all command files:**
|
|
29
|
+
```bash
|
|
30
|
+
mv .claude/.agentvibes-backup/* .claude/commands/agent-vibes/
|
|
31
|
+
rmdir .claude/.agentvibes-backup
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
4. **Remove the hidden state flag:**
|
|
35
|
+
```bash
|
|
36
|
+
rm -f .claude/.agentvibes-hidden.flag
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
5. **Display success message:**
|
|
40
|
+
```
|
|
41
|
+
✅ AgentVibes commands restored successfully!
|
|
42
|
+
|
|
43
|
+
📂 All commands are now visible in `.claude/commands/agent-vibes/`
|
|
44
|
+
|
|
45
|
+
🔄 Please reload Claude Code to see changes:
|
|
46
|
+
Press Ctrl+Shift+P → "Developer: Reload Window"
|
|
47
|
+
|
|
48
|
+
💡 To hide commands again, use: /agent-vibes:hide
|
|
49
|
+
|
|
50
|
+
✨ All AgentVibes slash commands are now available!
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
**Commands that will be restored:**
|
|
54
|
+
- add.md
|
|
55
|
+
- agent-vibes.md
|
|
56
|
+
- agent.md
|
|
57
|
+
- agent-health-coach.md
|
|
58
|
+
- agent-motivator.md
|
|
59
|
+
- agent-negotiator.md
|
|
60
|
+
- bmad.md
|
|
61
|
+
- get.md
|
|
62
|
+
- language.md
|
|
63
|
+
- learn.md
|
|
64
|
+
- list.md
|
|
65
|
+
- personality.md
|
|
66
|
+
- preview.md
|
|
67
|
+
- provider.md
|
|
68
|
+
- replay-target.md
|
|
69
|
+
- replay.md
|
|
70
|
+
- sample.md
|
|
71
|
+
- sentiment.md
|
|
72
|
+
- set-favorite-voice.md
|
|
73
|
+
- set-language.md
|
|
74
|
+
- set-pretext.md
|
|
75
|
+
- set-speed.md
|
|
76
|
+
- switch.md
|
|
77
|
+
- target-voice.md
|
|
78
|
+
- target.md
|
|
79
|
+
- update.md
|
|
80
|
+
- version.md
|
|
81
|
+
- whoami.md
|
|
82
|
+
- commands.json
|
|
83
|
+
|
|
84
|
+
Now execute the restoration process following the steps above.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
20251105
|
package/.mcp-minimal.json
CHANGED
|
@@ -64,13 +64,6 @@
|
|
|
64
64
|
"SPACESHIP_API_KEY": "${SPACESHIP_API_KEY}",
|
|
65
65
|
"SPACESHIP_API_SECRET": "${SPACESHIP_API_SECRET}"
|
|
66
66
|
}
|
|
67
|
-
},
|
|
68
|
-
"agentvibes": {
|
|
69
|
-
"command": "npx",
|
|
70
|
-
"args": ["-y", "-p", "agentvibes@beta", "agentvibes-mcp-server"],
|
|
71
|
-
"env": {
|
|
72
|
-
"ELEVENLABS_API_KEY": "${ELEVENLABS_API_KEY}"
|
|
73
|
-
}
|
|
74
67
|
},
|
|
75
68
|
"sonarqube": {
|
|
76
69
|
"command": "docker",
|
|
@@ -81,22 +74,14 @@
|
|
|
81
74
|
"sonarqube-mcp-server-agentvibes",
|
|
82
75
|
"--rm",
|
|
83
76
|
"-e",
|
|
84
|
-
"SONARQUBE_TOKEN
|
|
85
|
-
"-e",
|
|
86
|
-
"SONARQUBE_URL=https://sonarcloud.io",
|
|
87
|
-
"-e",
|
|
88
|
-
"SONARQUBE_ORG=${SONARQUBE_ORG}",
|
|
77
|
+
"SONARQUBE_TOKEN",
|
|
89
78
|
"-e",
|
|
90
|
-
"
|
|
91
|
-
"-v",
|
|
92
|
-
"/home/fire/claude/AgentVibes/.sonarqube-storage:/storage",
|
|
79
|
+
"SONARQUBE_ORG",
|
|
93
80
|
"mcp/sonarqube"
|
|
94
81
|
],
|
|
95
82
|
"env": {
|
|
96
|
-
"SONARQUBE_TOKEN": "${
|
|
97
|
-
"
|
|
98
|
-
"SONARQUBE_ORG": "${SONARQUBE_ORG}",
|
|
99
|
-
"SONARQUBE_PROJECT": "${SONARQUBE_PROJECT}"
|
|
83
|
+
"SONARQUBE_TOKEN": "${AGENTVIBES_SONARQUBE_TOKEN}",
|
|
84
|
+
"SONARQUBE_ORG": "${AGENTVIBES_SONARQUBE_ORG}"
|
|
100
85
|
}
|
|
101
86
|
}
|
|
102
87
|
}
|
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
[](https://github.com/paulpreibisch/AgentVibes/actions/workflows/publish.yml)
|
|
12
12
|
[](https://opensource.org/licenses/Apache-2.0)
|
|
13
13
|
|
|
14
|
-
**Author**: Paul Preibisch ([@997Fire](https://x.com/997Fire)) | **Version**: v2.2.
|
|
14
|
+
**Author**: Paul Preibisch ([@997Fire](https://x.com/997Fire)) | **Version**: v2.2.3
|
|
15
15
|
|
|
16
16
|
---
|
|
17
17
|
|
|
@@ -92,7 +92,7 @@ Whether you're coding in Claude Code, chatting in Claude Desktop, or using Warp
|
|
|
92
92
|
|
|
93
93
|
## 📰 Latest Release
|
|
94
94
|
|
|
95
|
-
**[v2.2.0 - Provider-Aware Features, BMAD v6 Support & MCP Improvements](https://github.com/paulpreibisch/AgentVibes/releases/tag/v2.2.
|
|
95
|
+
**[v2.2.0 - Provider-Aware Features, BMAD v6 Support & MCP Improvements](https://github.com/paulpreibisch/AgentVibes/releases/tag/v2.2.3)** 🎉
|
|
96
96
|
|
|
97
97
|
Major enhancements to multi-provider support, BMAD integration, and MCP server configuration! This release makes AgentVibes smarter about which TTS provider you're using and adds full support for BMAD-METHOD v6-alpha.
|
|
98
98
|
|
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,5 +1,61 @@
|
|
|
1
1
|
# AgentVibes Release Notes
|
|
2
2
|
|
|
3
|
+
## v2.3.0 - Command Visibility Management & Maintenance (2025-11-06)
|
|
4
|
+
|
|
5
|
+
### 🤖 AI Summary
|
|
6
|
+
|
|
7
|
+
This minor release introduces command visibility management features allowing MCP users to hide/show AgentVibes slash commands, plus important maintenance improvements. Users who primarily interact with AgentVibes through MCP tools can now declutter their Claude Code command palette by hiding slash commands, while still retaining full MCP functionality. The release also includes improved .gitignore rules to exclude runtime and user-generated files from version control.
|
|
8
|
+
|
|
9
|
+
### 📋 Changes
|
|
10
|
+
|
|
11
|
+
#### ✨ New Features
|
|
12
|
+
- **Command Visibility Management**: New `/agent-vibes:hide` and `/agent-vibes:show` commands
|
|
13
|
+
- Hide all AgentVibes slash commands from Claude Code interface
|
|
14
|
+
- Keeps only hide/show commands visible when hidden
|
|
15
|
+
- MCP functionality remains completely unaffected
|
|
16
|
+
- Commands safely backed up to `.claude/.agentvibes-backup/`
|
|
17
|
+
- Perfect for users who prefer MCP tools over slash commands
|
|
18
|
+
|
|
19
|
+
#### 🔧 Maintenance
|
|
20
|
+
- **Enhanced .gitignore**: Improved exclusion rules for runtime files
|
|
21
|
+
- `.claude/plugins/*.flag` - Plugin state flags
|
|
22
|
+
- `.claude/piper-voices/` - Downloaded voice models
|
|
23
|
+
- `.claude/piper-voices-dir.txt` - Voice directory config
|
|
24
|
+
- `.claude/github-star-reminder.txt` - UI reminder state
|
|
25
|
+
- `.claude/.agentvibes-backup/` - Hidden command backups
|
|
26
|
+
- `.claude/.agentvibes-hidden.flag` - Command visibility state
|
|
27
|
+
|
|
28
|
+
#### 📚 Documentation
|
|
29
|
+
- **README**: Updated version to v2.2.3
|
|
30
|
+
- **MCP Config**: Cleaned up `.mcp-minimal.json` configuration
|
|
31
|
+
|
|
32
|
+
### 🎯 User Impact
|
|
33
|
+
|
|
34
|
+
**For MCP Users**: If you primarily use AgentVibes through MCP tools and find the slash commands cluttering your command palette, you can now use `/agent-vibes:hide` to clean up the interface. Your MCP functionality will work exactly the same. Use `/agent-vibes:show` anytime to restore commands.
|
|
35
|
+
|
|
36
|
+
**For All Users**: The improved .gitignore ensures that runtime-generated files (voice models, state flags, reminders) are never accidentally committed to version control, keeping your git history clean.
|
|
37
|
+
|
|
38
|
+
**Command Organization**: The 29 AgentVibes slash commands can now be completely hidden with a single command, leaving only the hide/show toggles visible. This is ideal for users who:
|
|
39
|
+
- Prefer using MCP tools directly
|
|
40
|
+
- Want a cleaner command palette
|
|
41
|
+
- Are setting up AgentVibes for others
|
|
42
|
+
- Have memorized their favorite commands
|
|
43
|
+
|
|
44
|
+
### 📦 Files Changed
|
|
45
|
+
- `.claude/commands/agent-vibes/hide.md` - NEW: Hide commands feature
|
|
46
|
+
- `.claude/commands/agent-vibes/show.md` - NEW: Show commands feature
|
|
47
|
+
- `.gitignore` - Enhanced runtime file exclusions
|
|
48
|
+
- `.mcp-minimal.json` - Configuration cleanup
|
|
49
|
+
- `README.md` - Version update to v2.2.3
|
|
50
|
+
|
|
51
|
+
### 🔄 Breaking Changes
|
|
52
|
+
None. This release is fully backward compatible.
|
|
53
|
+
|
|
54
|
+
### 🚀 Upgrade Notes
|
|
55
|
+
Simply run `npx agentvibes@latest` to get the new features. Existing configurations and settings are preserved.
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
3
59
|
## v2.2.1 - Documentation & Installer UX Improvements (2025-11-03)
|
|
4
60
|
|
|
5
61
|
### 🤖 AI Summary
|
|
@@ -47,60 +103,4 @@ This patch release improves the user experience during installation and updates
|
|
|
47
103
|
|
|
48
104
|
### 🤖 AI Summary
|
|
49
105
|
|
|
50
|
-
Major enhancements to multi-provider support, BMAD integration, and MCP server configuration! This release makes AgentVibes smarter about which TTS provider you're using and adds full support for BMAD-METHOD v6-alpha with complete backward compatibility to v4.
|
|
51
|
-
|
|
52
|
-
### 📋 Changes
|
|
53
|
-
|
|
54
|
-
#### ✨ New Features
|
|
55
|
-
- **Provider-Aware Voice Switching**: Automatically detects whether you're using ElevenLabs or Piper TTS
|
|
56
|
-
- **BMAD v6 Support**: Full support for BMAD-METHOD v6-alpha with backward compatibility to v4
|
|
57
|
-
- **Improved Voice Mappings**: Provider-aware BMAD agent voices (PM: Ryan on Piper, Analyst: Kristin)
|
|
58
|
-
- **SessionStart Hook Support**: Reorganized repository structure for better hook integration
|
|
59
|
-
|
|
60
|
-
#### 🔧 Fixes
|
|
61
|
-
- **MCP NPX Configuration**: Corrected NPX command configuration for seamless MCP server setup
|
|
62
|
-
- **Voice Manager**: Made `/agent-vibes:switch` and `voice-manager.sh` provider-aware
|
|
63
|
-
- **Installer Prompts**: Removed redundant BMAD enable messages and duplicate pause prompts
|
|
64
|
-
- **JSON Formatting**: Removed color codes from MCP JSON output for clean copy-paste
|
|
65
|
-
|
|
66
|
-
#### 📚 Documentation
|
|
67
|
-
- Added prominent macOS bash 5.x requirement to README
|
|
68
|
-
- Updated documentation to remove deprecated output-style references
|
|
69
|
-
- Improved BMAD v6 TTS support documentation
|
|
70
|
-
|
|
71
|
-
### 🎯 User Impact
|
|
72
|
-
|
|
73
|
-
**Provider Awareness**: AgentVibes now intelligently works with both ElevenLabs and Piper TTS providers without manual configuration. Voice switching commands automatically use the correct provider's voice list.
|
|
74
|
-
|
|
75
|
-
**BMAD Integration**: If you're using BMAD-METHOD (v4 or v6), AgentVibes will automatically assign appropriate voices to each agent based on your TTS provider, with full backward compatibility.
|
|
76
|
-
|
|
77
|
-
**MCP Setup**: The corrected NPX configuration means MCP server setup is now seamless with the command: `npx -y --package=agentvibes agentvibes-mcp-server`
|
|
78
|
-
|
|
79
|
-
### 📦 Commits Since v2.1.5
|
|
80
|
-
```
|
|
81
|
-
01f5283 docs: Update README version to v2.2.0
|
|
82
|
-
ca47e74 chore: Release v2.2.0
|
|
83
|
-
8b6cae9 Merge v6-alpha: Provider-aware features, BMAD improvements, MCP NPX fix
|
|
84
|
-
a9c5439 fix: Correct MCP server NPX configuration
|
|
85
|
-
9965372 chore: Bump version to 2.2.0-beta.9
|
|
86
|
-
3d2c9da feat: Set BMAD analyst voice to Kristin (Piper)
|
|
87
|
-
0241dc0 feat: Make BMAD voice mappings provider-aware
|
|
88
|
-
bfd887d feat: Change BMAD Project Manager voice to Ryan (Piper)
|
|
89
|
-
34ae021 chore: Bump version to 2.2.0-beta.8
|
|
90
|
-
041c475 fix: Make /agent-vibes:switch and voice-manager.sh provider-aware
|
|
91
|
-
eb0b3ec fix: Remove color codes from MCP JSON for clean copy-paste
|
|
92
|
-
0ae1c4d fix: Remove redundant BMAD enable message and simplify prompts
|
|
93
|
-
cf6e1cd fix: Remove duplicate 'recent changes' pause in installer
|
|
94
|
-
d01de85 docs: Remove deprecated output-style references
|
|
95
|
-
ffa1696 feat: Add BMAD v6 TTS support and improve installer UX
|
|
96
|
-
24d77f3 chore: Bump version to 2.2.0-beta.2
|
|
97
|
-
18ce2d3 refactor: Reorganize repository structure and add SessionStart hook support
|
|
98
|
-
8dec688 chore: Bump version to 2.2.0-beta.1 for beta release
|
|
99
|
-
ccad898 feat: Add BMAD-METHOD v6-alpha support with backward compatibility
|
|
100
|
-
```
|
|
101
|
-
|
|
102
|
-
---
|
|
103
|
-
|
|
104
|
-
## Previous Releases
|
|
105
|
-
|
|
106
|
-
For release notes prior to v2.2.0, please see the [GitHub Releases page](https://github.com/paulpreibisch/AgentVibes/releases).
|
|
106
|
+
Major enhancements to multi-provider support, BMAD integration, and MCP server configuration! This release makes AgentVibes smarter about which TTS provider you're using and adds full support for BMAD-METHOD v6-alpha with complete backward compatibility to v4.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "agentvibes",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.3.0",
|
|
5
5
|
"description": "Now your AI Agents can finally talk back! Professional TTS voice for Claude Code and Claude Desktop (via MCP) with multi-provider support.",
|
|
6
6
|
"homepage": "https://agentvibes.org",
|
|
7
7
|
"keywords": [
|
package/src/installer.js
CHANGED
|
@@ -189,13 +189,17 @@ async function install(options = {}) {
|
|
|
189
189
|
console.log(
|
|
190
190
|
boxen(
|
|
191
191
|
chalk.white.bold('═══════════════════════════════════════════════════════════════\n') +
|
|
192
|
-
chalk.cyan.bold(' 📦 AgentVibes v2.
|
|
192
|
+
chalk.cyan.bold(' 📦 AgentVibes v2.3.0 - Command Visibility Management\n') +
|
|
193
193
|
chalk.white.bold('═══════════════════════════════════════════════════════════════\n\n') +
|
|
194
194
|
chalk.green.bold('✨ WHAT\'S NEW:\n\n') +
|
|
195
|
-
chalk.cyan('
|
|
196
|
-
chalk.gray(' •
|
|
197
|
-
chalk.gray(' •
|
|
198
|
-
chalk.gray(' •
|
|
195
|
+
chalk.cyan('👁️ Command Visibility Management\n') +
|
|
196
|
+
chalk.gray(' • Use /agent-vibes:hide to hide all slash commands from palette\n') +
|
|
197
|
+
chalk.gray(' • MCP functionality remains fully operational when hidden\n') +
|
|
198
|
+
chalk.gray(' • Perfect for users who prefer MCP tools over slash commands\n') +
|
|
199
|
+
chalk.gray(' • Use /agent-vibes:show to restore commands anytime\n\n') +
|
|
200
|
+
chalk.cyan('🔧 Maintenance Improvements\n') +
|
|
201
|
+
chalk.gray(' • Enhanced .gitignore for runtime/user-generated files\n') +
|
|
202
|
+
chalk.gray(' • Cleaner version control and repository management\n\n') +
|
|
199
203
|
chalk.white.bold('═══════════════════════════════════════════════════════════════\n\n') +
|
|
200
204
|
chalk.green.bold('🚀 TRY LANGUAGE LEARNING MODE:\n\n') +
|
|
201
205
|
chalk.cyan(' /agent-vibes:language english\n') +
|
|
@@ -1114,13 +1118,17 @@ program
|
|
|
1114
1118
|
console.log(
|
|
1115
1119
|
boxen(
|
|
1116
1120
|
chalk.white.bold('═══════════════════════════════════════════════════════════════\n') +
|
|
1117
|
-
chalk.cyan.bold(' 📦 AgentVibes v2.
|
|
1121
|
+
chalk.cyan.bold(' 📦 AgentVibes v2.3.0 - Command Visibility Management\n') +
|
|
1118
1122
|
chalk.white.bold('═══════════════════════════════════════════════════════════════\n\n') +
|
|
1119
1123
|
chalk.green.bold('✨ WHAT\'S NEW:\n\n') +
|
|
1120
|
-
chalk.cyan('
|
|
1121
|
-
chalk.gray(' •
|
|
1122
|
-
chalk.gray(' •
|
|
1123
|
-
chalk.gray(' •
|
|
1124
|
+
chalk.cyan('👁️ Command Visibility Management\n') +
|
|
1125
|
+
chalk.gray(' • Use /agent-vibes:hide to hide all slash commands from palette\n') +
|
|
1126
|
+
chalk.gray(' • MCP functionality remains fully operational when hidden\n') +
|
|
1127
|
+
chalk.gray(' • Perfect for users who prefer MCP tools over slash commands\n') +
|
|
1128
|
+
chalk.gray(' • Use /agent-vibes:show to restore commands anytime\n\n') +
|
|
1129
|
+
chalk.cyan('🔧 Maintenance Improvements\n') +
|
|
1130
|
+
chalk.gray(' • Enhanced .gitignore for runtime/user-generated files\n') +
|
|
1131
|
+
chalk.gray(' • Cleaner version control and repository management\n\n') +
|
|
1124
1132
|
chalk.white.bold('═══════════════════════════════════════════════════════════════\n\n') +
|
|
1125
1133
|
chalk.green.bold('🚀 TRY LANGUAGE LEARNING MODE:\n\n') +
|
|
1126
1134
|
chalk.cyan(' /agent-vibes:language english\n') +
|