Career AI Tools
Sharpen your engineering skills with real-world practice. Review pull requests, quiz yourself on codebases, and tackle daily project challenges.
Flagship
Review the PR
Practice code review on real pull requests from open-source projects. Read through diffs, leave inline comments with severity levels, and submit your verdict — then get AI-powered feedback on what you caught and what you missed.
Inline commenting
Scored rubric
Per-comment feedback
Start Reviewing
src/auth/middleware.py
41 token = request.headers.get("Authorization")
42- if token: return decode(token)
42+ if not token:
43+ raise AuthError("Missing token")
44+ return decode(token)
45
Your commentmajor
The original code silently returns None when there's no token — this change correctly raises an error early.
4 comments · Request ChangesScore: 87/100
GitHubAI quiz
Repo → questions → confidence
Know Your Repo
Turn any public GitHub repository into an interview-style quiz. We analyze the codebase and generate questions tailored to your role.
Get StartedWorks with any public repo
owner/repo
main2.1ksrc/ · tests/ · README.md
Analyze
Q: What does AuthBootstrap initialize?
Q: Where is caching handled for /projects?
Project of the Day
today · 2026-02-28
Calendar
February 2026
Selected
Has project