Verified reference, updated 2026-05-16

GitHub Agentic AI Certification (GH-600), the verified reference

Six skill domains. One hundred and twenty minutes. A passing score of seven hundred. A beta discount that closes May 31, 2026. General availability in July 2026. Most pages writing about this credential repeat the announcement and skip the numbers. This page is the numbers.

M
Matthew Diakonov
7 min read

Direct answer, verified 2026-05-16

The GitHub agentic AI certification is GitHub Certified: Agentic AI Developer, earned by passing Exam GH-600. It is a role-based, intermediate-level credential maintained by GitHub and delivered by Microsoft. As of 2026-05-16 the exam is in public beta; general availability is scheduled for July 2026. The exam is 120 minutes, the passing score is 700, and the first 100 beta takers on or before 2026-05-31 receive 80 percent off market price.

Authoritative source: Microsoft Learn, GitHub Certified: Agentic AI Developer (beta). Study guide: Exam GH-600 study guide.

0

skill domains

0

minutes

0

passing score

0%

beta discount (first 100)

The six skill domains, with weights

These are the domain weights as published in the official GH-600 study guide. The wide ranges are Microsoft's, not an estimate. Domain 2 is the heaviest single block and worth front-loading any prep time on.

#DomainWeight
1

Prepare agent architecture and SDLC processes

Integrating agents into the SDLC, separating planning from execution, requiring agents to output a validatable plan before action, configuring observability and the right autonomy level.

15–20%
2

Implement tool use and environment interaction

The biggest block. Selecting tools, configuring tool permissions, MCP servers (including a GitHub remote MCP server), MCP registries, MCP allow lists, scoping agents to a repo or branch, error handling, retries, rollbacks, escalation paths.

20–25%
3

Manage memory, state, and execution

Choosing short-term, long-term, or external memory; scoping memory to the task; pruning and expiration rules; resuming agent work without repeating steps; detecting drift across long runs.

10–15%
4

Perform evaluation, error analysis, and tuning

Defining success criteria, identifying failure modes from logs and traces, classifying root causes (reasoning, tool misuse, environment), then tuning instructions, memory, and tool access.

15–20%
5

Orchestrate multi-agent coordination

Orchestration patterns, parallel-execution isolation, resolving conflicts (overlapping code changes, duplicate work, contradictory outputs), multi-agent observability, recovery, lifecycle management.

15–20%
6

Implement guardrails and accountability

Classifying actions by risk, assigning autonomy levels, blocking policy-violating actions, scoping permissions to least privilege, requiring explicit authorization for irreversible or compliance-sensitive changes.

10–15%

Weights are intentionally ranges, not exact percentages. The actual exam form draws from each band; Microsoft does not publish a fixed question count for GH-600 because the format may include interactive components.

The largest single domain is about tools, and specifically about MCP

Most coverage of this credential mentions MCP once, in passing, and moves on. The study guide is much more explicit than that. The Domain 2 sub-objective on MCP names four distinct tasks the exam wants you to be able to perform, plus a separate block on tool selection and permission scoping, plus a block on error handling that includes rollbacks and escalation paths. If you flatten that to "know MCP," you have lost the shape of the domain.

Domain 2 tasks the study guide lists by name

  • Add an MCP server as a tool to an agent
  • Configure a GitHub remote MCP server
  • Configure the MCP registries the agent can browse
  • Configure MCP allow lists so the agent only reaches sanctioned servers
  • Configure tool permissions and execution scope (repo, branch, CI)
  • Implement error handling, retries, rollbacks, and escalation paths

The reason MCP weight is high is structural. The certification frames the agent as a client of tools, not as a one-shot text completer. Anything the agent touches outside its own reasoning, whether that is a code search, a CI run, a database, or a third-party API, goes through a tool. MCP is the protocol that defines how those tools attach safely. A GitHub remote MCP server is the canonical hosted shape of that protocol; allow lists and registries are how a platform team keeps agents from reaching the wrong places. The exam treats this as a configuration discipline, not a vague concept.

The SDLC integration shape the exam expects

Domain 1 is the smallest of the six but it is the spine. The study guide repeats two ideas across its sub-objectives: separate planning from execution, and produce inspectable artifacts. Put those together and the agent loop the exam wants you to build looks like this.

Agent loop, per GH-600 Domain 1

1

Plan

Agent outputs a structured, inspectable plan

2

Validate

Plan is checked before any action

3

Act

Tool use scoped to least-privilege

4

Observe

Inspectable artifacts logged in GitHub

5

Review

Human-in-the-loop on risk-flagged steps

Two of those steps, Validate and Review, are the ones most candidates underweight in practice. The study guide is unusually firm here. It explicitly lists "prevent agent action until the agent checked and approved" as a sub-objective, and it lists "configure human intervention for autonomous agents without slowing delivery" as a separate one. That second clause is the harder design problem: gates that do not actually gate are worse than no gates, but gates that pause every action will kill velocity. Domain 6 (guardrails and accountability) is the other place the exam tests whether you can right-size that trade.

Beta-period facts that often get omitted

Exam code
GH-600
Credential level
Intermediate, role-based
Maintained by
GitHub. Delivered through Microsoft Learn and Pearson Vue.
Duration
120 minutes
Passing score
700 out of 1000 (standard Microsoft scoring scale)
Format
Proctored, may include interactive components, English only at launch
Beta discount
First 100 takers on or before 2026-05-31 receive 80% off market price
Beta scoring delay
Scores release approximately 8 weeks after the beta period concludes
General availability
July 2026
Retake
24 hours after first attempt; longer waits on subsequent retakes
Renewal
Annual, via a free online assessment on Microsoft Learn
Sandbox
Interactive exam demo at ghcertdemo.starttest.com

The honest take on who this is for

The role profile names software developers, platform engineers, DevOps engineers, security engineers, and technical product managers who are already operating agents in real work. The verbs in the audience profile are operating, integrating, supervising, governing. None of those are read-a-book verbs. If you have not set up an MCP server, attached one to a custom agent, scoped its permissions, watched it write a pull request, and then dealt with the cleanup when something went sideways, the exam is going to feel like a vocabulary test you cannot brute-force.

The corollary: this is not a credential for someone who wants their first taste of agentic AI. It is a credential for someone who already runs agents at work and wants the role to be recognized formally. If you are on the "curious about agents" side of the line, the cheapest first step is to actually run one, on a real repo, with a real MCP server, and see what breaks. Everything you learn there maps directly to Domains 2, 4, and 6.

A note on this page

This page is published by mk0r, a small consumer-side example of agentic AI. We make an in-browser app builder where you describe an app in one sentence and watch a Claude agent assemble a working mobile prototype in front of you, no account, no setup. Our agent is way down the spectrum from what GH-600 is testing for: it is one agent, scoped to one task, on one ephemeral sandbox per session. The reason we published the reference above is that we read the study guide closely when designing our own loop, and the version of it on most other pages is too thin to be useful. If you are studying for the exam, the canonical sources linked above are what to use. If you want to feel what a hands-off agent loop is like before you study, mk0r.com is one mouse click and no signup.

Designing an agent loop for your team, not the exam

If you are about to run agents in a real repo and want a second pair of eyes on the autonomy, MCP, and review layers before you ship, book a working call. We have built and broken a fair number of these.

GitHub agentic AI certification, common questions

What is the GitHub agentic AI certification, in one sentence?

It is the credential called GitHub Certified: Agentic AI Developer, earned by passing Exam GH-600. The certification is maintained by GitHub and delivered through Microsoft. It assesses how a developer or platform engineer operates, supervises, integrates, and governs AI agents inside production software development lifecycle workflows, with GitHub as the system of record. As of 2026-05-16 the exam is in beta and general availability is scheduled for July 2026.

What does the exam actually cost, and is there a beta discount?

Pricing varies by country because the exam is proctored locally through Pearson Vue. There is a real beta discount: the first 100 people to take Exam GH-600 in beta on or before May 31, 2026 receive 80 percent off market price. That promotion is announced on the Microsoft Tech Community blog post that introduced the exam and on the official certification page. After the beta closes, the standard regional pricing applies.

How long is the GH-600 exam, and what score do I need to pass?

You have 120 minutes for the assessment. A score of 700 or greater is required to pass; this is the standard Microsoft certification scale and it is documented on the exam scoring and score reports page that the certification links out to. The exam is proctored, may include interactive components, and is currently offered in English only.

When do I find out if I passed?

During the beta, scores are not released immediately. Microsoft states that beta scores will be released approximately eight weeks after the beta period concludes. That delay is a beta-only quirk. Once the certification goes generally available in July 2026, scoring should follow the usual immediate-release pattern that Microsoft uses for its other certifications.

What is the single most heavily tested topic?

Tool use and environment interaction, weighted 20 to 25 percent of the exam, is the largest single domain. Inside that domain the study guide is unusually specific about MCP, the Model Context Protocol that lets agents reach external tools and data. The guide lists four explicit MCP tasks: adding an MCP server as a tool, configuring a GitHub remote MCP server, configuring MCP registries, and configuring MCP allow lists. If you only had time to prepare for one domain, this is the one with the largest expected payoff.

Who should sit this exam, and who probably should not?

The audience profile names software developers, platform engineers, DevOps engineers, security engineers, and technical product managers who already work in AI-assisted or agent-driven development. It assumes hands-on time with the software development lifecycle, GitHub workflows and controls, code review and security practice, GitHub Copilot, MCP servers, and custom-agent configuration. If you have never set up an MCP server or touched a custom Copilot agent, the exam is not a 'study from scratch and pass' format. It is positioned as an intermediate role-based credential, not a fundamentals exam.

Can I retake the exam if I fail?

Yes. The first retake is allowed 24 hours after the first attempt. After that, retake wait times increase, and the precise schedule is documented on Microsoft's exam retake policy page that the certification links to. There is also an Exam Replay product on the same site that pairs an exam attempt with a discounted second attempt.

Is the credential expected to renew, like other Microsoft certifications?

The official page links to the Microsoft certification renewal article, which notes that associate, expert, and specialty certifications expire annually and can be renewed by passing a free online assessment on Microsoft Learn. GitHub Certified: Agentic AI Developer is published under the same credential platform, so plan on an annual renewal cadence by default. Always re-check the official page closer to your certification date in case the renewal terms are tightened or relaxed.

mk0r.AI app builder
© 2026 mk0r. All rights reserved.

How did this page land for you?

React to reveal totals

Comments ()

Leave a comment to see what others are saying.

Public and anonymous. No signup.