The Wired Connection faster Tour All TWC

AI pair programmer · Anthropic CLI

Claude Code

One command installs Claude Code and the same toolchain the Automation team runs locally, then wires in your Anthropic API key. ~3 minutes on a fresh Mac.

Install

Two steps, ~3 minutes total.

  1. Download the installer.

    ⬇ Download claude-code-install.sh

    The download is gated by TWC Google SSO, so it knows it's you. It lands in your ~/Downloads folder.

  2. Open Terminal and run it.

    Use the copy button on the right of the box below, then paste into Terminal and press Return:

    bash "$(ls -t ~/Downloads/claude-code-install*.sh | head -1)"

    The script will pause and ask for the Anthropic API key the team DM'd you. Paste it when prompted. Your typing won't show on screen, that's macOS keeping secrets out of your terminal history.

First time using Terminal? Here's the friendly version.

Terminal is a built-in Mac app, you don't install it. It comes with every Mac.

  1. Press + Space to open Spotlight (Apple's search box).
  2. Type Terminal, press Return. A dark window opens, that's Terminal.
  3. Hit the copy button on the gray box above, click into Terminal so it's active, paste with ⌘V, press Return.
  4. When it asks for your API key, paste it (your typing stays invisible on purpose), press Return.

If anything looks off, just re-run the same command. The script is safe to re-run, it skips anything that's already installed.

What it installs

The script mirrors the toolchain the Automation team uses day-to-day. Each one is a small, well-known tool we rely on.

The main event

Foundations

Daily-driver CLIs

Apps

Companion CLIs (via npm)

Secret

First run

When the installer finishes:

  1. Open a new Terminal tab.

    This makes sure ANTHROPIC_API_KEY is loaded into your shell.

  2. Type claude and press Return.

    You're in. Ask it to do something, "summarize this folder" is a fine first prompt.

  3. (Later, as needed) gh auth login for GitHub, aws configure for AWS, gcloud init for Google Cloud.

    These each take a couple minutes and only matter when you actually need to hit those clouds.

Safety notes

Architecture

How the two-step installer flows from this site to a working Claude Code on your Mac.

FASTER.TWCCARE.COM · AWS YOUR MAC ANTHROPIC CloudFront Edge + Google-SSO gate S3 origin install.sh + landing page Browser SSO download Installer (bash) claude-code-install.sh Claude Code CLI ~/.local/bin/claude ~/.zshrc PATH + API key api.anthropic.com key verify · /v1/models Claude models runtime requests GET (SSO) fetch install.sh run in Terminal install binary write key + PATH verify 200 API calls
The installer downloads through the SSO-gated site, installs the native claude binary, verifies your API key against the Anthropic API before writing it to ~/.zshrc, and from then on the CLI talks to Anthropic directly at runtime.

← back to all tools