logo
|
Always follow your heart and do things that makes you happy

Anthropic Certification Preparation

Preparing for Anthropic's Claude certification exams, I wanted a way to practice that actually matched how the real exams work with weighted domains, scenario-based questions, multiple-choice and multiple-response formats, instead of just running through a generic flashcard deck. So I decided to build myself a dedicated study app.

This is also one of the clearest examples of what I described in AI Agent Partnership: I acted purely as the product owner here. I described what I wanted, the agent wrote every line of code, and for this case of learning I intentionally not to opened the source to review it, I just installed it, ran through practice exams, and reported back what felt off or what needed to change. For a low-risk, personal study application like this, that hands-off approach worked perfectly.

However being hands-off with the code didn't mean being hands-off with the direction. I still had a pretty clear idea of what I wanted the product to be. From the start, I wanted the app to run entirely locally and work across platforms. Personal data needed to be encrypted at rest, and I wanted proper user accounts from day one. That might sound like overkill when I'm the only person using it right now, but I wanted to build in a way that it would still be easier if I ever decided to deploy it for other people.

I was also quite specific about the core stack: Next.js and TypeScript. For the local version, SQLite was perfectly fine, but I wanted the architecture to leave room for moving to a proper server database later, like PostgreSQL, MySQL, or whatever makes the most sense at that point.

Beyond those boundaries, I deliberately stayed out of the implementation details. I defined what I wanted the product to be and the constraints that mattered to me, then let the agent figure out how to wire everything together.

/posts/anthropic-cert-prep/001-Create-account.webp

Create account

/posts/anthropic-cert-prep/002-Exam-overview.webp

Exam overview

/posts/anthropic-cert-prep/003-Statistics.webp

Statistics

/posts/anthropic-cert-prep/004-Exam-trial.webp

Exam trial

Features
Multi Program CoverageCovers all of Anthropic's Claude certification programs in one app, not just one exam - Associate, Architect (Foundations and Professional), and Developer.
Exam StructureEach program mirrors its real exam's structure, weighted domains or drawn scenarios, instead of one fixed set of questions.
Randomized Question BankQuestions are pulled randomly from a larger question bank on every attempt, so no attempt looks the same and I can't just memorize an order.
Question TypesSupports both multiple-choice and multiple-response questions, matching the real exam's formats.
Local & Encrypted AccountsPersonal details (name, email, PIN) are encrypted.
Technical Details
Initial StartedSeptember 14, 2026
PlatformElectron
FrontendNext.js
LanguageTypescript
StylingTailwind CSS
DatabaseSQLite (via node:sqlite)