agentvibes 2.14.3 → 2.14.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/README.md +6 -7
- package/RELEASE_NOTES.md +83 -0
- package/package.json +1 -1
- package/src/installer.js +38 -32
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.14.
|
|
14
|
+
**Author**: Paul Preibisch ([@997Fire](https://x.com/997Fire)) | **Version**: v2.14.4
|
|
15
15
|
|
|
16
16
|
---
|
|
17
17
|
|
|
@@ -94,15 +94,14 @@ Whether you're coding in Claude Code, chatting in Claude Desktop, or using Warp
|
|
|
94
94
|
|
|
95
95
|
## 📰 Latest Release
|
|
96
96
|
|
|
97
|
-
**[v2.14.
|
|
97
|
+
**[v2.14.4 - Fully Automated Install](https://github.com/paulpreibisch/AgentVibes/releases/tag/v2.14.4)** 🎉
|
|
98
98
|
|
|
99
|
-
AgentVibes v2.14.
|
|
99
|
+
AgentVibes v2.14.4 fixes the `--yes` flag to skip ALL interactive prompts during installation. Previously, even with `--yes`, the installer would pause at three "Continue?" prompts. Now `npx agentvibes install --yes` runs fully unattended, perfect for CI/CD pipelines and automated deployments.
|
|
100
100
|
|
|
101
101
|
**Key Highlights:**
|
|
102
|
-
-
|
|
103
|
-
-
|
|
104
|
-
-
|
|
105
|
-
- 🎯 **133 Tests Passing** - Full test suite now passes with comprehensive macOS coverage
|
|
102
|
+
- ⚡ **Fully Automated Install** - `--yes` flag now skips ALL interactive prompts
|
|
103
|
+
- 🤖 **CI/CD Ready** - Perfect for automated deployments and scripted installs
|
|
104
|
+
- ✅ **No Breaking Changes** - Interactive mode unchanged when `--yes` is not used
|
|
106
105
|
|
|
107
106
|
💡 **Tip:** If `npx agentvibes` shows an older version or missing commands, clear your npm cache: `npm cache clean --force && npx agentvibes@latest --help`
|
|
108
107
|
|
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,3 +1,86 @@
|
|
|
1
|
+
# Release v2.14.4 - Fully Automated Install with --yes Flag
|
|
2
|
+
|
|
3
|
+
**Release Date:** 2025-11-30
|
|
4
|
+
**Type:** Patch Release (Enhancement)
|
|
5
|
+
|
|
6
|
+
## AI Summary
|
|
7
|
+
|
|
8
|
+
AgentVibes v2.14.4 fixes the `--yes` flag behavior during installation. Previously, even with `--yes`, the installer would pause at three intermediate "Continue?" prompts, blocking automated/CI installations. Now `npx agentvibes install --yes` runs fully unattended from start to finish.
|
|
9
|
+
|
|
10
|
+
**Key Highlights:**
|
|
11
|
+
- ⚡ **Fully Automated Install** - `--yes` flag now skips ALL interactive prompts
|
|
12
|
+
- 🤖 **CI/CD Ready** - Perfect for automated deployments and scripted installs
|
|
13
|
+
- ✅ **No Breaking Changes** - Interactive mode unchanged when `--yes` is not used
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## Enhancement
|
|
18
|
+
|
|
19
|
+
### Fully Automated Install with --yes Flag
|
|
20
|
+
**File:** `src/installer.js`
|
|
21
|
+
|
|
22
|
+
Three intermediate prompts are now skipped when `--yes` is provided:
|
|
23
|
+
|
|
24
|
+
| Prompt | Purpose |
|
|
25
|
+
|--------|---------|
|
|
26
|
+
| "📋 Review the installation summary above. Continue?" | After file installation summary |
|
|
27
|
+
| "Continue?" | After setup instructions display |
|
|
28
|
+
| "🎙️ Review MCP Server setup info above. Continue?" | After MCP server info |
|
|
29
|
+
|
|
30
|
+
**Before:** `npx agentvibes install --yes` would still pause 3 times
|
|
31
|
+
**After:** `npx agentvibes install --yes` runs completely unattended
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
# Now works for fully automated installations:
|
|
35
|
+
npx agentvibes install --yes
|
|
36
|
+
|
|
37
|
+
# Perfect for CI/CD pipelines:
|
|
38
|
+
npx agentvibes@latest install -y
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## Files Modified
|
|
44
|
+
|
|
45
|
+
| File | Changes |
|
|
46
|
+
|------|---------|
|
|
47
|
+
| `src/installer.js` | Wrapped 3 prompts with `if (!options.yes)` check (+12 lines) |
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
## Changes Summary
|
|
52
|
+
|
|
53
|
+
**Commits:** 1
|
|
54
|
+
- `feat: Skip intermediate prompts with --yes flag for automated installs`
|
|
55
|
+
|
|
56
|
+
**Files Changed:** 1
|
|
57
|
+
**Lines Added:** 12
|
|
58
|
+
**Lines Removed:** 6
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
62
|
+
## Migration Notes
|
|
63
|
+
|
|
64
|
+
**No migration required** - This is a patch release with improved automation.
|
|
65
|
+
|
|
66
|
+
**Who benefits:**
|
|
67
|
+
- CI/CD pipelines installing AgentVibes
|
|
68
|
+
- Scripted/automated deployments
|
|
69
|
+
- Anyone running `npx agentvibes install --yes`
|
|
70
|
+
|
|
71
|
+
---
|
|
72
|
+
|
|
73
|
+
## Testing
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
# Verify fully automated install works:
|
|
77
|
+
npx agentvibes install --yes
|
|
78
|
+
|
|
79
|
+
# Should complete without any prompts
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
---
|
|
83
|
+
|
|
1
84
|
# Release v2.14.3 - macOS Provider Routing Fix
|
|
2
85
|
|
|
3
86
|
**Release Date:** 2025-11-30
|
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.14.
|
|
4
|
+
"version": "2.14.4",
|
|
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
|
@@ -128,17 +128,17 @@ function showReleaseInfo() {
|
|
|
128
128
|
console.log(
|
|
129
129
|
boxen(
|
|
130
130
|
chalk.white.bold('═══════════════════════════════════════════════════════════════\n') +
|
|
131
|
-
chalk.cyan.bold(' 📦 AgentVibes v2.14.
|
|
131
|
+
chalk.cyan.bold(' 📦 AgentVibes v2.14.4 - Fully Automated Install\n') +
|
|
132
132
|
chalk.white.bold('═══════════════════════════════════════════════════════════════\n\n') +
|
|
133
133
|
chalk.green.bold('🎙️ WHAT\'S NEW:\n\n') +
|
|
134
|
-
chalk.cyan('AgentVibes v2.14.
|
|
135
|
-
chalk.cyan('
|
|
136
|
-
chalk.cyan('
|
|
134
|
+
chalk.cyan('AgentVibes v2.14.4 fixes the --yes flag to skip ALL prompts.\n') +
|
|
135
|
+
chalk.cyan('Now `npx agentvibes install --yes` runs fully unattended,\n') +
|
|
136
|
+
chalk.cyan('perfect for CI/CD pipelines and automated deployments.\n\n') +
|
|
137
137
|
chalk.green.bold('✨ KEY HIGHLIGHTS:\n\n') +
|
|
138
|
-
chalk.gray('
|
|
139
|
-
chalk.gray('
|
|
140
|
-
chalk.gray('
|
|
141
|
-
chalk.gray(' 🎯 133 Tests Passing - Full test suite
|
|
138
|
+
chalk.gray(' ⚡ Fully Automated Install - --yes skips ALL interactive prompts\n') +
|
|
139
|
+
chalk.gray(' 🤖 CI/CD Ready - Perfect for automated deployments\n') +
|
|
140
|
+
chalk.gray(' ✅ No Breaking Changes - Interactive mode unchanged\n') +
|
|
141
|
+
chalk.gray(' 🎯 133 Tests Passing - Full test suite coverage\n\n') +
|
|
142
142
|
chalk.white.bold('═══════════════════════════════════════════════════════════════\n\n') +
|
|
143
143
|
chalk.gray('📖 Full Release Notes: RELEASE_NOTES.md\n') +
|
|
144
144
|
chalk.gray('🌐 Website: https://agentvibes.org\n') +
|
|
@@ -1555,14 +1555,16 @@ async function install(options = {}) {
|
|
|
1555
1555
|
console.log('');
|
|
1556
1556
|
|
|
1557
1557
|
// Pause to let user review installation summary
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1558
|
+
if (!options.yes) {
|
|
1559
|
+
await inquirer.prompt([
|
|
1560
|
+
{
|
|
1561
|
+
type: 'confirm',
|
|
1562
|
+
name: 'continue',
|
|
1563
|
+
message: chalk.cyan('📋 Review the installation summary above. Continue?'),
|
|
1564
|
+
default: true,
|
|
1565
|
+
}
|
|
1566
|
+
]);
|
|
1567
|
+
}
|
|
1566
1568
|
|
|
1567
1569
|
// Show recent changes from git log or RELEASE_NOTES.md
|
|
1568
1570
|
try {
|
|
@@ -1662,14 +1664,16 @@ async function install(options = {}) {
|
|
|
1662
1664
|
console.log(chalk.white(' • /agent-vibes:personality <style>') + chalk.gray(' - Set personality\n'));
|
|
1663
1665
|
|
|
1664
1666
|
// Pause to let user review setup instructions
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1667
|
+
if (!options.yes) {
|
|
1668
|
+
await inquirer.prompt([
|
|
1669
|
+
{
|
|
1670
|
+
type: 'confirm',
|
|
1671
|
+
name: 'continue',
|
|
1672
|
+
message: chalk.cyan('Continue?'),
|
|
1673
|
+
default: true,
|
|
1674
|
+
}
|
|
1675
|
+
]);
|
|
1676
|
+
}
|
|
1673
1677
|
|
|
1674
1678
|
// Recommend MCP Server installation
|
|
1675
1679
|
console.log(
|
|
@@ -1719,14 +1723,16 @@ async function install(options = {}) {
|
|
|
1719
1723
|
);
|
|
1720
1724
|
|
|
1721
1725
|
// Pause to let user review MCP server info
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1726
|
+
if (!options.yes) {
|
|
1727
|
+
await inquirer.prompt([
|
|
1728
|
+
{
|
|
1729
|
+
type: 'confirm',
|
|
1730
|
+
name: 'continue',
|
|
1731
|
+
message: chalk.cyan('🎙️ Review MCP Server setup info above. Continue?'),
|
|
1732
|
+
default: true,
|
|
1733
|
+
}
|
|
1734
|
+
]);
|
|
1735
|
+
}
|
|
1730
1736
|
|
|
1731
1737
|
// Create default BMAD voice assignments (works even if BMAD not installed yet)
|
|
1732
1738
|
await createDefaultBmadVoiceAssignmentsProactive(targetDir);
|