Decentralized compute network. CLI-first. Three modules out of the box: transcode (FFmpeg), coinpay (DID + escrow), infernet (AI inference).
curl -fsSL https://c0mpute.com/install.sh | shThat installs three CLIs into ~/.c0mpute/bin:
| Binary | Purpose | Source |
|---|---|---|
c0mpute |
Umbrella CLI: jobs, workers, modules, dispatch | this repo |
coinpay |
DID, wallet, escrow, payments, receipts, reputation | upstream coinpay project |
infernet |
AI inference workload runner | infernet-protocol (upstream) |
The c0mpute installer pulls each from its own release feed.
# identity
c0mpute coinpay did create
c0mpute coinpay did create --role worker
# run a worker
c0mpute worker register
c0mpute worker start --gpu
# submit jobs
c0mpute transcode submit input.mov --preset hls --max-price 1.25
c0mpute infernet run prompts.jsonl --model qwen --max-price 5.00
# monitor
c0mpute job status <job-id>
c0mpute tui # interactive dashboard (react-blessed)
c0mpute doctor # full-stack health check
# trust
c0mpute coinpay reputation inspect did:coinpay:worker:abc123The plugin form mirrors the URL namespace: c0mpute.com/transcode,
c0mpute.com/coinpay, c0mpute.com/infernet.
βββββββββββββββββββββ c0mpute (Rust binary) βββββββββββββββββββββ
β subcommands: doctor, worker, job, modules, tui β
β plugins: transcode (in-process) β
β coinpay (subprocess β external `coinpay` binary) β
β infernet (subprocess β external `infernet` binary)β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β² β²
β libp2p Kad-DHT β signed-request envelopes
βΌ βΌ
p2p mesh of workers coinpay (DID, escrow, receipts)
(no central coordinator)
| Layer | Language | Why |
|---|---|---|
CLI binaries (c0mpute) |
Rust | Static binary; no runtime to install on workers |
| P2P / chunks / FFmpeg | Rust | rust-libp2p, content-addressed storage, no GC pauses |
Web (apps/web) |
Bun + Next.js 16 | Apex landing at c0mpute.com |
TUI (apps/tui) |
Bun + react-blessed | c0mpute tui interactive dashboard |
| Future GPU kernels | Mojo | When a workload needs custom GPU compute (DIP-0009) |
.
βββ docs/
β βββ c0mpute-v1.md # v1 PRD (source of truth)
βββ dips/ # design proposals
βββ node/
β βββ crates/ # all Rust source β host + transcode workload
β βββ c0mpute-cli/ # produces `c0mpute`
β βββ c0mpute-core/, c0mpute-net/, c0mpute-store/, c0mpute-gateway/
β βββ c0mpute-verify/, c0mpute-update/, c0mpute-doctor/
β βββ c0mpute-proto/, c0mpute-api/
β βββ c0mpute-transcode/ # in-process FFmpeg workload
βββ plugins/ # marketplace manifests only
β βββ transcode/module.toml # in-process; code at node/crates/c0mpute-transcode
β βββ coinpay/module.toml # subprocess; binary from upstream coinpay
β βββ infernet/module.toml # subprocess; binary from infernetprotocol/infernet-protocol
βββ apps/
β βββ web/ # @c0mpute/web β Next.js apex landing
β βββ tui/ # @c0mpute/tui β react-blessed TUI
βββ packages/
β βββ shared/ # @c0mpute/shared β shared TS types
βββ .mise.toml # contributor toolchain pins
βββ railpack.json # Railway build config (provider hint)
βββ scripts/
βββ install.sh # served at c0mpute.com/install.sh
βββ dev-setup.sh # contributor bootstrap
There is no central backend β no Supabase, no coordinator daemon. Discovery, dispatch, and verification flow through libp2p Kad-DHT + gossipsub. Identity, payments, escrow, and reputation flow through CoinPay DID. The only public infrastructure we host is static (landing site, release tarballs, bootstrap seed list, plugin manifest mirrors). See DIP-0011.
plugins/ directory is for marketplace metadata only. Each plugin's
module.toml describes how c0mpute discovers, dispatches to, and (in
the future) lets users install/enable/disable it. The plugin's actual
binary comes from its own release feed.
scripts/dev-setup.sh # mise + pinned tools + bun install
mise run cli -- doctor # full-stack diagnostics
mise run cli -- transcode preset list
mise run test # rust + tsc
# build the c0mpute binary directly
cargo build --bin c0mpute
./target/debug/c0mpute --helpWorking today
c0mputeRust binary builds; clap surface fordoctor,worker,job,plugin,transcode,coinpay(passthrough),infernet(passthrough),tui,versionc0mpute plugin install <url>chain-calls upstream installersc0mpute doctorcross-checkscoinpayandinferneton PATH- Apex landing at c0mpute.com deployed via
Railway, dark CLI-aesthetic with
/,/getting-started,/docs,/contact,/terms,/privacy www.c0mpute.comβ apex 308 redirect vianext.config.mjsapps/tuiscaffold renders a placeholder dashboard- 12 Rust unit tests pass
Not yet wired up
- Real CoinPay DID generation, escrow, receipts (DIP-0007 β depends on upstream coinpay project shipping)
- Real Infernet runtime integration (depends on upstream infernet-protocol)
- libp2p networking (
c0mpute-netis a trait surface today; bootstrap design in DIP-0010) - Plugin marketplace UI on the dashboard (
/pluginspage coming)