agentvibes 2.17.8 → 3.0.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/prepare-release.md +39 -6
- package/.claude/commands/release.md +97 -43
- package/.claude/config/audio-effects.cfg +2 -2
- package/.claude/config/background-music-position.txt +1 -1
- package/.claude/config/background-music-volume.txt +1 -1
- package/.claude/config/background-music.txt +1 -0
- package/.claude/docs/TERMUX_SETUP.md +408 -0
- package/.claude/github-star-reminder.txt +1 -1
- package/.claude/hooks/play-tts-termux-ssh.sh +169 -0
- package/.claude/hooks/play-tts.sh +6 -0
- package/.mcp.json +4 -0
- package/README.md +66 -8
- package/RELEASE_NOTES.md +299 -0
- package/mcp-server/install-deps.js +18 -3
- package/mcp-server/server.py +26 -10
- package/mcp-server/test_server.py +65 -0
- package/package.json +6 -2
- package/src/installer.js +479 -131
- package/templates/activation-instructions-bmad.md +54 -0
- package/templates/audio/welcome-demo.wav +0 -0
- package/templates/audio/welcome-music.mp3 +0 -0
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# BMAD Agent Activation Instructions
|
|
2
|
+
|
|
3
|
+
When a BMAD agent activates, follow these steps EXACTLY:
|
|
4
|
+
|
|
5
|
+
## STEP 3.5a: Create BMAD Context File (CRITICAL)
|
|
6
|
+
|
|
7
|
+
**IMMEDIATELY after agent identification, create the context file:**
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
echo "$AGENT_ID" > .bmad-agent-context
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Where `$AGENT_ID` is one of:
|
|
14
|
+
- `pm` (Product Manager)
|
|
15
|
+
- `dev` (Developer)
|
|
16
|
+
- `qa` (QA)
|
|
17
|
+
- `architect` (Architect)
|
|
18
|
+
- `po` (Product Owner)
|
|
19
|
+
- `analyst` (Analyst)
|
|
20
|
+
- `sm` (Scrum Master)
|
|
21
|
+
- `ux-expert` (UX Expert)
|
|
22
|
+
- `bmad-master` (BMAD Master)
|
|
23
|
+
- `bmad-orchestrator` (Orchestrator)
|
|
24
|
+
|
|
25
|
+
**Example:**
|
|
26
|
+
```bash
|
|
27
|
+
# For Product Manager agent
|
|
28
|
+
echo "pm" > .bmad-agent-context
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
This file allows AgentVibes to:
|
|
32
|
+
1. Detect which BMAD agent is active
|
|
33
|
+
2. Look up the correct voice mapping
|
|
34
|
+
3. Automatically speak questions using the agent's assigned voice
|
|
35
|
+
|
|
36
|
+
## STEP 10: Clean Up on Exit
|
|
37
|
+
|
|
38
|
+
**Before exiting the agent, remove the context file:**
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
rm -f .bmad-agent-context
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
This ensures voice switching only happens when an agent is active.
|
|
45
|
+
|
|
46
|
+
## Why This Matters
|
|
47
|
+
|
|
48
|
+
Without the `.bmad-agent-context` file:
|
|
49
|
+
- AgentVibes cannot detect which agent is active
|
|
50
|
+
- Questions won't be spoken automatically
|
|
51
|
+
- Voice switching won't work
|
|
52
|
+
- The BMAD voice plugin becomes non-functional
|
|
53
|
+
|
|
54
|
+
**This is MANDATORY for BMAD voice integration to work!**
|
|
Binary file
|
|
Binary file
|