Download Wukong Code

Native CLI for macOS, Linux, and Windows. No Node.js required.

[VERSION: v0.1.0]

> Recommended Install

macOS / Linux
Native binary. No Node.js required.
$curl -fsSL https://wukong.today/install.sh | sh
Release SHA-256 is verified before installation.View install script
$ CHECK INSTALL
$wukong --version
$ START
$wukong

> Manual Downloads

Choose the native build for your platform and architecture, then verify the adjacent SHA-256 file before extracting it.

๐ŸŽ macOS (Apple Silicon)
๐ŸŽ macOS (Intel)
๐ŸชŸ Windows (x64)
๐ŸชŸ Windows (arm64)
๐Ÿง Linux (x64)
๐Ÿง Linux (arm64)
macOS / Linux manual verification
shasum -a 256 -c wukong-<platform>-<arch>.zip.sha256 unzip wukong-<platform>-<arch>.zip chmod +x wukong ./wukong --version
Windows PowerShell
# Download the ZIP and adjacent .sha256 file first $expected = (Get-Content .\wukong-win32-x64.zip.sha256).Split()[0] $actual = (Get-FileHash .\wukong-win32-x64.zip -Algorithm SHA256).Hash.ToLower() if ($actual -ne $expected) { throw "SHA-256 mismatch" } Expand-Archive .\wukong-win32-x64.zip -DestinationPath .\wukong .\wukong\wukong.exe --version

Move wukong.exe to a permanent directory, add that directory to your user PATH, open a new terminal, and run wukong --version.

> Requirements

macOS 12+, Windows 10+, or Linux ยท Terminal ยท Model API key for AI features

> Quick Start Guide

Wukong runs approved project commands in the current workspace with your operating-system user permissions. It is not a complete shell sandbox. Review the exact command, working directory, repository scripts, and provider-visible input before you continue; the displayed command and directory do not certify child processes or PATH-resolved programs. Wukong does not upload source code or raw local Gate evidence to Wukong services.
1. Add your model provider
$ wukong ย ย ย # then type /provider and follow the prompts
// or non-interactive: wukong provider catalog add deepseek --api-key <key> --default-model deepseek-v4-pro
2. Start the interactive agent
$ wukong
3. Start a Loop
wukong> /loop add input validation to the signup form
// headless: wukong loop "add validation" --dry-run, then add the printed start flags
[CURRENT: 0.1.0]

Trusted Local Loop

Review one editable Preflight, enforce provider-call and token limits, and require complete fresh Gate evidence before PASS. Terminal results explain the decisive evidence, file attribution, usage, blocker, recovery, and next action. macOS binaries are intentionally unsigned and unnotarized; the installer verifies the adjacent SHA-256 before replacing an existing binary.

Resume unfinished work

/resume codex
Continue a Codex task.
/resume claude
Continue a Claude task.
/resume cursor
Continue a Cursor task.
/resume kimi
Continue a Kimi Code task.
/resume grok
Continue a Grok task.

> AI Coding Agent Guides

Need help configuring your provider or running your first /loop? Read the docs.