Skip to main content
LandNo Telemetry  CC0 Licensed PGP Signed Native Rust  Tauri  Effect-TS  macOS + Windows + Linux VS Code Extensions

Download Land

Native on macOS, Windows, and Linux.Zero cost, zero tracking, full VS Code extension support.

System Requirements

A quick check before you download saves a reinstall later.

Minimum Requirements

Processor: Intel Core i5 or AMD Ryzen 5 / Apple Silicon
Memory: 4 GB RAM
Disk Space: 500 MB

Recommended for the Best Experience

Processor: Intel Core i7 or AMD Ryzen 7
Memory: 8 GB RAM
Disk Space: 1 GB SSD

Supported Operating Systems

macOS 11+Windows 10+Ubuntu 20.04+ / Fedora 35+ / Debian 11+

Every Release is Signed. Verify Yours.

Every Land release is PGP-signed before it ships.Verify your download to confirm you got exactly what was built.

Download Verification 

SHA-256 Checksum
Available at first public release
PGP Signature
Available at first public release

Signed with key ID: Available at first public release

Verification Instructions
To verify: shasum -a 256 <filename> and compare output with the published checksum. For PGP: gpg --verify <file>.sig <file>

Integrity Check 

SHA-256 Checksum
Available at first public release
PGP Signature
Available at first public release
Verification Instructions
Verification instructions will be published alongside the first release. All releases will include SHA-256 checksums and PGP signatures.

Previous Releases

Download an older version if you need to pin to a specific release.
VersionPublishedSizeDownloads

VS Code Phones Home. Land Does Not.

VS Code (not VSCodium) embeds Microsoft telemetry at the network call level. Disabling it via settings reduces what is sent - it does not remove the code paths.The Telemetry feature is not in Land's default build. When it is not compiled in, the code does not exist. Nothing to disable.

Telemetry Policy

Full disclosure on what Land collects - and what it does not.

Not disabled. Absent.

Disabled 
VS Code's telemetry can be reduced via settings, but the code paths remain in the binary. Land's Telemetry feature is not compiled in by default. The code does not exist in the binary. There is nothing to disable.
Telemetry is a Cargo feature flag, not in default features. Must be explicitly opted in at compile time.

No crash reporter. No upload. No Microsoft endpoints.

Disabled 
VS Code (not VSCodium) includes Microsoft telemetry endpoints that make network calls regardless of settings. Land's CC0 base has all of these removed at the source level. No external error endpoints, no silent uploads.
CC0 -licensed Code-OSS base with all Microsoft telemetry endpoints removed.

No DO_NOT_TRACK header needed.

Disabled 
There is nothing to track. No usage analytics, no pageview beacons, no feature flag pings. The concept of opting out does not apply when there is no telemetry system.

Absent code has zero runtime cost.

Active 
VS Code's telemetry code occupies memory and CPU even when "disabled" - the functions exist, the branches run, the results are just dropped. Rust's cfg(feature) gates eliminate dead code at compile time. A feature that is not compiled in costs exactly zero.
Rust cfg(feature) gates eliminate dead code at compile time.

Need traces? Opt in. Your infrastructure only.

Optional 
Running Land in a production deployment and need distributed traces? Enable OpenTelemetry with a single compile flag. Metrics, spans, and distributed tracing on your own infrastructure. No external transmission.
cargo build --features Telemetry
Sub-features: MetricsCollection,DistributedTracing

Extension host timing stays in the process.

Active 
Cocoon uses Effect-TS's TelemetryService to track internal RPC and bootstrap timing - the data used to make the extension host faster. Nothing leaves the process. TelemetryMock layer for zero-overhead testing.
Effect-TS TelemetryService with TelemetryMock layer for zero-overhead testing.

Build Variants

9 named profiles across 16 test permutations. Every combination verified.

ProfileTierWorkbenchFeaturesStatus
debugDebugBrowser70-80%Available 
debug-mountainDebugMountain80-90%Recommended 
debug-electronDebugElectron95%+Legacy 
productionReleaseMountain80-90%Recommended 
releaseReleaseMountain100%Available 
web-browserReleaseBrowser70-80%Available 
bundler-preparationBuild--Available 
swc-bundleBuild--Experimental 
oxc-bundleBuild--Experimental 

Deployment Strategies

Four deployment modes from development to production.

Development

Change a file, see it instantly. Hot-reload in Tauri with the Sky dev server. No manual rebuilds needed.
bash Maintain/Dev-Mountain.sh
Hot ReloadInstant PreviewDev ServerNo Bundling

Debug Build

Full debug symbols for stepping through code. Three profiles: Browser, Mountain, and Electron.
bash Maintain/Debug/Build.sh --profile debug-mountain
Debug Symbols3 ProfilesSource MapsFile Watch

Release Build

Optimized, signed, and ready to ship. Full bundling with PGP signatures for every artifact.
bash Maintain/Release/Build.sh --profile production
OptimizedPGP SignedClean BuildPackaged

Web Deployment

Run Land in the browser without installing anything. No native shell needed.
bash Maintain/Release.sh --profile web-browser
No InstallBrowser OnlyWeb DeployOXC Bundled