Krypton 2.3.0 ships native on Windows x86-64, macOS Apple Silicon, and Linux x86-64. Self-host fix across all three backends, new growing-capacity StringBuilder, and a Krypton-native CLI driver. Plus the 2.3.0 VS Code / Google Antigravity extension.
Released June 6, 2026. All assets live on one GitHub release page.
krypton-2.3.0-windows-x86_64.exe — Windows installer. Bundles kcc (Krypton-native driver), kcc-bin (the compile.k-built backend), kr (KryptScript runner with REPL), krypton_rt.dll, the WASM backend, kweb, and .k / .ks file associations.krypton-2.3.0-macos-arm64.pkg — macOS Apple Silicon signed installer (toolchain installs to /usr/local/krypton).krypton-2.3.0-macos-arm64.tar.gz — macOS Apple Silicon tarball, same contents as the .pkg.krypton-2.3.0-linux-x86_64.tar.gz — Linux x86-64 self-contained tarball (static syscall-only ELF, no glibc dep). First kcc run is instant — no self-host rebuild.krypton-language-2.3.0.vsix — VS Code / Antigravity extension. Adds .ks (KryptScript) + .k syntax and ships the kls language server for Windows + macOS.One-click installer to C:\krypton with automatic PATH configuration. 2.7 MB. Windows 10 / 11 x64.
git clone https://github.com/t3m3d/krypton
cd krypton
bootstrap.bat :: copies prebuilt seeds into place, no gcc needed
kcc --version :: -> kcc version 2.3.0Then add the repo root to your PATH, or use the from-source seed in place. bootstrap.bat ships the Krypton-native driver, the backend, kr.exe, and the runtime DLL — no C compiler, no clang.
Two install paths, both clang-free. The toolchain self-hosts on Mach-O without any external compiler.
brew install t3m3d/krypton/krypton
kcc --version # -> kcc version 2.3.0Tap t3m3d/krypton is live; the formula installs the same 2.3.0 macOS toolchain.
.pkg / tarballDownload .pkg or grab the tarball
Both install scripts ad-hoc-sign the binaries (AMFI) and clear download quarantine, so they run with no unidentified developer
prompt.
Self-contained tarball, no clone or C compiler required:
tar xzf krypton-2.3.0-linux-x86_64.tar.gz
cd krypton-2.3.0-linux-x86_64
./install.sh # symlinks kcc into /usr/local/bin (prompts for sudo if needed)
kcc --version # -> kcc version 2.3.0
kcc hello.k -o hello && ./helloCustom location: ./install.sh /opt/krypton, then add /opt/krypton/bin to PATH. Uninstall: rm /usr/local/bin/kcc plus the install dir.
Linux aarch64 ships as a cross target in 2.3.0, not a native install. On an x86-64 box:
kcc --aarch64 prog.k -o prog # static aarch64 ELF
qemu-aarch64-static prog # or run on real arm64 hardwareNative aarch64-hosted toolchain is roadmap for the next release.
git clone https://github.com/t3m3d/krypton
cd krypton
./build.shPrebuilt seeds eliminate the need for external compilers — no gcc / clang at user-invocation time.
Syntax highlighting, bracket matching, code folding, and kls-powered diagnostics + completions for Krypton (.k libraries) and KryptScript (.ks scripts). One .vsix installs in both VS Code and Google Antigravity (a VS Code fork) — Extensions panel ’ Install from VSIX.
kweb is a single-binary CLI that scaffolds, builds, serves, and deploys Krypton sites. The DSL stack:
htmk — HTML builder written in Krypton (every tag a function).kcss — CSS DSL with theme tokens and breakpoints.ks — server-side templating helpers.server + router — HTTP server and route table for serving the output.Bundled inside the Windows installer at C:\krypton\kweb.exe. CLI surface:
kweb init # scaffold a new site
kweb build # render to dist/
kweb serve [port] # local dev server
kweb deploy # rsync dist/ over SSH On macOS / Linux, build from source after installing the toolchain:
git clone https://github.com/t3m3d/kweb
cd kweb
kcc kweb.htk -o kwebThis very site (krypton-lang.org) is rendered by kweb, written in Krypton.
After install, confirm the toolchain version:
kcc --version # kcc version 2.3.0And confirm the editor extension version inside VS Code / Antigravity:
Extensions panel ’ Krypton ’ v2.3.0