ShenSeanChen

Launch Zai Claude — AI skill for Claude Code

AI community

This setup allows you to easily switch between different AI models with Claude Code, with credentials stored securely in a separate file.

How to install Launch Zai Claude

This entry records only its repository, not the path inside it, so there is no exact command to give. Open ShenSeanChen/launch-zai-claude and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Launch Zai Claude does

This setup allows you to easily switch between different AI models with Claude Code, with credentials stored securely in a separate file.

Alternatives in AI

  • Claude Squad — by smtg-ai - Claude Squad is a terminal app that manages multiple Claude Code, Codex (and other local agents i 6.5k ★
  • Manifest — Real-time cost observability for OpenClaw agents — track tokens, costs, messages, and model usage 4.1k ★
  • Launch An AI Feature — Workflow recipe — take an AI/LLM feature from a probabilistic-aware PRD to a launch-ready model card by chaini 1.3k ★

README

GLM-4.6 AI Agent Coding Test - Multi-Model Setup (Compared with Claude-4.5)

This setup allows you to easily switch between different AI models with Claude Code, with credentials stored securely in a separate file.

📹 Full YouTube Guide: [Youtube link](https://www.youtube.com/watch?v=oRlCs8635h4&list=PLE9hy4A7ZTmpGq7GHf5tgGFWh2277AeDR&index=30)

🚀 X Post: [X link](https://x.com/ShenSeanChen/status/1977664952841175144)

💻 Launch Full Stack Product: [Github Repo](https://github.com/ShenSeanChen/launch-mvp-stripe-nextjs-supabase)

☕️ Buy me a coffee: [Cafe Latte](https://buy.stripe.com/5kA176bA895ggog4gh)

🤖️ Discord: [Invite link](https://discord.com/invite/TKKPzZheua)

Available Models

  1. GLM-4.6 (via Z.ai API)
  2. Claude Sonnet 4.5 (via Anthropic API)

🔐 First Time Setup

  1. **Copy the example secrets file:**

    cp secrets.env.example secrets.env
  2. **Edit `secrets.env` with your actual credentials:**

    nano secrets.env  # or use your preferred editor
  3. **Make sure `secrets.env` is in `.gitignore` (already done!)**

Quick Start

Use GLM-4.6 (Z.ai)

source config_glm.txt && claude --model glm-4.6

Use Claude Sonnet 4.5 (Anthropic)

source config_claude.txt && claude --model claude-sonnet-4-5-20250929

Setup Aliases (Optional but Recommended)

Add these to your `~/.zshrc`:

source /Users/user_name/Desktop/Dev/yt-ZAI/test_claude/setup_aliases.sh

Then restart your terminal or run: `source ~/.zshrc`

After that, you can use:

  • claude-glm - Start Claude Code with GLM-4.6
  • claude-anthropic - Start Claude Code with Claude Sonnet 4.5

📁 File Structure

.
├── secrets.env              # Your API keys (DO NOT COMMIT!)
├── secrets.env.example      # Template for secrets.env
├── config_glm.txt          # GLM-4.6 configuration (sources secrets.env)
├── config_claude.txt       # Claude configuration (sources secrets.env)
├── setup_aliases.sh        # Shell alia