Skill based on SP1 (zkVM v6 Hypercube), generated from sources/sp1. Doc path: sources/sp1/ (README, DEVELOPMENT.md, crates/*/README.md, examples), plus https://docs.succinct.xyz/docs/sp1 (introduction, quickstart, recommended-workflow).
SP1 is a zero-knowledge virtual machine that proves correct execution of RISC-V programs. Write provable logic in Rust (or other LLVM→RISC-V languages), build an ELF with the succinct toolchain, and use the SDK to execute, prove, and verify. No custom circuits; use Plonk or Groth16 proofs, recursion for aggregation, and precompiles to extend the zkVM.
Core References
| Topic |
Description |
Reference |
| Overview |
Program vs script, ELF, entrypoint, project layout |
core-overview |
| Program I/O |
read, commit, SP1Stdin, public values |
core-program-io |
| CLI and build |
cargo prove new/build, project structure |
core-cli-and-build |
| Proving and verification |
ProverClient, execute, setup, prove, verify |
core-proving-and-verification |
Features
Proof formats and verification
| Topic |
Description |
Reference |
| Proof formats |
Plonk, Groth16, compressed; bytes for Solidity |
features-proof-formats |
| Recursion |
Verifying proofs in the zkVM, aggregation |
features-recursion |
Extending the zkVM
| Topic |
Description |
Reference |
| Precompiles |
Adding custom chips (syscall, MachineAir, AIR) |
features-precompiles |
Best Practices
| Topic |
Description |
Reference |
| Workflow |
Execute-only during dev, reuse client, crate layout, prover network |
best-practices-workflow |
1---2name: sp13description: SP1 zkVM—prove arbitrary Rust (RISC-V) programs with the SDK, CLI, recursion, and precompiles.4---56> Skill based on SP1 (zkVM v6 Hypercube), generated from `sources/sp1`. Doc path: `sources/sp1/` (README, DEVELOPMENT.md, crates/*/README.md, examples), plus https://docs.succinct.xyz/docs/sp1 (introduction, quickstart, recommended-workflow).78SP1 is a zero-knowledge virtual machine that proves correct execution of RISC-V programs. Write provable logic in Rust (or other LLVM→RISC-V languages), build an ELF with the succinct toolchain, and use the SDK to execute, prove, and verify. No custom circuits; use Plonk or Groth16 proofs, recursion for aggregation, and precompiles to extend the zkVM.910## Core References1112| Topic | Description | Reference |13|-------|-------------|-----------|14| Overview | Program vs script, ELF, entrypoint, project layout | [core-overview](references/core-overview.md) |15| Program I/O | read, commit, SP1Stdin, public values | [core-program-io](references/core-program-io.md) |16| CLI and build | cargo prove new/build, project structure | [core-cli-and-build](references/core-cli-and-build.md) |17| Proving and verification | ProverClient, execute, setup, prove, verify | [core-proving-and-verification](references/core-proving-and-verification.md) |1819## Features2021### Proof formats and verification2223| Topic | Description | Reference |24|-------|-------------|-----------|25| Proof formats | Plonk, Groth16, compressed; bytes for Solidity | [features-proof-formats](references/features-proof-formats.md) |26| Recursion | Verifying proofs in the zkVM, aggregation | [features-recursion](references/features-recursion.md) |2728### Extending the zkVM2930| Topic | Description | Reference |31|-------|-------------|-----------|32| Precompiles | Adding custom chips (syscall, MachineAir, AIR) | [features-precompiles](references/features-precompiles.md) |3334## Best Practices3536| Topic | Description | Reference |37|-------|-------------|-----------|38| Workflow | Execute-only during dev, reuse client, crate layout, prover network | [best-practices-workflow](references/best-practices-workflow.md) |