claude-all-config 3.6.0 → 3.6.2

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/.env.example ADDED
@@ -0,0 +1,43 @@
1
+ # ClaudeAll Secrets — keep this file PRIVATE (chmod 600).
2
+ # Copy to ~/.claude/.env and fill in your own API keys.
3
+ # postinstall will copy this to ~/.claude/.env if it does not exist.
4
+ # The claude-all wrapper sources ~/.claude/.env before launching `claude`.
5
+
6
+ # ─────────────────────────────────────────────────────────────
7
+ # Documentation & search
8
+ # ─────────────────────────────────────────────────────────────
9
+ # Context7 - https://context7.com/dashboard
10
+ CONTEXT7_API_KEY=
11
+
12
+ # Exa - https://exa.ai/dashboard
13
+ EXA_API_KEY=
14
+
15
+ # ─────────────────────────────────────────────────────────────
16
+ # Z.AI MCP suite (zread + vision + web-search)
17
+ # https://z.ai/dashboard
18
+ # ─────────────────────────────────────────────────────────────
19
+ Z_AI_API_KEY=
20
+
21
+ # ─────────────────────────────────────────────────────────────
22
+ # MiniMax voice/audio MCP
23
+ # https://www.minimax.io
24
+ # ─────────────────────────────────────────────────────────────
25
+ MINIMAX_API_KEY=
26
+
27
+ # ─────────────────────────────────────────────────────────────
28
+ # Telegram MCP for notifications + bot control
29
+ # - Get TELEGRAM_API_ID and TELEGRAM_API_HASH from https://my.telegram.org
30
+ # - Get TELEGRAM_BOT_TOKEN from @BotFather
31
+ # - TELEGRAM_CHAT_ID is your numeric user/chat id
32
+ # ─────────────────────────────────────────────────────────────
33
+ TELEGRAM_API_ID=
34
+ TELEGRAM_API_HASH=
35
+ TELEGRAM_BOT_TOKEN=
36
+ TELEGRAM_CHAT_ID=
37
+
38
+ # ─────────────────────────────────────────────────────────────
39
+ # Optional — model provider keys (only if you use them directly)
40
+ # ─────────────────────────────────────────────────────────────
41
+ # ANTHROPIC_API_KEY=
42
+ # OPENAI_API_KEY=
43
+ # GOOGLE_API_KEY=
package/VERSION CHANGED
@@ -1 +1 @@
1
- 3.6.0
1
+ 3.6.2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-all-config",
3
- "version": "3.6.0",
3
+ "version": "3.6.2",
4
4
  "description": "🦾 MONSTER ENGINEER v2 - Ultimate AI CLI with 63 Skills, 12 Superpowers, 14 Agents. Multi-Agent Orchestration, Cost-Aware, Security Scorecard, Parallel-First.",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -94,7 +94,8 @@
94
94
  "README.md",
95
95
  "LICENSE",
96
96
  "LICENSE.md",
97
- "VERSION"
97
+ "VERSION",
98
+ ".env.example"
98
99
  ],
99
100
  "preferGlobal": true,
100
101
  "claudeall": {
package/postinstall.js CHANGED
@@ -431,9 +431,10 @@ function setupLocalBinSymlinks() {
431
431
  // Run installations
432
432
  installUvx();
433
433
 
434
- if (hasClaude || !hasGemini) {
435
- installClaude();
436
- }
434
+ // Always install Claude configs to ~/.claude/ — harmless even without the
435
+ // Claude binary present, and avoids the "binary on uncommon PATH" detection
436
+ // gap. The configs sit ready for whenever `claude` becomes available.
437
+ installClaude();
437
438
 
438
439
  if (hasGemini) {
439
440
  console.log('');