agentvibes 2.1.4 → 2.2.0-beta.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.
- package/.claude/github-star-reminder.txt +1 -1
- package/.claude/hooks/bmad-tts-injector.sh +12 -7
- package/.claude/hooks/bmad-voice-manager.sh +59 -5
- package/.claude/hooks/check-output-style.sh +1 -1
- package/.claude/hooks/download-extra-voices.sh +1 -1
- package/.claude/hooks/github-star-reminder.sh +1 -1
- package/.claude/hooks/language-manager.sh +1 -1
- package/.claude/hooks/learn-manager.sh +1 -1
- package/.claude/hooks/personality-manager.sh +1 -1
- package/.claude/hooks/piper-download-voices.sh +1 -1
- package/.claude/hooks/piper-installer.sh +1 -1
- package/.claude/hooks/piper-multispeaker-registry.sh +1 -1
- package/.claude/hooks/piper-voice-manager.sh +1 -1
- package/.claude/hooks/play-tts-elevenlabs.sh +1 -1
- package/.claude/hooks/play-tts-piper.sh +1 -1
- package/.claude/hooks/play-tts.sh +1 -1
- package/.claude/hooks/provider-commands.sh +1 -1
- package/.claude/hooks/provider-manager.sh +1 -1
- package/.claude/hooks/replay-target-audio.sh +1 -1
- package/.claude/hooks/sentiment-manager.sh +1 -1
- package/.claude/hooks/speed-manager.sh +1 -1
- package/.claude/hooks/voice-manager.sh +1 -1
- package/.claude/hooks/voices-config.sh +1 -1
- package/MACOS_TESTING_SETUP.md +216 -0
- package/README.md +22 -8
- package/RELEASE_NOTES.md +366 -0
- package/docs/bmad-plugin.md +28 -1
- package/docs/bmad-v6-support.md +228 -0
- package/docs/macos-testing.md +300 -0
- package/docs/quick-start.md +17 -0
- package/mcp-server/server.py +9 -1
- package/package.json +2 -1
- package/src/bmad-detector.js +53 -0
- package/src/installer.js +133 -140
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
20251031
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#!/bin/bash
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
2
|
#
|
|
3
3
|
# File: .claude/hooks/bmad-tts-injector.sh
|
|
4
4
|
#
|
|
@@ -48,24 +48,29 @@ CYAN='\033[0;36m'
|
|
|
48
48
|
GRAY='\033[0;90m'
|
|
49
49
|
NC='\033[0m' # No Color
|
|
50
50
|
|
|
51
|
-
# Detect BMAD installation
|
|
51
|
+
# Detect BMAD installation and version
|
|
52
|
+
# Supports both v4 (.bmad-core/) and v6-alpha (bmad/) installations
|
|
52
53
|
detect_bmad() {
|
|
53
54
|
local bmad_core_dir=""
|
|
54
55
|
|
|
55
|
-
# Check
|
|
56
|
-
if [[ -d "
|
|
56
|
+
# Check for v6-alpha first (newer version)
|
|
57
|
+
if [[ -d "bmad" ]]; then
|
|
58
|
+
bmad_core_dir="bmad"
|
|
59
|
+
elif [[ -d "../bmad" ]]; then
|
|
60
|
+
bmad_core_dir="../bmad"
|
|
61
|
+
# Check for v4 (legacy)
|
|
62
|
+
elif [[ -d ".bmad-core" ]]; then
|
|
57
63
|
bmad_core_dir=".bmad-core"
|
|
58
|
-
# Check parent directory
|
|
59
64
|
elif [[ -d "../.bmad-core" ]]; then
|
|
60
65
|
bmad_core_dir="../.bmad-core"
|
|
61
|
-
# Check for bmad-core (without dot prefix)
|
|
66
|
+
# Check for bmad-core (without dot prefix, legacy variant)
|
|
62
67
|
elif [[ -d "bmad-core" ]]; then
|
|
63
68
|
bmad_core_dir="bmad-core"
|
|
64
69
|
elif [[ -d "../bmad-core" ]]; then
|
|
65
70
|
bmad_core_dir="../bmad-core"
|
|
66
71
|
else
|
|
67
72
|
echo -e "${RED}❌ BMAD installation not found${NC}" >&2
|
|
68
|
-
echo -e "${GRAY} Looked for .bmad-core or bmad-core directory${NC}" >&2
|
|
73
|
+
echo -e "${GRAY} Looked for bmad/, .bmad-core/, or bmad-core/ directory${NC}" >&2
|
|
69
74
|
return 1
|
|
70
75
|
fi
|
|
71
76
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#!/bin/bash
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
2
|
#
|
|
3
3
|
# File: .claude/hooks/bmad-voice-manager.sh
|
|
4
4
|
#
|
|
@@ -43,9 +43,61 @@ PLUGIN_DIR=".claude/plugins"
|
|
|
43
43
|
PLUGIN_FILE="$PLUGIN_DIR/bmad-voices.md"
|
|
44
44
|
ENABLED_FLAG="$PLUGIN_DIR/bmad-voices-enabled.flag"
|
|
45
45
|
|
|
46
|
-
# AI NOTE: Auto-enable pattern - When BMAD is detected via
|
|
46
|
+
# AI NOTE: Auto-enable pattern - When BMAD is detected via install-manifest.yaml,
|
|
47
47
|
# automatically enable the voice plugin to provide seamless multi-agent voice support.
|
|
48
48
|
# This avoids requiring manual plugin activation after BMAD installation.
|
|
49
|
+
# Supports both BMAD v4 (.bmad-core/) and v6-alpha (bmad/) directory structures.
|
|
50
|
+
|
|
51
|
+
# @function detect_bmad_version
|
|
52
|
+
# @intent Detect BMAD installation and return version number
|
|
53
|
+
# @why Support both v4 and v6-alpha installations with different directory structures
|
|
54
|
+
# @param None
|
|
55
|
+
# @returns Echoes version number (4, 6, or 0 for not installed) to stdout
|
|
56
|
+
# @exitcode 0=detected, 1=not installed
|
|
57
|
+
# @sideeffects None
|
|
58
|
+
# @edgecases Checks v6 first (newer version), falls back to v4
|
|
59
|
+
# @calledby auto_enable_if_bmad_detected, get_bmad_config_path
|
|
60
|
+
# @calls None
|
|
61
|
+
detect_bmad_version() {
|
|
62
|
+
if [[ -f "bmad/_cfg/manifest.yaml" ]]; then
|
|
63
|
+
# v6 detected
|
|
64
|
+
echo "6"
|
|
65
|
+
return 0
|
|
66
|
+
elif [[ -f ".bmad-core/install-manifest.yaml" ]]; then
|
|
67
|
+
# v4 detected
|
|
68
|
+
echo "4"
|
|
69
|
+
return 0
|
|
70
|
+
else
|
|
71
|
+
# Not installed
|
|
72
|
+
echo "0"
|
|
73
|
+
return 1
|
|
74
|
+
fi
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
# @function get_bmad_config_path
|
|
78
|
+
# @intent Get BMAD configuration file path based on detected version
|
|
79
|
+
# @why v4 and v6 use different directory structures for config files
|
|
80
|
+
# @param None
|
|
81
|
+
# @returns Echoes config path to stdout, empty string if not installed
|
|
82
|
+
# @exitcode 0=path returned, 1=not installed
|
|
83
|
+
# @sideeffects None
|
|
84
|
+
# @edgecases Returns empty string if BMAD not detected
|
|
85
|
+
# @calledby Commands that need to read BMAD config (future use)
|
|
86
|
+
# @calls detect_bmad_version
|
|
87
|
+
get_bmad_config_path() {
|
|
88
|
+
local version=$(detect_bmad_version)
|
|
89
|
+
|
|
90
|
+
if [[ "$version" == "6" ]]; then
|
|
91
|
+
echo "bmad/core/config.yaml"
|
|
92
|
+
return 0
|
|
93
|
+
elif [[ "$version" == "4" ]]; then
|
|
94
|
+
echo ".bmad-core/config.yaml"
|
|
95
|
+
return 0
|
|
96
|
+
else
|
|
97
|
+
echo ""
|
|
98
|
+
return 1
|
|
99
|
+
fi
|
|
100
|
+
}
|
|
49
101
|
|
|
50
102
|
# @function auto_enable_if_bmad_detected
|
|
51
103
|
# @intent Automatically enable BMAD voice plugin when BMAD framework is detected
|
|
@@ -56,10 +108,12 @@ ENABLED_FLAG="$PLUGIN_DIR/bmad-voices-enabled.flag"
|
|
|
56
108
|
# @sideeffects Creates enabled flag file, creates plugin directory
|
|
57
109
|
# @edgecases Only auto-enables if plugin not already enabled, silent operation
|
|
58
110
|
# @calledby get_agent_voice
|
|
59
|
-
# @calls mkdir, touch
|
|
111
|
+
# @calls mkdir, touch, detect_bmad_version
|
|
60
112
|
auto_enable_if_bmad_detected() {
|
|
61
|
-
|
|
62
|
-
|
|
113
|
+
local version=$(detect_bmad_version)
|
|
114
|
+
|
|
115
|
+
# Check if BMAD is installed (any version) and plugin not already enabled
|
|
116
|
+
if [[ "$version" != "0" ]] && [[ ! -f "$ENABLED_FLAG" ]]; then
|
|
63
117
|
# BMAD detected but plugin not enabled - enable it silently
|
|
64
118
|
mkdir -p "$PLUGIN_DIR"
|
|
65
119
|
touch "$ENABLED_FLAG"
|
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
# 🍎 macOS Testing Setup Complete!
|
|
2
|
+
|
|
3
|
+
## ✅ What's Been Added
|
|
4
|
+
|
|
5
|
+
### 1. **Dual Workflow Setup**
|
|
6
|
+
- **Main Test Workflow** (`.github/workflows/test.yml`)
|
|
7
|
+
- Fast testing on Ubuntu + macOS
|
|
8
|
+
- Node 18, 20
|
|
9
|
+
- Runs on every push/PR
|
|
10
|
+
|
|
11
|
+
- **Dedicated macOS Workflow** (`.github/workflows/test-macos.yml`)
|
|
12
|
+
- Comprehensive macOS testing
|
|
13
|
+
- macOS 13 (Intel), 14 (M1), 15 (Latest)
|
|
14
|
+
- Node 18, 20, 22
|
|
15
|
+
- Manual trigger available
|
|
16
|
+
|
|
17
|
+
### 2. **Test Coverage**
|
|
18
|
+
- ✅ Unit tests (BATS)
|
|
19
|
+
- ✅ System compatibility checks
|
|
20
|
+
- ✅ Audio stack validation (afplay, ffmpeg, mpv)
|
|
21
|
+
- ✅ Piper TTS architecture detection
|
|
22
|
+
- ✅ ElevenLabs API mock testing
|
|
23
|
+
- ✅ Python MCP dependencies
|
|
24
|
+
- ✅ Audio file generation
|
|
25
|
+
- ✅ Installation process
|
|
26
|
+
|
|
27
|
+
### 3. **Documentation**
|
|
28
|
+
- 📖 [docs/macos-testing.md](docs/macos-testing.md) - Complete guide
|
|
29
|
+
- 📄 [.github/MACOS_TESTING_QUICKSTART.md](.github/MACOS_TESTING_QUICKSTART.md) - Quick reference
|
|
30
|
+
- 📋 Updated README with macOS testing link
|
|
31
|
+
|
|
32
|
+
## 🎯 How to Use
|
|
33
|
+
|
|
34
|
+
### Automatic Testing (Recommended)
|
|
35
|
+
```bash
|
|
36
|
+
# Just push your code - tests run automatically!
|
|
37
|
+
git push origin master
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Tests will run on:
|
|
41
|
+
- 2 OS (Ubuntu + macOS) × 2 Node versions = **4 test jobs** (main workflow)
|
|
42
|
+
- 3 macOS versions × 3 Node versions = **9 test jobs** (macOS workflow)
|
|
43
|
+
|
|
44
|
+
### Manual Testing
|
|
45
|
+
1. Go to GitHub → **Actions** tab
|
|
46
|
+
2. Select **macOS Test Suite**
|
|
47
|
+
3. Click **Run workflow**
|
|
48
|
+
|
|
49
|
+
### Local Testing (If You Have a Mac)
|
|
50
|
+
```bash
|
|
51
|
+
brew install bats-core
|
|
52
|
+
npm install
|
|
53
|
+
npm test
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## 💰 Cost Comparison
|
|
57
|
+
|
|
58
|
+
| Option | Cost | Coverage |
|
|
59
|
+
|--------|------|----------|
|
|
60
|
+
| **GitHub Actions** | **$0** | Intel + M1 + Latest macOS |
|
|
61
|
+
| Mac VPS (UltaHost) | $4.80-22.50/mo | Limited, no GUI, audio issues |
|
|
62
|
+
| MacStadium | $79+/mo | Full Mac in cloud |
|
|
63
|
+
| Buy a Mac | $599+ | One-time, real hardware |
|
|
64
|
+
|
|
65
|
+
**Winner: GitHub Actions** - FREE + automatic + real hardware! 🏆
|
|
66
|
+
|
|
67
|
+
## 🚀 What Happens Next
|
|
68
|
+
|
|
69
|
+
### On Every Push:
|
|
70
|
+
1. Tests trigger automatically
|
|
71
|
+
2. Run on Ubuntu + macOS in parallel
|
|
72
|
+
3. Results show in PR checks
|
|
73
|
+
4. Badge updates in README
|
|
74
|
+
|
|
75
|
+
### On Test Failure:
|
|
76
|
+
1. Review logs in Actions tab
|
|
77
|
+
2. Download artifacts if needed
|
|
78
|
+
3. Fix locally or in GitHub
|
|
79
|
+
4. Push again - retests automatically
|
|
80
|
+
|
|
81
|
+
## 📊 Matrix Testing
|
|
82
|
+
|
|
83
|
+
### Main Workflow (Fast)
|
|
84
|
+
```yaml
|
|
85
|
+
Ubuntu + Node 18 ✓
|
|
86
|
+
Ubuntu + Node 20 ✓
|
|
87
|
+
macOS + Node 18 ✓
|
|
88
|
+
macOS + Node 20 ✓
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
### macOS Workflow (Comprehensive)
|
|
92
|
+
```yaml
|
|
93
|
+
macOS 13 (Intel) + Node 18 ✓
|
|
94
|
+
macOS 13 (Intel) + Node 20 ✓
|
|
95
|
+
macOS 13 (Intel) + Node 22 ✓
|
|
96
|
+
macOS 14 (M1) + Node 18 ✓
|
|
97
|
+
macOS 14 (M1) + Node 20 ✓
|
|
98
|
+
macOS 14 (M1) + Node 22 ✓
|
|
99
|
+
macOS 15 + Node 18 ✓
|
|
100
|
+
macOS 15 + Node 20 ✓
|
|
101
|
+
macOS 15 + Node 22 ✓
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
## 🎉 Benefits
|
|
105
|
+
|
|
106
|
+
### No Mac VPS Needed!
|
|
107
|
+
- ❌ No monthly fees
|
|
108
|
+
- ❌ No SSH audio forwarding headaches
|
|
109
|
+
- ❌ No VNC/GUI setup complexity
|
|
110
|
+
- ❌ No limited server resources
|
|
111
|
+
|
|
112
|
+
### GitHub Actions Gives You:
|
|
113
|
+
- ✅ Real macOS hardware
|
|
114
|
+
- ✅ Both Intel and Apple Silicon
|
|
115
|
+
- ✅ Actual audio tools installed
|
|
116
|
+
- ✅ Free on public repos
|
|
117
|
+
- ✅ Automatic on every commit
|
|
118
|
+
- ✅ Parallel test execution
|
|
119
|
+
- ✅ Artifact storage for debugging
|
|
120
|
+
|
|
121
|
+
## 🔍 Viewing Results
|
|
122
|
+
|
|
123
|
+
### In Pull Requests
|
|
124
|
+
Check the bottom of any PR:
|
|
125
|
+
```
|
|
126
|
+
✓ Test Suite / Test on ubuntu-latest (Node 18)
|
|
127
|
+
✓ Test Suite / Test on ubuntu-latest (Node 20)
|
|
128
|
+
✓ Test Suite / Test on macos-latest (Node 18)
|
|
129
|
+
✓ Test Suite / Test on macos-latest (Node 20)
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
### In Actions Tab
|
|
133
|
+
1. Click **Actions** at top of repo
|
|
134
|
+
2. See all test runs
|
|
135
|
+
3. Click any run for details
|
|
136
|
+
4. Expand steps for full output
|
|
137
|
+
|
|
138
|
+
### Status Badge
|
|
139
|
+
README shows current status:
|
|
140
|
+
```markdown
|
|
141
|
+
[](...)
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
## 🐛 Troubleshooting
|
|
145
|
+
|
|
146
|
+
### Tests Failing?
|
|
147
|
+
1. Click **Details** in PR check
|
|
148
|
+
2. Review failed step output
|
|
149
|
+
3. Check system info section
|
|
150
|
+
4. Download artifacts if available
|
|
151
|
+
|
|
152
|
+
### Want More Details?
|
|
153
|
+
See [docs/macos-testing.md](docs/macos-testing.md) for:
|
|
154
|
+
- Running tests locally
|
|
155
|
+
- Debugging tips
|
|
156
|
+
- Adding new tests
|
|
157
|
+
- Architecture-specific testing
|
|
158
|
+
|
|
159
|
+
## 📝 Next Steps
|
|
160
|
+
|
|
161
|
+
### Immediate:
|
|
162
|
+
1. ✅ Push this commit
|
|
163
|
+
2. ✅ Watch tests run
|
|
164
|
+
3. ✅ Verify all pass
|
|
165
|
+
|
|
166
|
+
### Future Enhancements:
|
|
167
|
+
- [ ] Test real ElevenLabs API (with secrets)
|
|
168
|
+
- [ ] Test Piper TTS full installation
|
|
169
|
+
- [ ] Test Claude Desktop integration
|
|
170
|
+
- [ ] Performance benchmarks
|
|
171
|
+
- [ ] Audio quality validation
|
|
172
|
+
|
|
173
|
+
## 🤝 Contributing
|
|
174
|
+
|
|
175
|
+
Mac users can help by:
|
|
176
|
+
- Running tests locally
|
|
177
|
+
- Reporting macOS-specific issues
|
|
178
|
+
- Testing on different macOS versions
|
|
179
|
+
- Suggesting new test cases
|
|
180
|
+
|
|
181
|
+
## 📚 Documentation Files
|
|
182
|
+
|
|
183
|
+
1. **[docs/macos-testing.md](docs/macos-testing.md)**
|
|
184
|
+
- Complete testing guide
|
|
185
|
+
- Local testing instructions
|
|
186
|
+
- Debugging help
|
|
187
|
+
- Contributing guidelines
|
|
188
|
+
|
|
189
|
+
2. **[.github/MACOS_TESTING_QUICKSTART.md](.github/MACOS_TESTING_QUICKSTART.md)**
|
|
190
|
+
- Quick reference
|
|
191
|
+
- TL;DR guide
|
|
192
|
+
- Common tasks
|
|
193
|
+
|
|
194
|
+
3. **[.github/workflows/test.yml](.github/workflows/test.yml)**
|
|
195
|
+
- Main test workflow
|
|
196
|
+
- Ubuntu + macOS
|
|
197
|
+
- Fast execution
|
|
198
|
+
|
|
199
|
+
4. **[.github/workflows/test-macos.yml](.github/workflows/test-macos.yml)**
|
|
200
|
+
- Dedicated macOS tests
|
|
201
|
+
- Comprehensive coverage
|
|
202
|
+
- Manual trigger
|
|
203
|
+
|
|
204
|
+
---
|
|
205
|
+
|
|
206
|
+
## 🎊 Conclusion
|
|
207
|
+
|
|
208
|
+
**You don't need to rent a Mac VPS!**
|
|
209
|
+
|
|
210
|
+
GitHub Actions provides FREE, automatic, comprehensive macOS testing on real hardware with both Intel and Apple Silicon support.
|
|
211
|
+
|
|
212
|
+
Just push your code and let GitHub Actions handle the rest! 🚀
|
|
213
|
+
|
|
214
|
+
---
|
|
215
|
+
|
|
216
|
+
**Questions?** See [docs/macos-testing.md](docs/macos-testing.md) or open an issue.
|
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.1.
|
|
14
|
+
**Author**: Paul Preibisch ([@997Fire](https://x.com/997Fire)) | **Version**: v2.1.5
|
|
15
15
|
|
|
16
16
|
---
|
|
17
17
|
|
|
@@ -84,6 +84,7 @@ Whether you're coding in Claude Code, chatting in Claude Desktop, or using Warp
|
|
|
84
84
|
### Additional Resources
|
|
85
85
|
- [🔗 Useful Links](#-useful-links) - Voice typing & AI tools
|
|
86
86
|
- [🔄 Updating](#-updating) - Keep AgentVibes current
|
|
87
|
+
- [🍎 macOS Testing](docs/macos-testing.md) - Automated testing on macOS with GitHub Actions
|
|
87
88
|
- [🙏 Credits](#-credits) - Acknowledgments
|
|
88
89
|
- [🤝 Contributing](#-contributing) - Show support
|
|
89
90
|
|
|
@@ -91,16 +92,16 @@ Whether you're coding in Claude Code, chatting in Claude Desktop, or using Warp
|
|
|
91
92
|
|
|
92
93
|
## 📰 Latest Release
|
|
93
94
|
|
|
94
|
-
**[v2.1.
|
|
95
|
+
**[v2.1.5 - Critical macOS Compatibility Fix + GitHub Actions Testing](https://github.com/paulpreibisch/AgentVibes/releases/tag/v2.1.5)** 🍎
|
|
95
96
|
|
|
96
|
-
**
|
|
97
|
+
**CRITICAL macOS FIX!** All shell scripts now use `#!/usr/bin/env bash` instead of `#!/bin/bash`, enabling AgentVibes to work on macOS. The old shebang forced bash 3.2 (from 2007) which doesn't support associative arrays or modern bash syntax. Plus FREE automated macOS testing on Intel and Apple Silicon Macs!
|
|
97
98
|
|
|
98
99
|
**Key highlights:**
|
|
99
|
-
-
|
|
100
|
-
-
|
|
101
|
-
-
|
|
102
|
-
-
|
|
103
|
-
- ✅ **
|
|
100
|
+
- 🍎 **macOS Now Supported** - Fixed all 23 shell scripts to work with Homebrew bash 5.x
|
|
101
|
+
- 🔧 **Voice Switching Works** - No more syntax errors on Mac
|
|
102
|
+
- 🤖 **FREE macOS Testing** - GitHub Actions tests on macOS 13/14/15 (Intel + M1/M2/M3)
|
|
103
|
+
- 🚀 **Automated CI** - 13 parallel test jobs on every commit
|
|
104
|
+
- ✅ **All Features Work** - Personalities, providers, speed control now functional on Mac
|
|
104
105
|
|
|
105
106
|
[→ View Full Release Notes](RELEASE_NOTES.md) | [→ View All Releases](https://github.com/paulpreibisch/AgentVibes/releases)
|
|
106
107
|
|
|
@@ -136,6 +137,17 @@ Just say "Switch to Aria voice" or "Speak in Spanish" instead of typing commands
|
|
|
136
137
|
|
|
137
138
|
## 🚀 Quick Start
|
|
138
139
|
|
|
140
|
+
### 🍎 macOS Users - Read This First!
|
|
141
|
+
|
|
142
|
+
**REQUIRED:** Install bash 5.x before using AgentVibes:
|
|
143
|
+
```bash
|
|
144
|
+
brew install bash # One-time setup
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
macOS ships with bash 3.2 (from 2007) which lacks modern bash features AgentVibes needs. After installing bash 5.x via Homebrew, everything works perfectly!
|
|
148
|
+
|
|
149
|
+
---
|
|
150
|
+
|
|
139
151
|
Get AgentVibes running in 3 steps: **Install** → **Choose Provider** (Piper/ElevenLabs) → **Enable Voice**
|
|
140
152
|
|
|
141
153
|
**[→ View Complete Quick Start Guide](docs/quick-start.md)** - Full installation options, provider setup, and activation steps
|
|
@@ -224,6 +236,8 @@ AgentVibes includes **27 unique ElevenLabs voices** with multilingual support.
|
|
|
224
236
|
|
|
225
237
|
The BMAD plugin detects when you activate a BMAD agent (e.g., `/BMad:agents:pm`) and automatically uses the assigned voice for that role.
|
|
226
238
|
|
|
239
|
+
**Version Support**: AgentVibes supports both BMAD v4 and v6-alpha installations. Version detection is automatic - just install BMAD and AgentVibes will detect and configure itself correctly!
|
|
240
|
+
|
|
227
241
|
**[→ View Complete BMAD Documentation](docs/bmad-plugin.md)** - All agent mappings, language support, plugin management, and customization
|
|
228
242
|
|
|
229
243
|
[↑ Back to top](#-table-of-contents)
|