███████╗███████╗██╗ ██╗██████╗ ███████╗
╚══███╔╝██╔════╝██║ ██║██╔══██╗██╔════╝
███╔╝ ███████╗███████║██████╔╝███████╗
███╔╝ ╚════██║██╔══██║██╔══██╗╚════█��║
███████╗███████║██║ ██║██║ ██║███████║
╚══════╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝
[THE FIRST COMPILED UNIX SHELL]
"No fork, no problems."
The first Unix shell to compile to bytecodes and execute on a purpose-built virtual machine with fused superinstructions. Since the Bourne shell at Bell Labs in 1970, every Unix shell has been an interpreter. zshrs is the first to be a compiler. A drop-in zsh replacement written in Rust — 190k+ lines, 267 source files, 80 core modules, 26 ZLE widgets, 48 fish-ported builtins, persistent worker pool, AOP intercept, SQLite FTS5 caching, and full zsh compatibility.
Docs · Coverage Report · strykelang · fusevm · compsys
Table of Contents
- [0x00] Overview
- [0x01] Install
- [0x02] No-Fork Architecture
- [0x03] Bytecode Compilation
- [0x04] Concurrent Primitives
- [0x05] AOP Intercept
- [0x06] Worker Thread Pool
- [0x07] SQLite Caching
- [0x08] Exclusive Builtins
- [0x09] Compatibility
- [0x0A] Architecture
- [0xFF] License
[0x00] OVERVIEW
zshrs replaces fork + exec with a persistent worker thread pool, compiles every command to fusevm bytecodes, caches compiled chunks in SQLite, and runs the completion system on FTS5 indexes. The result: shell startup, command dispatch, globbing, completion, and autoloading are all faster by orders of magnitude.
[0x01] INSTALL
# From crates.io
# From source — lean build, pure shell, no stryke dependency
&&
# binary: target/release/zshrs
# Set as login shell
[0x02] NO-FORK ARCHITECTURE
Every operation that zsh forks for runs in-process on a persistent worker thread pool:
| Operation | zsh | zshrs |
|---|---|---|
$(cmd) |
fork + pipe | In-process stdout capture via dup2 |
<(cmd) / >(cmd) |
fork + FIFO | Worker pool thread + FIFO |
**/*.rs |
Single-threaded opendir |
Parallel walkdir per-subdir on pool |
*(.x) qualifiers |
N serial stat calls |
One parallel metadata prefetch |
rehash |
Serial readdir per PATH dir |
Parallel scan across pool |
compinit |
Synchronous fpath scan | Background scan + bytecode compilation |
| History write | Synchronous fsync |
Fire-and-forget to pool |
| Autoload | Read file + parse every time | Bytecode deserialization from SQLite |
| Plugin source | Parse + execute every startup | Delta replay from SQLite cache |
[0x03] BYTECODE COMPILATION
Every command compiles to fusevm bytecodes:
Interactive command ──► Parser ──► ShellCompiler ──► fusevm::Op ──► VM::run()
Script file (first) ──► Parser ──► ShellCompiler ──► VM::run() ──► cache in SQLite
Script file (cached) ──► SQLite ──► deserialize Chunk ──► VM::run()
(no lex, no parse, no compile)
Autoload function ──► SQLite ──► deserialize Chunk ──► VM::run()
(microseconds)
The shell compiler targets the same Op enum that strykelang uses. Both frontends share fused superinstructions, extension dispatch, and the Cranelift JIT path.
[0x04] CONCURRENT PRIMITIVES
Full parallelism in the lean binary. No stryke dependency needed.
# Async/await
id=
result=
# Parallel map — ordered output
# Parallel filter
# Parallel for-each — unordered, fire as completed
# Barrier — run all, wait for all
[0x05] AOP INTERCEPT
First shell with aspect-oriented programming:
# Before — log every git command
# After — timing
# Around — memoize
[0x06] WORKER THREAD POOL
Persistent pool of [2-18] threads. Configurable:
# ~/.config/zshrs/config.toml
[]
= 8
[]
= true
[]
= true
[]
= 32
= true
[0x07] SQLITE CACHING
Three databases power the shell:
| Database | Purpose |
|---|---|
| compsys.db | Completions: autoloads with bytecodes, comps, services, PATH executables (FTS5) |
| history.db | Frequency-ranked, timestamped, duration, exit status per command |
| plugins.db | Plugin delta cache: functions, aliases, variables, hooks, zstyles, options |
Browse without SQL:
[0x08] EXCLUSIVE BUILTINS
| Builtin | Description |
|---|---|
intercept |
AOP before/after/around advice on any command |
intercept_proceed |
Call original from around advice |
async / await |
Ship work to pool, collect result |
pmap |
Parallel map with ordered output |
pgrep |
Parallel filter |
peach |
Parallel for-each, unordered |
barrier |
Run all commands in parallel, wait for all |
doctor |
Full diagnostic: pool metrics, cache stats, bytecode coverage |
dbview |
Browse SQLite caches without SQL |
profile |
In-process command profiling with nanosecond accuracy |
[0x09] COMPATIBILITY
- Full zsh script compatibility — runs existing
.zshrc - Full bash compatibility via emulation
- Fish-style syntax highlighting, autosuggestions, abbreviations
- 150+ builtins ported from zsh
- ZWC precompiled function support
- Glob qualifiers, parameter expansion flags, completion system
- zstyle, ZLE widgets, hooks, modules
[0x0A] ARCHITECTURE
┌──────────────────────────────────────────┐
│ zshrs binary │
├──────────────┬───────────────────────────┤
│ src/ (80) │ fish/ (48 builtins) │
│ lexer │ reader + line editor │
│ parser │ syntax highlighting │
│ compiler │ autosuggestions │
│ exec │ abbreviations │
│ jobs │ env dispatch │
│ signals │ history backend │
│ params │ process control │
│ glob │ event system │
│ zle/ (26) │ │
├──────────────┴───────────────────────────┤
│ compsys (27 files) │
│ SQLite FTS5 · menuselect · zstyle │
├────────���─────────────────────────────────┤
│ fusevm (bytecode VM) │
│ 127 opcodes · fused loops · JIT path │
└──────────────────────────────────────────┘
[0xFF] LICENSE
MIT — Copyright (c) 2026 MenkeTechnologies