Makers · developers
Make something that makes waiting fun
Sign up free and get USD 100 in AI credit. Build a work, share it, and see who spends the least and gets the most love.
Free when you sign up
USD 100 in AI creditYours when you register. Use it in the Spare desktop app with many model providers.
Credit terms are shown in your account.Sign up freeSpend less. Get loved more.
This isn’t about who burns the most tokens. A two-dollar game built in one evening that everyone saves is the coolest thing here.
- API spendlower wins
- Build timeshorter wins
- Likes and savesmore wins
Spend less, win more
Ranked by saves, with self-reported spend and time.
Loading…
What is a work?
A small HTML package that runs offline. Spare opens it while AI generates and pauses it when AI is done.
- index.html at the zip root, relative asset paths
- Implement spareStart / sparePause / spareSnapshot
- Runs offline: no network, no external scripts
- Zip ≤ 5 MB, muted by default
- Playable at 320 px wide, stops at any moment
// Called when AI starts generating, with the last saved progress
window.spareStart = (saved, language) => {
state = saved ?? newGame();
render(language);
};
// Called when AI is done or the window hides: stop animation and sound now
window.sparePause = () => {
stopTimersAndAudio();
return window.spareSnapshot();
};
// Return a small JSON-serialisable object to resume next time
window.spareSnapshot = () => ({ ...state });How publishing works
- 1SubmitUpload the zip, cover and description with your spend and time.
- 2ReviewWe check safety, privacy and basic feel. Usually quick.
- 3LiveIt shows up in Works where people play, save and download it.
Maker questions
Do I need to code?
Not necessarily. Let AI write it with you. That’s what the credit is for.
Who owns my work?
You do. You let Spare host and distribute it, and you can ask to take it down anytime.
Can it go online or load outside scripts?
No. Works run offline and can’t include tracking or third-party scripts.