Turn source code from multiple languages into portable, content-addressed WASI Components ready for the PitFast runtime.
PitCrew eliminates runtime language fragmentation by compiling all source trees into identical WASI component boundaries.
Rust, Go, C, C++, JavaScript, TypeScript and Python all produce the same runtime artifact contract.
Source, toolchain and build configuration form a reusable content fingerprint for zero redundant compiles.
Once built, PitBox no longer cares which language created the Component. Workloads execute on identical lanes.
Initialize a project in your preferred language, produce the WASI Component, and push the verified artifact to Paddock.
# 1. Initialize project with desired language toolchain
pit init --language go
# 2. Compile source into a content-addressed WASI Component
pit build
# 3. Push verified artifact to Paddock registry
pit push go-api:v1Every subsystem handles one distinct responsibility in the demand-driven execution chain.
Compile your first Rust, Go, or TypeScript service into a portable WASI Component.