claude-all-config 3.1.5 → 3.1.6
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/VERSION +1 -1
- package/package.json +1 -1
- package/postinstall.js +21 -0
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.1.
|
|
1
|
+
3.1.6
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-all-config",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.6",
|
|
4
4
|
"description": "🤖 Universal AI CLI Config with Advanced Skills System - Quality Scoring, Scaffolding, Testing, Hooks & Multi-Agent Support (Claude Code, Cursor, Copilot, Gemini & 20+ More)",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
package/postinstall.js
CHANGED
|
@@ -230,7 +230,28 @@ Run with YOLO mode: gemini -y
|
|
|
230
230
|
console.log(` ⚙️ settings.json (auto-approve tools)`);
|
|
231
231
|
}
|
|
232
232
|
|
|
233
|
+
// Install uvx for MiniMax MCP support
|
|
234
|
+
function installUvx() {
|
|
235
|
+
const hasUvx = commandExists('uvx');
|
|
236
|
+
if (!hasUvx) {
|
|
237
|
+
console.log('📦 Installing uvx for MiniMax MCP support...');
|
|
238
|
+
try {
|
|
239
|
+
execSync('curl -LsSf https://astral.sh/uv/install.sh | sh', {
|
|
240
|
+
stdio: 'inherit',
|
|
241
|
+
shell: '/bin/bash'
|
|
242
|
+
});
|
|
243
|
+
console.log(' ✅ uvx installed');
|
|
244
|
+
} catch (e) {
|
|
245
|
+
console.log(' ⚠️ uvx install failed (MiniMax MCP may not work)');
|
|
246
|
+
}
|
|
247
|
+
} else {
|
|
248
|
+
console.log('✅ uvx already installed');
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
|
|
233
252
|
// Run installations
|
|
253
|
+
installUvx();
|
|
254
|
+
|
|
234
255
|
if (hasClaude || !hasGemini) {
|
|
235
256
|
installClaude();
|
|
236
257
|
}
|