From idea to a live Solana app.In one tab.

Describe it or pick a template. Brik builds, tests, and deploys it while you watch. No Rust, Anchor, or Solana setup required.

Follow on X

No signup · No local setup · Unlimited test SOL

tip-jar · localnetready
#[program]
pub mod tip_jar {
    pub fn send_tip(
        ctx: Context<SendTip>,
        amount: u64,
    ) -> Result<()> {
        let jar = &mut ctx.accounts.jar;
        jar.total = jar.total.checked_add(amount)?;
        Ok(())
    }
}
Agent
Read the project and plan the change
Write the send_tip instruction
anchor build · finished in 14.2s
Tests passing 3/3
Deployed to the local validator
$ anchor build
Finished release [optimized] in 14.2s
$ anchor deploy
Deploy success · 7xKX…gAsU
LocalnetWallet 1000 SOLProgram live

Everything a Solana project needs, already running.

A workspace, not a sandbox

Rust, Anchor, the Solana CLI, and Node are installed before the page finishes loading. Your terminal is a real terminal.

rustc 1.86.0
solana-cli 2.1.5
anchor-cli 0.31.0
node 22.14.0

An agent that runs the project

It edits files, runs the build, reads the failure, and tries again. Every claim it makes is backed by a command you can read.

error[E0308]: mismatched types
↳ jar.total expects u64, found u32
edit programs/tip-jar/src/lib.rs
retry · build complete

A chain of your own, then devnet

Every workspace runs its own Solana validator, so SOL is unlimited and deploys are instant. Push to devnet when you want a URL to share.

brik.dev/p/tip-jar
Program 7xKX…gAsU
Live · 41 forks

Your code stays yours

Git is wired in from the first commit. Push to your own repo, clone it locally, or walk away with the whole project.

$ git remote -v
origin git@github.com:you/tip-jar.git
$ git push
main → origin/main

The agent stops on evidence, not on a claim.

  1. Write

    It reads the project first, then edits the files the change actually touches.

  2. Test

    Tests run on every change. A red suite stops the loop, it does not get explained away.

  3. Build

    anchor build runs for real. The compiler output is the evidence.

  4. Deploy

    Instant deploy to the workspace validator, then devnet when you want to share it.

Every template starts already building.

Tip jar

Accept SOL tips with an on-chain total and a public page.

ANCHOR · NEXT.JS

NFT mint page

A one-page mint for your collection, wallet connect included.

ANCHOR · METAPLEX

Token-gated site

Content that unlocks when the visitor holds your token.

NEXT.JS · DAS

USDC checkout

Take USDC payments with confirmations you can verify.

NEXT.JS · SPL

Almost open.

No signup, no local setup, and a working app about five minutes after you start.