claude-all-config 3.6.3 → 3.6.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.
Files changed (3) hide show
  1. package/VERSION +1 -1
  2. package/claude-all +18 -12
  3. package/package.json +1 -1
package/VERSION CHANGED
@@ -1 +1 @@
1
- 3.6.3
1
+ 3.6.4
package/claude-all CHANGED
@@ -2324,14 +2324,15 @@ EOF
2324
2324
 
2325
2325
  echo ""
2326
2326
  echo "Pilih Model:"
2327
- echo " 1) Opus 🔬 Most Powerful - Complex reasoning"
2328
- echo " 2) Sonnet 🧠 Balanced - Default (Recommended)"
2329
- echo " 3) Haiku Fastest - Quick responses"
2330
- echo " 4) GPT-4o 🤖 OpenAI - ChatGPT Flagship"
2331
- echo " 5) Gemini 🌟 Google - Gemini 2.0 Flash"
2327
+ echo " 1) Opus 4.7 🚀 Latest Flagship - Best for complex coding & reasoning"
2328
+ echo " 2) Opus 4 🔬 Previous Flagship - Complex reasoning"
2329
+ echo " 3) Sonnet 🧠 Balanced - Default (Recommended)"
2330
+ echo " 4) Haiku ⚡ Fastest - Quick responses"
2331
+ echo " 5) GPT-4o 🤖 OpenAI - ChatGPT Flagship"
2332
+ echo " 6) Gemini 🌟 Google - Gemini 2.0 Flash"
2332
2333
  echo ""
2333
- read -p "Pilih [1-5, default: 2]: " model_choice
2334
- [[ -z "$model_choice" ]] && model_choice=2
2334
+ read -p "Pilih [1-6, default: 3]: " model_choice
2335
+ [[ -z "$model_choice" ]] && model_choice=3
2335
2336
 
2336
2337
  # Configure Letta API (IMPORTANT: Use AUTH_TOKEN, not API_KEY!)
2337
2338
  export ANTHROPIC_AUTH_TOKEN="$LETTA_API_KEY"
@@ -2341,24 +2342,29 @@ EOF
2341
2342
 
2342
2343
  case $model_choice in
2343
2344
  1)
2344
- echo -e "${GREEN}✓ Model: Claude Opus (Letta)${NC}"
2345
+ echo -e "${GREEN}✓ Model: Claude Opus 4.7 (Letta) ⭐${NC}"
2346
+ echo -e "${BLUE}🚀 Starting Letta Agent...${NC}"
2347
+ exec claude --dangerously-skip-permissions --no-chrome --model "claude-opus-4-7-latest" --system-prompt "$system_prompt"
2348
+ ;;
2349
+ 2)
2350
+ echo -e "${GREEN}✓ Model: Claude Opus 4 (Letta)${NC}"
2345
2351
  echo -e "${BLUE}🚀 Starting Letta Agent...${NC}"
2346
2352
  exec claude --dangerously-skip-permissions --no-chrome --model "claude-opus-4-20250514" --system-prompt "$system_prompt"
2347
2353
  ;;
2348
- 3)
2354
+ 4)
2349
2355
  echo -e "${GREEN}✓ Model: Claude Haiku (Letta)${NC}"
2350
2356
  echo -e "${BLUE}🚀 Starting Letta Agent...${NC}"
2351
2357
  exec claude --dangerously-skip-permissions --no-chrome --model "claude-haiku-4-20250514" --system-prompt "$system_prompt"
2352
2358
  ;;
2353
- 4)
2359
+ 5)
2354
2360
  echo -e "${GREEN}✓ Model: GPT-4o (Letta)${NC}"
2355
2361
  exec claude --dangerously-skip-permissions --no-chrome --model "gpt-4o" --system-prompt "$system_prompt"
2356
2362
  ;;
2357
- 5)
2363
+ 6)
2358
2364
  echo -e "${GREEN}✓ Model: Gemini 2.0 Flash (Letta)${NC}"
2359
2365
  exec claude --dangerously-skip-permissions --no-chrome --model "gemini-2.0-flash-exp" --system-prompt "$system_prompt"
2360
2366
  ;;
2361
- 2|*)
2367
+ 3|*)
2362
2368
  echo -e "${GREEN}✓ Model: Claude Sonnet (Letta)${NC}"
2363
2369
  echo -e "${BLUE}🚀 Starting Letta Agent...${NC}"
2364
2370
  exec claude --dangerously-skip-permissions --no-chrome --model "claude-sonnet-4-20250514" --system-prompt "$system_prompt"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-all-config",
3
- "version": "3.6.3",
3
+ "version": "3.6.4",
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": {