Skip to content

The World's Fastest Claude Code Launcher Make Claude Code launching simpler Click Dock to launch, or start from any folder instantly.

Notifications You must be signed in to change notification settings

orange2ai/claude-code-now

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

63 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸ–₯ Claude Code Now

English | δΈ­ζ–‡ | ζ—₯本θͺž

The World's Fastest Claude Code Launcher

Make Claude Code launching simpler, built for macOS and Windows.

Click Dock to launch, or start from any folder instantly.

πŸ”” Windows Users: Windows support is now available! See the Windows installation section below.

πŸ† Efficiency Comparison

Launch Method Steps Time
Before Open Terminal β†’ Choose folder β†’ Confirm workspace β†’ Wait for permission ~35s
Now Click Dock ~3s ✨

Launch Claude Code 10 times a day? That's 5 precious minutes wasted.

🎯 Why Do You Need This?

Claude Code isn't just a coding assistant β€” it does data analysis, file organization, and document processing.

Claude Code is great, but launching is tedious:

  • Always need to open Terminal
  • Have to choose folders
  • Need to confirm workspace trust
  • Wait for permission dialogs

Too much hassle!

Use Claude Code Now, get 10x efficiency boost instantly!

Auto-skip permission dialogs, truly one-click launch.

Save 5 minutes daily, save 30 hours annually.

🧠 The Power of Context

Why launch Claude Code in different folders? Because CONTEXT is everything!

Claude Code delivers its best results when it has the right context. Whether you're:

  • πŸ“Š Analyzing data in your research folder
  • πŸ’» Writing code in your project directory
  • πŸ“ Processing documents in your reports folder
  • 🎨 Managing creative work in your design folder

Each context gives Claude Code superpowers.

That's why you need Claude Code Now everywhere - place the launcher in every important folder and launch instantly with perfect context.

Trust us: Once you experience context-aware Claude Code, you'll never go back to context-less AI again.


⭐ Love this tool? Give it a star! ⭐

GitHub stars GitHub forks


✨ Features

πŸ–₯ Dock Launch (macOS)

Put the app in Dock, click to launch Claude Code instantly.

⚑ Finder Toolbar Launch (macOS)

Drag the app to Finder toolbar, click to launch in any folder.

πŸ“ Right-Click Launch (Windows)

Right-click on any folder to launch Claude Code Now.

πŸ”§ API Config Switcher

One-click API configuration switching with secure local storage.

Supported APIs:

  • Zhipu AI (GLM) - Best for China users
  • Kimi (Moonshot AI) - High-speed thinking-turbo model
  • Anthropic Official - International users
  • Custom API - Other compatible services

Minimal Version (Only 85 lines):

Use the command-line version without GUI app:

cd config-switcher
./config-simpler.sh

Supported Configs:

  1. zhipu - Zhipu AI
  2. kimi - Moonshot AI (High-speed thinking-turbo)
  3. anthropic - Anthropic Official
  4. custom - Custom configuration

How to Add Configuration Files:

The minimal version uses preset configuration files. Here's how to create them:

cd ~

# 1. Create Zhipu AI config
cp .claude/settings.json .claude/settings_zhipu.json

# 2. Edit the config with your Zhipu API key
# Edit .claude/settings_zhipu.json, modify ANTHROPIC_AUTH_TOKEN and ANTHROPIC_BASE_URL

# 3. Create other configs the same way
cp .claude/settings.json .claude/settings_kimi.json
cp .claude/settings.json .claude/settings_anthropic.json
cp .claude/settings.json .claude/settings_custom.json

Configuration File Templates:

Zhipu AI (zhipu):

{
  "env": {
    "ANTHROPIC_AUTH_TOKEN": "your_zhipu_api_key",
    "ANTHROPIC_BASE_URL": "https://open.bigmodel.cn/api/anthropic",
    "API_TIMEOUT_MS": "3000000"
  }
}

Kimi (kimi)::

{
  "env": {
    "ANTHROPIC_AUTH_TOKEN": "your_kimi_api_key",
    "ANTHROPIC_BASE_URL": "https://api.moonshot.cn/anthropic",
    "ANTHROPIC_MODEL": "kimi-k2-thinking-turbo",
    "API_TIMEOUT_MS": "3000000"
  }
}

Quick Setup with Preset Templates:

We provide 4 preset configuration templates in config-switcher/presets/:

# Copy all preset configs to ~/.claude/
cd ~/.claude
cp /path/to/claude-code-now/config-switcher/presets/settings*.json .

Or copy individually:

cp /path/to/claude-code-now/config-switcher/presets/settings_anthropic.json ~/.claude/
cp /path/to/claude-code-now/config-switcher/presets/settings_kimi.json ~/.claude/
cp /path/to/claude-code-now/config-switcher/presets/settings_zhipu.json ~/.claude/
cp /path/to/claude-code-now/config-switcher/presets/settings_custom.json ~/.claude/

Then edit the files with your actual API keys and you're ready to use the config switcher!

Security: API keys stored locally, never uploaded anywhere.

Use GUI: Navigate to config-switcher/Claude Config Switcher.app

πŸ“ Universal Launch

Put the APP in any folder, click the icon to launch directly.

That simple.

⚑ Quick Start

πŸš€ One-Line Install (Recommended)

curl -fsSL https://raw.githubusercontent.com/orange2ai/claude-code-now/main/install.sh | bash

That's it! This single command will:

  • βœ… Download the latest version automatically
  • βœ… Install to Applications folder
  • βœ… Create working directory
  • βœ… Set proper permissions
  • βœ… Show usage instructions

macOS

Step 1: Prepare Working Folder

Create Claude Code folder in your Documents:

Documents/
└── Claude Code/          # Create this folder

Step 2: Install App

Method 1: Direct Download (Recommended)

  1. Download Latest Release
  2. Drag Claude Code Now.app to Applications folder

πŸ–₯ Dock Installation:

  1. Drag from Applications to Dock
  2. Click to use!

⚑ Finder Toolbar Installation:

  1. Hold Command key, drag Claude Code Now.app to Finder toolbar

  2. Click toolbar icon, Claude Code launches in current directory

Method 2: Git Clone

git clone https://github.com/orange2ai/claude-code-now.git
cp -r "Claude Code Now.app" /Applications/

Method 3: Command Line Installation

# Download script
curl -fsSL https://raw.githubusercontent.com/orange2ai/claude-code-now/main/claude-code-now.sh -o claude-code-now
chmod +x claude-code-now

# Move to system path
sudo mv claude-code-now /usr/local/bin/

Step 3: Start Using

πŸ–₯ Dock Method:

  1. Click Dock icon - Auto-launch in ~/Documents/Claude Code folder
  2. Start working - Data analysis, coding, document processing

⚑ Finder Toolbar Method:

  1. Open any folder - Navigate to your desired working directory in Finder
  2. Click toolbar icon - Claude Code launches in current directory
  3. Start working - Directly operate in selected directory

Windows

Step 1: Prerequisites

  • Install Node.js
  • Install Claude Code CLI: npm install -g @anthropic-ai/claude-code

Step 2: Download and Install

  1. Download from the windows branch or clone:
git clone -b windows https://github.com/orange2ai/claude-code-now.git
cd claude-code-now
  1. Run installation (as Administrator):
install.bat
  1. Install right-click menu (as Administrator):
install-context-menu.bat

Step 3: Start Using

Right-click Method:

  1. Right-click on any folder in File Explorer
  2. Select "Claude Code Now"
  3. Claude Code launches in that directory

Command Line:

claude-code-now

Uninstall right-click menu:

uninstall-context-menu.bat

πŸ”§ Windows Troubleshooting

Issue: "claude-code-now.ps1 not found"

  • Run diagnose.bat for detailed system diagnosis
  • Ensure you're running scripts in the claude-code-now project directory
  • Run install.bat with administrator privileges before install-context-menu.bat

Common solutions:

  1. Administrator privileges: Right-click β†’ "Run as administrator"
  2. File permissions: Make sure PowerShell scripts are not blocked
  3. PATH issues: Manually add %USERPROFILE%\bin to system PATH
  4. PowerShell policy: Run Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser

πŸ‘¨β€πŸ’Ό About Author

Made by Orange, CEO of ListenHub.AI 🎧

ListenHub.AI - Transform any content into engaging podcasts using AI. Perfect for learning, content creation, and accessibility.

Philosophy: Predict β†’ Single Point Breakthrough β†’ All-in

Focused on minimal product design that solves real problems.


πŸ’‘ Design Philosophy

Simple: Focus on one thing, do it perfectly.

Predict user needs β†’ Find core function β†’ Put all energy into it.

Result: One-click launch, ultimate simplicity.

πŸ”§ System Requirements

macOS

  • System: macOS 10.9+
  • Dependency: Claude Code CLI installed
  • Folder: Create Claude Code folder in ~/Documents

Windows

  • System: Windows 7+
  • Dependency: Node.js and Claude Code CLI
  • Permissions: Administrator rights for installation

πŸ“¦ Project Files

Claude Code Now/
β”œβ”€β”€ πŸ–₯ Claude Code Now.app        # macOS app
β”œβ”€β”€ πŸ”§ config-switcher/          # NEW: Config Switcher
β”‚   └── Claude Config Switcher.app # API configuration tool
β”œβ”€β”€ install.sh                   # Smart one-line installer
β”œβ”€β”€ claude-code-now.sh           # macOS launch script
β”œβ”€β”€ claude-code-now.ps1          # Windows PowerShell script
β”œβ”€β”€ install.bat                  # Windows installation script
β”œβ”€β”€ install-context-menu.bat     # Windows right-click menu installer
β”œβ”€β”€ uninstall-context-menu.bat   # Windows right-click menu uninstaller
└── πŸ“š Documentation

⭐ Star History

Star History Chart


⭐ Give a Star if it helps! https://github.com/orange2ai/claude-code-now

πŸ’¬ Questions? Submit Issue

πŸ”— Permanent Project Link: https://github.com/orange2ai/claude-code-now

About

The World's Fastest Claude Code Launcher Make Claude Code launching simpler Click Dock to launch, or start from any folder instantly.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •