Anyone can say they use AI.This proves what you can build with it

A vendor and framework neutral certification for software professionals who can design, build, and deliver production-ready software with AI.

from$125Preorder price

The lowest price it will ever be.

№ C1-____Issued ____ 2026

Certificate of Competence in

AI-Native Development

is hereby granted to

Elaine Marley

Alex Garrett-SmithExamination Board LeadAlex KyriakidisCertificates.dev CEOQR code linking to the certificates.dev verification pageScan to verify

Be one of the first AI-certified developers in the industry.

10,000+ developers and 680+ companies already certify with certificates.dev

MicrosoftGoogleAmazonIBMSamsungAdobeCiscoDellMercedesSiemensVerizonDeloitteAccentureInfosysFujitsuDHLCoca-ColaUbisoftPearsonSquareFox

Teams building with AI don't need more code. They need developers they can trust to make the best production decisions.

This is the credential that proves you can...

Direct AI like a senior

Orchestrate AI agents like an engineering team. Give them direction, set the constraints, and know when to take the wheel.

Move at AI speed

Move at AI speed without sacrificing engineering quality. Turn AI output into production-grade software through rigorous review and refinement.

Architect the system

Build the architecture AI works inside. Define the boundaries, interfaces, and constraints that keep complex systems coherent.

Own the outcome

Make the critical decisions, validate the result, and take responsibility for what reaches production.

Ship it secure

Build with AI without compromising security. Threat-model the system, challenge risky output, and engineer for safety from the start.

Reason through the unknown

The hardest problems still come down to your reasoning. Debug the unknown, weigh the tradeoffs, and find the path forward.

Turn what you can do with AI into leverage for promotions, job offers, and higher pay.

The journey to certified

Step01

Everything it takes to direct AI like a senior, mapped for you

A path that builds from foundations to advanced practice, and that depth is what stands behind the credential.

Foundations4 areas
Practitioner4 areas
Advanced7 areas
See the full competency map

Foundations

01How AI Coding Tools Work5 topics

The working mental model of how a language model turns your input into code, without the mathematics. You cannot reliably direct what you do not understand.

1.1

Language models as code generators

  • Tokens and tokenization
  • Next-token prediction and autoregressive generation
  • The practical meaning of a probability distribution over the vocabulary
  • Why the useful mental model is a capable pattern-completer, not a reasoning oracle or a database
1.2

Training, inference, and knowledge

  • The difference between training and inference
  • What a model actually knows, and what it does not
  • The knowledge cutoff, and why the model may not know a library version, API change, or framework released after it
1.3

The context window

  • What it is, and why it functions as the model’s working memory
  • Everything the model can reason about right now lives inside it
  • Why what you put in, and leave out, changes the output
1.4

Reasoning models versus standard models

  • What thinking or extended reasoning means in practice
  • How reasoning models differ in behaviour
  • When each type is the right choice for a task
1.5

Determinism and variability

  • Why the same prompt can produce different output on different runs
  • What temperature controls
  • Why temperature zero does not guarantee identical results in production
02Capabilities, Limits & Failure Modes4 topics

The professional’s calibrated sense of what AI can be trusted with, and where it reliably fails. The founding principle: AI output is an artifact to verify, not an authority to trust.

2.1

Hallucination

  • What it is, plausible, fluent, confident output that is simply false
  • Why next-token generation produces it
  • Why fluency and confidence are not evidence of correctness
2.2

Characteristic failures in code

  • Hallucinated packages, APIs, and methods that do not exist
  • Reversion to outdated patterns even when given current information
  • Being confidently wrong
  • Sycophancy, agreeing with a flawed premise rather than correcting it
2.3

Where AI excels and where it struggles

  • Strong at boilerplate, exploring unfamiliar code, translation, first drafts, and well-specified bounded tasks
  • Weak at novel architecture, deep project-specific context, and correctness at scale
  • Weak at anything requiring lived experience of what breaks in production
2.4

Reading the evidence honestly

  • How to interpret coding benchmarks, and their limits
  • Why no single model is categorically best
  • The productivity paradox, where measured output can diverge from how fast the work feels
03The Tool Landscape & Model Selection4 topics

The map of the tools by category, and how to choose the right one for the job rather than the loudest one.

3.1

Modes of assistance

  • The distinct categories, autocomplete, chat assistants, inline edit, AI-native IDEs, and autonomous agents
  • What each is for, and what changes as you move up
3.2

The autonomy ladder

  • Levels of autonomy, from suggestion to full delegation
  • Why higher is not always better
  • Why matching the autonomy level to the task is a judgment call, not a ranking
3.3

Choosing a model for a task

  • The axes that matter, capability, reasoning, speed, cost, context-window size, tool-use reliability, and multimodality
  • Keeping more than one model in rotation, and routing each task to the one that handles it best
3.4

Deployment and data posture

  • The practical differences between a consumer app, an API, and an IDE integration
  • What each means for where your code and data go
04Communicating Intent: Prompting5 topics

The first practical skill, getting from what you mean to reliable output. Foundational, but a floor, not a ceiling; it becomes context engineering next.

4.1

Anatomy of an effective coding instruction

  • Specificity, explicit constraints, and clear acceptance criteria
  • The clarity heuristic, if a colleague with minimal context would be confused, so will the model
  • Stating exactly what the output must contain
4.2

Context and examples

  • Supplying the right context
  • Using examples well, start with one and add more only when the output misses
  • When examples help, and when they are unnecessary
4.3

Planning prompts

  • Asking for a plan before code, the single highest-leverage prompting move
  • Decomposing a task
  • Asking the model to state its assumptions, flag uncertainty, and compare alternatives
4.4

Reasoning models versus standard models

  • Brief, high-level goals for reasoning models; explicit, detailed instructions for standard ones
  • Why think step by step is unnecessary for a model that already reasons internally
4.5

Iteration and anti-patterns

  • Refining versus restarting a derailed thread
  • Common anti-patterns, vague requests, over-stuffed prompts, and conflicting instructions
  • Outdated techniques such as heavy role-play and tag-scaffolding on modern models

Practitioner

05Context Engineering6 topics

The deliberate construction of what the model sees, the discipline that ultimately bounds output quality. By developer demand, among the most important competencies in the field.

5.1

The context window as a budget

  • Context as a finite resource with diminishing returns, an attention budget every token draws down
  • Context rot, where quality degrades as the window fills, and a bigger window does not fix it
  • The goal, the smallest set of high-signal tokens that does the job
5.2

Curation

  • What to include, and what to exclude
  • Why less, well-chosen context beats more
  • Why how information is structured and presented matters, not merely whether it is present
5.3

Retrieval and codebase context

  • File references and mentions
  • Retrieval-augmented generation for code
  • Embeddings and semantic code search
  • Codebase indexing and repository maps
  • Just-in-time retrieval versus pre-loading, and the hybrid that often wins
5.4

Rules, instructions, and memory

  • Project rules and memory files, CLAUDE.md, AGENTS.md, .cursorrules, Copilot instructions
  • Writing effective rules, scope, size, and why bloated files lose adherence
  • The personal, repository, and organization layers
  • Persistent memory and state across sessions
5.5

Connecting external context (MCP)

  • What the Model Context Protocol is, and the problem it solves
  • The client-server model, servers exposing data, tools, and workflows
  • When to reach for MCP versus a rules file versus retrieval
5.6

Session management

  • Compaction and summarization, automatic and manual
  • Recognizing when to start a fresh session instead of continuing
  • Sub-agents and context isolation, keeping a long task’s noise out of the main window
06Requirements, Specs & Intent4 topics

Moving the work upstream. When generation is cheap, knowing precisely what to build is where the leverage and the errors concentrate, and what makes agent output reliable rather than merely plausible.

6.1

Requirements with AI

  • Using AI to discover and clarify requirements
  • Detecting ambiguity, missing cases, and unstated assumptions before any code exists
6.2

Acceptance criteria

  • Turning requirements into testable criteria
  • Functional versus non-functional requirements
  • Constraints and business rules as first-class inputs
6.3

Specification-driven development

  • The specification as a contract shared by humans and agents
  • Spec-first versus spec-as-source rigour
  • Executable specifications
  • Preventing implementation drift, and traceability from spec to code to test
6.4

Why specs matter more with agents

  • A vague instruction makes an agent faithfully build the wrong thing; a precise spec is the steering
  • Catching the feature executed perfectly that is still not what was needed
07Architecture & System Design with AI5 topics

Using AI in design while remaining the accountable decision-maker, and shaping the codebase so AI can work in it safely. Where AI helps least autonomously and the stakes are highest.

7.1

AI as a design partner

  • Generating design proposals, alternatives, and tradeoff analysis
  • Pressure-testing an approach
  • Producing architecture decision records
7.2

Decisions and accountability

  • Which decisions must remain human, and why
  • How to judge an AI’s architectural proposal rather than accept it
  • Owning the shape of the system
7.3

Coherence at scale

  • Holding a consistent architecture across many AI-made edits
  • Working in large codebases and monorepos with AI
  • Preventing the slow drift of many local changes
7.4

AI-legible codebases

  • The repository as an interface to the AI
  • Structure, naming, modularity, and boundaries an agent can navigate
  • Documentation, conventions, and path-specific instruction files as part of the architecture
7.5

Legacy modernization

  • The disciplined path for legacy systems, understand, document, characterize with tests, migrate, verify, not a blind rewrite
  • Framework migrations
08The AI-Assisted Implementation Workflow5 topics

The disciplined daily practice of building with AI as a collaborator rather than a code vending machine. The most-used competency, and the one that separates reliable engineers from vibe coders.

8.1

The build loop

  • The loop, understand, plan, generate, inspect, run, test, evaluate, correct
  • Why this beats prompt, copy, paste, ship
8.2

Codebase comprehension

  • Using AI to understand unfamiliar code
  • Tracing data flow and mapping dependencies before changing anything
8.3

Making changes

  • Small bounded changes versus multi-file changes
  • Refactoring with AI, and migrations
  • Keeping scope and momentum without losing the thread of what changed
8.4

Mode selection in practice

  • Choosing autocomplete, chat, inline edit, or an agent per task
  • Recognizing the moment to stop delegating and take over yourself
8.5

Vibe coding, in its place

  • Validating by outcome rather than reading the code
  • Where it is acceptable, throwaway and exploratory work
  • Why it is not the professional standard for anything that ships

Advanced

09Agentic Coding & Orchestration8 topics

Directing autonomous and multi-agent workflows, where the largest gains and the largest risks both live. The defining advanced competency.

9.1

What makes a tool agentic

  • The agent loop, observe, plan, act, call a tool, read the result, iterate, and stop
  • Why the ability to run code, not just write it, is the dividing line
9.2

Directing a single agent

  • Plan-then-execute, read-only exploration then a plan you approve before execution
  • The delegation contract, a clear objective, output format, tool guidance, and boundaries
  • Reviewing the plan, not only the diff
  • Knowing when to intervene, and when to stop the agent
9.3

Guardrails and permissions

  • Allow, ask, and deny models matched to an action’s blast radius
  • Sandboxing and least privilege
  • Per-tool-use approval versus a single upfront plan approval
9.4

Tool use

  • Tool and function calling, and tool schemas
  • Read-only versus write tools
  • Handling tool failures
  • Why giving an agent the right tools is itself a design task
9.5

MCP for agents

  • MCP as the way agents act on the outside world, not just read context
  • Evaluating and trusting an MCP server
  • Building your own server, in concept
9.6

Multi-agent and parallel work

  • Orchestrator-worker architectures
  • Running agents in parallel, isolated with git worktrees
  • Sub-agents for context isolation
  • Background, asynchronous, and cloud agents
  • Judging when multi-agent genuinely helps, and when it merely multiplies cost
9.7

Customizing your agent

  • Custom commands
  • Hooks for validation and automation
  • Packaging repeatable know-how as reusable skills
9.8

Reliability and cost

  • Non-determinism, retries, timeouts, partial completion, and runaway loops
  • Thinking in cost per successful task, not cost per request
  • Concentrating review on the plan and the research, because errors propagate from a bad plan
10Testing, Verification & Evaluation4 topics

Proving AI-built software is correct, the counterweight to cheap generation, and the domain where the lesson that passing tests is not correctness lands.

10.1

Generating tests with AI

  • Unit, integration, and end-to-end tests
  • Test-driven development with agents, write the tests and let the agent make them pass
  • Using a test suite as an agent’s guardrail and feedback loop
10.2

Test quality

  • Meaningful tests versus tests that merely pass
  • The risk of AI writing tests that assert nothing or quietly cheat
  • Coverage read honestly
  • Property-based testing and fuzzing with AI
10.3

The verification stack

  • The escalating ladder, read the output, run it, run tests, static analysis, security analysis, acceptance checks, integration testing, production monitoring, human approval, continuous evaluation
  • The more irreversible the action, the stronger the verification must be
10.4

Evaluating AI output and agents

  • Moving from did it run to is it right, task success and graders
  • Regression evaluation for agent workflows
  • Why passing a test suite, or a benchmark, does not prove the solution is correct
11Debugging & Diagnosis3 topics

Finding and fixing defects with AI through evidence rather than guesswork, including defects in code you did not write yourself.

11.1

Evidence-based debugging

  • The loop, hypothesis, experiment, evidence, conclusion, not a guessed fix
  • Feeding the model the right evidence, errors, logs, and stack traces
11.2

Root cause

  • Reproducing a bug before fixing it
  • Distinguishing symptom from cause
  • Recognizing and breaking an AI debugging loop when the model thrashes on plausible non-fixes
11.3

Production and systems

  • Using observability data with AI
  • Distributed and production debugging
  • Agentic incident investigation
12Code Review, Quality & Judgment4 topics

Reviewing AI-generated code critically and holding quality, the durable human edge. In an AI-assisted team the pull request becomes the human verification boundary.

12.1

Reviewing AI code

  • Reading code faster than writing it, and reading it skeptically
  • What to inspect specifically, assumptions, side effects, error handling, security, and edge cases
  • Spotting hallucinated APIs, and the change that compiles and quietly does the wrong thing
12.2

Trust calibration

  • Deciding when to trust, and when to verify
  • The pull request as a verification boundary
  • Reviewing large AI-generated diffs without rubber-stamping them
12.3

Standards and debt

  • Holding standards and architectural consistency across AI edits
  • Recognizing and paying down the technical debt that fast generation accumulates
12.4

Judgment and ownership

  • Taste, experience, and the willingness to own the outcome, the parts AI does not supply
  • Confident, honest calibration, where stating uncertainty is worth more than a confident miss
13Security, Privacy & the AI Supply Chain5 topics

The two security problems AI introduces, unsafe code it generates and attacks on the AI system itself. A horizontal concern that touches every other domain, treated here in depth.

13.1

Security of AI-generated code

  • The vulnerability classes AI reliably ships, injection, auth bypass, leaked secrets, and unsafe deserialization
  • Reviewing AI code specifically for security
  • The OWASP Top 10 for LLM applications, applied to coding work
13.2

Prompt injection

  • Direct and indirect injection
  • Injection through content an agent reads, web pages, files, and tool output
  • Defenses, and handling untrusted input to an agent
13.3

The AI supply chain

  • Hallucinated and typosquatted packages, and dependency confusion
  • Verifying dependencies an AI adds
  • Malicious MCP servers and skills as a new supply-chain surface
13.4

Secrets and data

  • Not leaking secrets or proprietary source to a model
  • Data retention and training policies across consumer apps, enterprise plans, and APIs
  • Local and private models for sensitive work
13.5

Securing agents

  • Permissions, least privilege, and sandboxing in depth
  • Excessive agency, and how to bound it
  • Auditing what an agent actually did
14Shipping & Operations4 topics

Completing the lifecycle, taking AI-built software through delivery and operations, with autonomy that tightens as actions become irreversible.

14.1

Delivery

  • AI in CI/CD pipelines
  • Automated AI code review in pull requests
  • Automated dependency and vulnerability fixing
  • Infrastructure-as-code and configuration with AI
14.2

Git and collaboration

  • Commit messages, PR descriptions, and branching with AI
  • Reviewing large diffs, and tracking change provenance
  • Reverting AI changes cleanly
14.3

Documentation

  • Generating and maintaining docs, ADRs, changelogs, and release notes
  • Why documentation generated from wrong code is worse than none
14.4

Operations

  • Log and metric analysis, incident response, and runbooks with AI
  • Agent observability, capturing prompts, tool calls, and steps, to answer why the agent did that
  • The irreversibility-to-approval rule, applied to deployment
15Team & Organizational Practice4 topics

Scaling AI development from the individual to the team and the organization, and situating your own evolving role. Individual fluency does not automatically become organizational capability.

15.1

Shared practice

  • Shared instructions, skills, and MCP servers
  • Onboarding a team to AI-assisted development
  • The personal, repository, and organization instruction layers
15.2

Governance

  • Approved tools and data classification
  • IP and licensing of AI-generated code
  • Provenance and human-approval boundaries
  • Writing an AI usage policy that enables rather than blocks
15.3

Measuring impact

  • Frameworks such as DORA and SPACE applied to AI-assisted teams
  • Measuring outcomes rather than output volume
  • Reading the real evidence, including that AI can make work feel faster while measuring slower
15.4

The professional’s role

  • The shift from writing code to specifying, directing, and verifying it
  • Skill atrophy and over-reliance, and when not to use AI
  • The ethics and responsibilities that come with it
  • Staying current as the frontier keeps moving

Step02

Optional training

Extra training if you want it. Take it at your own pace with self-study, or join the Live Bootcamp led by Alex Garrett-Smith.

Step03

The exam

135 minutes of questions and pure execution, scored across six domains of judgment, the final call always human. Take it whenever you are ready, the voucher is valid three years.

Come out a better engineer. Leave with the certification to prove it.

The proving ground

The exam is real work you direct. Here is one question from it.

q_01.exam · context engineeringMCQ example

Deep into a long agent session, its code turns sloppy and it forgets constraints you set earlier, and you are nowhere near the context limit. What is actually going wrong?

That was a multiple-choice question, one part of the exam. The other part is hands-on work in real code, the way it happens on the job.

The environment
A real codebase with its history, tests, and debt. Your agent, your pick of frontier models, no new tool to learn.
Scored

Every move, across all six domains, end to end.

  1. 01Context engineering
  2. 02Agent direction
  3. 03Architecture & system design
  4. 04Review & verification
  5. 05Security & risk
  6. 06Debugging & diagnosis
Verified
Proctored and human-certified. AI reads the whole session at a depth no human panel could afford, and a human expert signs off.
any tool · any model
same exam · every stack

It doesn't reward memorization. It rewards the calls you make on real code.

Built by BitterBrains & certificates.dev

2,000,000+Developers trained
10,000+Certified developers
680+Companies certifying
Six certification tracks

The people behind every certificate

  • Alex KyriakidisAlex KyriakidisFounder and CEO of BitterBrainsSits on every certification examination board
  • Evan YouEvan YouCreator of Vue.jsSigns every Vue certificate
  • Aurora ScharffAurora ScharffReact Expert, Microsoft MVPShaped the React cert, lead instructor and board member
  • Alex Garrett-SmithAlex Garrett-SmithTechnical Education Lead, BitterBrainsExamination Board Lead · certificates.dev
  • Alain ChautardAlain ChautardGoogle Developer Expert in Web TechnologiesLeads the team building the Angular exam
  • Sébastien ChopinSébastien ChopinCreator of NuxtDevelops the Nuxt track
  • Mostafa SaidMostafa SaidDirector of Education, BitterBrainsContributes across every certification
  • Daniel KellyDaniel KellyLead Vue School InstructorExamination board member
  • Eduardo San Martin MoroteEduardo San Martin MoroteVue core team, creator of Pinia and Vue RouterReviews the Vue certification
  • Steve McDougallSteve McDougallLaravel and API consultant, PHP-FIG committeeAuthored the Laravel certification
  • Matteo CollinaMatteo CollinaNode.js TSC member, CTO at PlatformaticJavaScript examination board member
  • Martin FerretMartin FerretFull-stack JavaScript senior developerJavaScript examination lead
  • Daniel RoeDaniel RoeNuxt core team lead
  • Reza BaarReza BaarFull-stack software engineerNuxt examination lead
  • Cory HouseCory HousePrincipal at reactjsconsulting.comEndorses the React certification
  • Devlin DuldulaoDevlin DuldulaoReact Expert, creator of DaloyJSExamination board member
  • Abdelrahman AwadAbdelrahman AwadGoogle Developer Expert in Web TechnologiesExamination board member
  • Jad JoubranJad JoubranGoogle Developer Expert, JavaScript and web performanceContributes to the JavaScript certification
  • Haimantika MitraHaimantika MitraDeveloper Advocate at DigitalOcean, ex MicrosoftJavaScript board advisor
  • Nathan WalkerNathan WalkerDeveloper Expert for NativeScriptJavaScript board advisor
  • Igor RandjelovicIgor RandjelovicCreator of nativescript-vue
  • Yannick KupferschmidtYannick KupferschmidtTeam Lead PHP at byte5Laravel practitioner-reviewer
  • Roberto GalleaRoberto GalleaPhD Computer Science, University of PalermoLaravel practitioner-reviewer
  • Niek KeijzerNiek KeijzerLaravel developer at Goedemiddag!Laravel practitioner-reviewer
  • Oleksii KovbasaOleksii KovbasaDevelopment team lead at Red ChameleonLaravel practitioner-reviewer

We certify experts in

MicrosoftGoogleAmazonSamsungIBMAdobeCoca-Cola
+ hundreds more

Get certified as an AI-Native Developer

Not just a credential. It's where you find out where you really stand, push past it, and see what you can do with this kind of power. The proof is what you leave with.

Exam Only
was $250 $125

50% off

The credential on its own, for people who will prep their own way.

  • AI-Native Developer exam voucher135 supervised minutes of questions and pure execution, examined by AI and certified by humans.
  • Prep guideYour map of all six exam domains, worked exam items, the real scoring mechanics, and a field guide to the failure patterns that ship when nobody owns the review.
  • Discord communityThe same room as every other candidate and the team, open from the day you buy.
  • Live onboarding and a Q&A with Alex G, for preorder buyersA live session covering onboarding into the platform, plus open Q&A with Alex G. It is included for preorder buyers, and the date is announced once the preorder closes.

Recommended

Exam + Preparation
was $450 $245

45% off

The exam plus the training built for it. The plan most people should pick.

  • AI-Native Developer exam voucher135 supervised minutes of questions and pure execution, examined by AI and certified by humans.
  • Prep guideYour map of all six exam domains, worked exam items, the real scoring mechanics, and a field guide to the failure patterns that ship when nobody owns the review.
  • Discord communityThe same room as every other candidate and the team, open from the day you buy.
  • Self-guided training platform, hands-on exercises and quizzes throughoutYou train at your own pace in every format the exam itself uses, decks of judgment calls, stakeholder simulations, drills where you grade AI transcripts, and labs where you review code with planted traps.
  • One free retakeOne free retake included, so missing the exam once costs you nothing to sit it again.
  • Full supervised trial exam, unlimited runs before the one that countsThe exact same environment and format as the real exam, no certificate attached, and you take it as many times as you need, so exam day isn't the first time you've seen it.
  • Live onboarding and a Q&A with Alex G, for preorder buyersA live session covering onboarding into the platform, plus open Q&A with Alex G. It is included for preorder buyers, and the date is announced once the preorder closes.
Exam + Preparation + Bootcamp
was $1,200 $745

37% off

Everything in the middle plan, plus the Live Bootcamp.

  • Everything in Exam + PreparationEverything the middle plan includes, the exam, the prep guide, the Discord community, the self-guided training platform, the trial exam and its free retake.
  • Three-week Live Bootcamp with Alex G, from Sep 14Two live sessions a week, a Workshop and a Live Lab, across the three training weeks. Alex G is on Discord daily.
  • Every live session recorded and yours to keepMiss a session and it is waiting for you. The recordings stay in your dashboard.
  • Live onboarding and a Q&A with Alex G, for preorder buyersA live session covering onboarding into the platform, plus open Q&A with Alex G. It is included for preorder buyers, and the date is announced once the preorder closes.

Preorder Specials

Preorder today and get these founding benefits.

  • Early access to prep and training

    The prep guide and self-paced platform reach you before general release.

  • Be one of the first certified

    Early access to the exam, and your name among the first to hold it.

  • The lowest price it will ever be

    Founding pricing, and it only climbs from here as seats fill.

  • An exclusive onboarding workshop

    A live onboarding session and open Q&A with Alex G, for preorder buyers.

  • Back the project you're joining

    Your preorder helps fund building the certification itself.

100% secure checkout via Chargebee

Apple PayGoogle PayVisaMastercardPayPal
30-day money-back guarantee

For teams. Add seats directly on any pricing card above, the price adjusts as your team grows. For custom needs, a larger rollout, or procurement requirements a toggle can't handle, reach out and we'll work it out with you directly.

Talk to us about your team

Buying for yourself but need sign-off? We already wrote the note for your manager, send it as is or edit it first.

Here's what they say about the certifications we already run

4.6105 reviews on Trustpilot

"Even as a seasoned developer with more than 10 years experience, I've learned a bunch that I didn't know and it deepened my understanding of the technology I became certified for."

Jeremie LitzlerVue and JavaScript certified

"The exam content was well-structured and closely aligned with real-world React development scenarios, which made it feel practical and valuable rather than just theoretical."

Alonso Ugalde AguilarReact certified

"The clear progression helps developers understand what they should master at each stage and provides a way to demonstrate that expertise to employers."

Amari MecheriReact certified

"Having an external entity evaluate your knowledge is valuable, as it helps you confirm whether you truly understand the concepts beyond your own perception."

Blanca EscamillaAngular certified

"The curriculum description was accurate, the website worked fine and the proctoring system adds a level of trust to the certification."

StephenVue certified

"I highly recommend this certification for individual developers and companies. It serves as a great way to formalize a knowledge base within organizations and effectively evaluate developers' expertise."

Vira LekhmanAngular certified

Read 100+ reviews on Trustpilot

FAQ

The Certification
Is this actually rigorous, or another AI badge?

It's a supervised examination with ID and biometric check-in, 135 minutes of questions and pure execution, in a live sandboxed codebase, scored collaboratively by AI examiners and human experts, with the final call on every result belonging to the human.

There's no question bank to leak, because every sitting generates fresh. The one thing you can't do here is pass on recognition alone.

What is the AI-Native Developer Certification?

A hands-on AI certification for software developers. You direct an AI agent through a live codebase, and every prompt you write is part of your answer.

It measures the judgment you wrap around AI, what you send it in to do, what you accept, and what you push back on, in whatever stack you already work in. It isn't proof you can use the tools, it's proof you can direct them.

Do I need to be senior to pass this?

No. Competence is the gate, not tenure. The exam proves judgment at whatever level you're exercising it, and the people on our waitlist span the full range of experience almost evenly.

Can I use AI during the exam?

You're required to. Directing it well is the entire thing being examined.

What does "AI-examined, human-certified" mean?

It's the division of labor on your certificate, said plainly.

Three AI examiners read every answer independently, from different model families, at a depth no human panel could afford. A board of working developers holds the final signature, and a human expert reviews every fail before it's issued.

The machines bring the scale, the people put their names on the result, and neither alone would be worth printing on paper.

What's in the score report?

Not a number. A six-domain profile with receipts, every scored claim linked to the exact transcript moment it came from, including where you caught the planted issue and where you missed one. A calibration index shows whether your confidence matched your accuracy.

There's also a hiring-manager view of the same scores, written as plain trust statements like "can be trusted to review agent-written changes before they reach production", built to be read in thirty seconds by someone who wasn't in the room.

A fail gets the same document, which makes it a retake study plan rather than a rejection letter.

Will employers actually recognize a brand-new cert?

The issuer is the recognition.

  • 10,000+ developers and 680+ companies already certify with certificates.dev
  • Our exams hold 4.6 on Trustpilot from named, verifiable reviewers, across 100+ reviews
  • The Vue track is officially endorsed by Vuejs.org, with Evan You signing every certificate himself
  • Every track was built and reviewed by named experts, Google Developer Experts, Microsoft MVPs, and open-source creators

The AI certification adds a score report an employer can actually read, plain trust statements with the evidence linked underneath.

The Plans
What's the difference between the three plans?

Three ways in. The exam on its own, the exam plus the self-paced training built for it, or that plus the three-week Live Bootcamp.

Exam only is the credential and the prep to pass it, the exam, the prep guide, and the Discord. Exam plus Preparation adds the training platform, a free retake, and an unlimited trial exam, and it's the plan most people should pick. The full program adds the Live Bootcamp with Alex G on top.

What happens right after I buy?

Community access, the playbook "Prove Your AI Skills", and your onboarding roadmap land the day you join, not the day the platform opens. The prep guide and the self-paced training platform follow, and on the full program your Live Bootcamp with Alex G is on the calendar.

What is the three-week Live Bootcamp?

Three weeks live with Alex Garrett-Smith, Technical Education Lead at BitterBrains and Examination Board Lead for this certification. It comes with the full program.

Six live sessions, two a week. About four hours live per week, plus roughly an hour a day between sessions. Every session recorded and yours to keep.

About 80% of it is hands-on, drill decks, sandbox labs, real codebases, trying the moves yourself under feedback until the judgment is actually yours.

Risk and Guarantees
How does the refund window work?

It runs from the moment you buy until 30 days after the exam launches, not 30 days from purchase. Buying now, before the exam is live, carries no risk, and you decide after you've seen the real thing, not before.

Sitting an exam ends it. That's the rule we've always run, you can't take the exam and then ask for the money back.

To request a refund, email team@certificates.dev. A refund happens from a single message.

What if I fail?

Every plan except the exam-only door includes a free retake, and the pass assurance makes it automatic. Sit the exam, miss, and your retake is already yours, no case to make.

Failing doesn't trigger the money-back guarantee, it triggers this instead, and it holds whether or not your refund window is still open. A miss is covered either way.

The score report you get is the study plan for the second attempt. The exam is designed to be passed by capable engineers who prepare.

Does a failed attempt show up anywhere?

No. Nothing shows on your profile, and there's no page anyone can look up to see that you sat the exam and didn't pass. The attempt is kept private so the bar can stay high.

Payment and Logistics
How long is my exam voucher valid?

3 years from your purchase date, the same as our other certifications. There's no rush, you can sit whenever you're ready inside that window.

Do you offer regional pricing?

Yes. A US sticker price isn't the same real cost everywhere.

If you're browsing from one of about 134 eligible countries, you'll see a regional pricing option on the pricing cards, applied by default across every plan. Turning it off reverts to the global rate for comparison.

The discount is tied to sitting the exam from that same eligible country, not just buying from it.

Can I buy for a team?

Yes. Seats can be added directly on the pricing cards and the price adjusts as your team grows, with volume rungs from 5 seats.

For a larger rollout, procurement requirements, or anything a toggle can't handle, email team@certificates.dev and we'll work it out with you directly.

Get certified on the best terms

During the preorder, the AI-Native certification costs the least it ever will. You get early access to the prep guide and the hands-on training as each piece ships so you come out a sharper engineer and walk into the exam ready. Pass it, and take your place among the first developers certified.

from$125Preorder price · save 50%Offer closes

Not ready yet? Email me this page