Skudoko is a modern Sudoku platform for people who want more than a blank grid.
It combines clean puzzle play, progress tracking, daily competition, learning content, and AI Coach into one full-stack product. The goal is simple: help players think more clearly, solve with less guessing, and come back because every session feels premium.
Skudoko is built for the moment when Sudoku stops being just a time-killer and becomes a small daily thinking ritual.
Live app: skudoko.vercel.app
Backend API: skudoko-2mkd.vercel.app
Skudoko is a full-stack Sudoku web app with a polished product layer around the game itself.
At its core, it supports classic Sudoku gameplay:
- difficulty-based puzzle generation
- accurate solution checking
- keyboard and on-screen number input
- undo history
- candidate notes
- tips
- mistake tracking
- persistent game sessions.
Around that core, it adds the pieces that make the app feel like a real product:
- Account-based authentication and protected routes.
- Local-first game saving with backend sync.
- AI Coach that understands the current board, notes, tips, mistakes, and progress.
- Pro simulation with Pro badge, no ad placeholder, and unlimited tips.
- Game History with resume, rename, delete, completed-game view-only mode.
- Daily Challenge with timer, pause, penalties, one official attempt, and leaderboard.
- Blogs/learning section with free and Pro-gated Sudoku articles.
- Dark and light themes persisted locally.
- Vercel-ready frontend and backend deployment configuration.
Skudoko is designed for several kinds of Sudoku players:
| Player type | What Skudoko gives them |
|---|---|
| Beginners | A clean board, notes, tips, mistakes, and learning articles that make Sudoku less intimidating. |
| Casual players | Fast puzzle starts, saved progress, and a Daily Challenge reason to return. |
| Competitive solvers | Timer-based Daily Challenge results and leaderboard rankings. |
| Learners | Candidate mode, solution-backed feedback, and an AI Coach for board-aware guidance. |
| Product-minded users | A modern Sudoku experience with accounts, Pro status, history, persistence, and polish. |
Most Sudoku apps stop at the board. Skudoko treats Sudoku like a product experience:
- It helps users avoid random guessing by giving them notes, mistake feedback, tips, and educational content.
- It keeps progress safe across refreshes and devices through local-first saving and backend sync.
- It adds motivation through Daily Challenge and leaderboard.
- It creates room for future monetization through a Pro plan, AI Coach, premium articles, and ad removal.
The result is not just a puzzle clone. It is a small learning-and-competition platform wrapped around Sudoku.
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
- Difficulty levels: Easy, Medium, Hard, Extreme.
- Puzzle generation powered by
sudoku-gen. - Stored puzzle, current board, locked cells, and solution per session.
- Keyboard input and on-screen number pad share the same input logic.
- Candidate/Notes mode with a 3x3 mini-grid inside cells.
- Tip system with revealed cells, locked tip cells, tip badge, and Pro unlimited tips.
- Mistake count and tips-used count.
- Check Answer flow with toast feedback, completion state, and confetti.
- Completed games open in view-only mode.
- Local-first autosave for active games.
- Backend session storage per authenticated user.
- Resume unfinished sessions from History.
- Rename and delete saved sessions.
- Preserve undo history, candidates, tips, mistakes, difficulty, and completion state.
- Offline-safe pending sync behavior.
- Static backend-owned medium puzzle for the current challenge.
- One official attempt per user per challenge.
- Timer with pause/resume.
- Pure solving time plus penalties:
30 secondsper mistake.60 secondsper tip used.
- Completed attempts become view-only.
- Leaderboard ranks by lowest final time.
- Simulated Pro upgrade/cancel flow.
isProfield on the user account.- Pro badge on the profile button.
- Pro users do not see the ad placeholder.
- Pro users get unlimited tips.
- AI Coach access is Pro-gated on both frontend and backend.
- Static Blogs section.
- Free articles for beginners and routine building.
- Pro-only advanced strategy article.
- Locked state and Upgrade CTA for non-Pro users.
sudoko/
backend/
controllers/ API controllers
data/ Embedded Daily Challenge puzzle
db/ MongoDB connection
middleware/ Auth middleware
models/ User, GameSession, DailyChallengeAttempt
routes/ Auth, sessions, daily challenge, AI Coach
src/server.js Express app / Vercel export
frontend/
public/ Static public assets
src/
api/ API client helpers
components/ Shared UI/game components
context/ Auth and theme providers
data/ Static blog content
pages/ App routes
services/ Sync services
utils/ Sudoku, storage, tips, candidatesThis section is intentionally short because Skudoko is primarily a product demo, not a setup exercise.
git clone https://github.com/madiiar0/skudoko.git
cd skudokocd backend
npm install
cd ../frontend
npm installCreate environment files from the examples:
cp backend/.env.example backend/.env
cp frontend/.env.example frontend/.envBackend:
cd backend
npm run devFrontend:
cd frontend
npm run devPORT=5173
CLIENT_URL=http://localhost:1234,https://skudoko.vercel.app
MONGO_URI=mongodb+srv://user:password@cluster.mongodb.net/skudoko
JWT_SECRET=replace-with-a-long-random-secret
NODE_ENV=development
OPENAI_API_KEY=replace-with-your-openai-api-key
OPENAI_MODEL=gpt-4.1-miniVITE_API_BASE_URL=/apiFor production on Vercel, the frontend uses frontend/vercel.json to proxy /api/* to the deployed backend.
The project is prepared for two Vercel deployments:
| App | Root directory | URL |
|---|---|---|
| Frontend | frontend |
https://skudoko.vercel.app/ |
| Backend | backend |
https://skudoko-2mkd.vercel.app/ |
Backend production requirements:
- Use MongoDB Atlas or another hosted MongoDB URL. Localhost MongoDB will not work on Vercel.
- Set
NODE_ENV=productionso cookies are secure. - Set
CLIENT_URL=https://skudoko.vercel.app. - Set
JWT_SECRET. - Set
OPENAI_API_KEYif AI Coach should respond.
Skudoko was built around one product idea:
Sudoku should feel less like filling boxes and more like training a sharper way to think.
The current version already supports play, learning, persistence, competition, Pro identity, and AI guidance. Future growth could turn this into a deeper Sudoku learning platform with real subscriptions, richer courses, streaks, analytics, personalized coaching, and rotating daily puzzles.
The board is the center, but the product is the habit around it.






