Claude Code Ppc banner
Scottcjn Scottcjn

Claude Code Ppc

Development community

Description

Claude Code running natively on Mac OS X Leopard (2007) - PowerPC G5 with direct TLS 1.2

Installation

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

README

Claude Code for PowerPC

[![BCOS Certified](https://img.shields.io/badge/BCOS-Certified-brightgreen?style=flat&logo=data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMiAxTDMgNXY2YzAgNS41NSAzLjg0IDEwLjc0IDkgMTIgNS4xNi0xLjI2IDktNi40NSA5LTEyVjVsLTktNHptLTIgMTZsLTQtNCA1LjQxLTUuNDEgMS40MSAxLjQxTDEwIDE0bDYtNiAxLjQxIDEuNDFMMTAgMTd6Ii8+PC9zdmc+)](BCOS.md) **World's first: Claude Code running natively on Mac OS X Leopard (2007)**

A full Claude Code-like CLI running on a **Power Mac G5** (PowerPC 970, Mac OS X 10.5 Leopard) with **direct TLS 1.2 connections** to the Anthropic API. No proxy. No relay. No modern machine in the middle.

┌─────────────────────────────────────┐
│  Power Mac G5 (Mac OS X 10.5)      │
│  claude_g5.js ─► node_ppc runtime  │
│  QuickJS ─► mbedTLS ─► TLS 1.2    │
└───────────────┬─────────────────────┘
                │ direct HTTPS (no proxy)
                ▼
        api.anthropic.com:443

What This Is

An agentic coding CLI — Claude reads files, writes code, executes shell commands, and searches the filesystem, all running natively on big-endian PowerPC hardware from 2003. The full tool execution loop works, not just chat.

Requirements

  • node_ppc — custom QuickJS + mbedTLS runtime for PowerPC Mac OS X
  • An Anthropic API key or OAuth credentials (~/.claude/.credentials.json)

Quick Start

# On the G5 (or any machine with node_ppc)
cd ~/node-ppc-scaffold
./node_ppc claude_g5.js
# Non-interactive mode
./node_ppc claude_g5.js -p "List the files in /etc"
# With explicit API key
ANTHROPIC_API_KEY=sk-ant-... ./node_ppc claude_g5.js

Features

Tool Execution

Claude has full access to the local filesystem and shell:

  • Read — Read files with line numbers
  • Write — Create/overwrite files
  • Edit — Surgical string replacement in files
  • **Bash