claude-all-config 3.6.1 → 3.6.3

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.1
1
+ 3.6.3
package/claude-all CHANGED
@@ -1913,8 +1913,8 @@ case $choice in
1913
1913
  echo ""
1914
1914
  echo -e "${GREEN}✨ AVAILABLE MODELS:${NC}"
1915
1915
  echo ""
1916
- echo " 1) 🚀 glm-4.7 (Flagship - Coding Plan) ⭐"
1917
- echo " 2) 👁️ glm-4.6v (Vision - Image tasks)"
1916
+ echo " 1) 🚀 glm-5 (Flagship - latest gen) ⭐"
1917
+ echo " 2) glm-5.1 (Tuned - balanced speed + quality)"
1918
1918
  echo ""
1919
1919
 
1920
1920
  read -p "Select model [1-2, default: 1]: " model_choice
@@ -1922,15 +1922,15 @@ case $choice in
1922
1922
 
1923
1923
  case "$model_choice" in
1924
1924
  1)
1925
- MODEL_NAME="glm-4.7"
1926
- echo -e "${GREEN}✓ Selected: glm-4.7${NC}"
1925
+ MODEL_NAME="glm-5"
1926
+ echo -e "${GREEN}✓ Selected: glm-5${NC}"
1927
1927
  ;;
1928
1928
  2)
1929
- MODEL_NAME="glm-4.6v"
1930
- echo -e "${GREEN}✓ Selected: glm-4.6v${NC}"
1929
+ MODEL_NAME="glm-5.1"
1930
+ echo -e "${GREEN}✓ Selected: glm-5.1${NC}"
1931
1931
  ;;
1932
1932
  *)
1933
- MODEL_NAME="glm-4.7"
1933
+ MODEL_NAME="glm-5"
1934
1934
  ;;
1935
1935
  esac
1936
1936
 
package/models/README.md CHANGED
@@ -56,9 +56,9 @@ Edit `models/glm/config.json`:
56
56
  "description": "Fast variant"
57
57
  },
58
58
  {
59
- "id": "glm-4.7",
60
- "name": "GLM-4.7",
61
- "description": "Newest version"
59
+ "id": "glm-5",
60
+ "name": "GLM-5",
61
+ "description": "Latest flagship"
62
62
  }
63
63
  ]
64
64
  }
@@ -19,8 +19,8 @@
19
19
  "deepseek-v3.1",
20
20
  "deepseek-v3.2",
21
21
  "glm-4.5",
22
- "glm-4.6",
23
- "glm-4.7",
22
+ "glm-5",
23
+ "glm-5.1",
24
24
  "grok-code-fast-1",
25
25
  "gemini-2.0-flash-exp",
26
26
  "gemini-2.0-flash-thinking-exp",
@@ -4,21 +4,16 @@
4
4
  "api_base": "https://open.bigmodel.cn/api/paas/v4",
5
5
  "models": [
6
6
  {
7
- "id": "glm-4.7",
8
- "name": "GLM-4.7",
9
- "description": "Flagship model - coding, reasoning (Coding Plan) ⭐"
7
+ "id": "glm-5",
8
+ "name": "GLM-5",
9
+ "description": "Flagship model latest generation, coding + reasoning ⭐"
10
10
  },
11
11
  {
12
- "id": "glm-4.6v",
13
- "name": "GLM-4.6V",
14
- "description": "Vision/Multimodal - image tasks 👁️"
15
- },
16
- {
17
- "id": "glm-4.7-flash",
18
- "name": "GLM-4.7-Flash",
19
- "description": "Free unlimited model"
12
+ "id": "glm-5.1",
13
+ "name": "GLM-5.1",
14
+ "description": "Tuned variant balanced speed + quality ⚡"
20
15
  }
21
16
  ],
22
- "default_model": "glm-4.7",
17
+ "default_model": "glm-5",
23
18
  "context_window": 128000
24
19
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-all-config",
3
- "version": "3.6.1",
3
+ "version": "3.6.3",
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": {
@@ -45,7 +45,7 @@ export ANTHROPIC_BASE_URL="https://api.z.ai/api/anthropic"
45
45
  export ANTHROPIC_API_KEY="$API_KEY"
46
46
 
47
47
  # Model name from argument or default
48
- MODEL_NAME="${1:-glm-4.7}"
48
+ MODEL_NAME="${1:-glm-5}"
49
49
 
50
50
  echo -e "${BLUE}Starting GLM Chat${NC}"
51
51
  echo -e "${GREEN}Model: $MODEL_NAME${NC}"