claude-all-config 3.6.2 → 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/VERSION CHANGED
@@ -1 +1 @@
1
- 3.6.2
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.2",
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": {
@@ -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}"