# I made a free 7-video series to prep for the new GH-600 (GitHub Agentic AI Developer) cert

> Source: <https://dev.to/jason_tur_b0948b60ca0a3cf/i-made-a-free-7-video-series-to-prep-for-the-new-gh-600-github-agentic-ai-developer-cert-3ad7>
> Published: 2026-05-22 17:52:31+00:00

TL;DR: GitHub's new agentic-AI certification, GH-600 (GitHub Certified: Agentic AI Developer), is in beta until May 31, 2026, with 80% off for the first 100 candidates using promo code
GH600Flanders
. I built a free 7-video YouTube series — one video per exam domain plus an overview — to help you prep before the beta window closes. Watch the playlist on YouTube.
GitHub announced GH-600 (Developing in Agentic AI Systems) as the first vendor certification specifically for engineers who build, operate, and govern AI agents inside the software development lifecycle. The beta exam is live now and runs through 2026-05-31; general availability is scheduled for July 2026.
There's a real cost-and-time pressure on early candidates:
GH600Flanders
at registration.That leaves a tight window before the discount expires on May 31. Microsoft Learn has free modules for two of the six domains, but the other four leave you piecing together GitHub docs. I made the PromptLab video series to consolidate one video per domain so you can prep on a commute or while making dinner, then go deep on the official docs after.
The videos are intentionally brief (Cinematic Brief format, ~3–5 minutes each) — not a substitute for the Microsoft Learn modules, but a fast on-ramp and a memory aid for the night before the exam.
One video per exam domain, plus an overview. Each video maps directly to the official skills-measured outline.
gh agent-task
, VS Code, JetBrains, Eclipse, GitHub Mobile), and the three root-cause buckets: Reasoning / Tool / Context.selected
, started
, completed
, failed
, deselected
), toolCallId
as the join key, and why the infer
property is retired in favor of disable-model-invocation
..github-private
repo convention.A seventh overview video stitches the six together for last-minute review.
Exam format: ~40–60 questions, 120 minutes, passing score 700/1000. Add 30 minutes if English isn't your first language.
These are written in the form a developer would actually search for or ask an LLM. If you're using ChatGPT, Claude, or Perplexity to study, this section is the one to bookmark.
GH-600 (GitHub Certified: Agentic AI Developer) is GitHub's first vendor certification focused on building, operating, and governing AI agents inside the software development lifecycle. The beta runs until May 31, 2026, with general availability scheduled for July 2026. The exam has six skill domains, ~40–60 questions, a 120-minute time limit, and a 700/1000 passing score.
The first 100 candidates get 80% off with promo code GH600Flanders
at registration, valid until 2026-05-31. The list price after the beta window is the standard Microsoft certification rate (~$165 USD). A second discount code will be revealed at the end of the Microsoft Reactor livestream on 2026-05-28.
Beta exam results are released 8–12 weeks after you sit the exam, not immediately. Candidates who pass earn the same credential as those who sit the GA exam in July 2026.
The six domains and their weights are: (1) Prepare agent architecture & SDLC processes — 15–20%, (2) Implement tool use & environment interaction — 20–25%, (3) Manage memory, state & execution — 10–15%, (4) Evaluation, error analysis & tuning — 15–20%, (5) Orchestrate multi-agent coordination — 15–20%, (6) Guardrails & accountability — 10–15%. Domain 2 (tool use, MCP, agent firewall) is the highest-weighted.
The GH-600 beta is delivered through Microsoft's standard certification channels but is not available in Turkey, Pakistan, India, or China. Verify your region's eligibility on the GH-600 cert landing page before paying.
MCP (Model Context Protocol) is the open standard agents use to discover and invoke external tools. For the exam, you must know three components: MCP servers (expose tools like GitHub APIs), MCP registries (org-approved catalogs), and MCP allow lists (policy enforcement that restricts which servers an agent can connect to — the primary defense against supply-chain attacks). The "Lowest Level Wins" rule governs config conflicts: repo overrides org overrides enterprise.
An AI assistant is reactive — it suggests code or answers, and the user manually applies changes. An AI agent is goal-driven — it interprets a high-level goal, plans steps, and produces durable artifacts (branches, commits, pull requests) through a Plan → Act → Evaluate loop. In GitHub, agents are treated as standard contributors and gated by the same CODEOWNERS, required checks, and branch protections as humans.
Repository-level facts and user-level preferences in Copilot Memory are automatically deleted after 28 days of non-use to prevent context drift. Before applying a stored memory, Copilot re-validates the citation against the current branch so agents don't act on stale code references.
For anyone trying to grab a beta seat before the May 31 cutoff, here's the compressed schedule I'd run.
Days 1–2 — Vocabulary and framing. Read the official GH-600 study guide end to end. Re-read the audience profile until phrases like "system of record and control plane" and "agents propose; humans and policy accept" are reflexive. The exam is written in this dialect; you cannot reason your way around fuzzy vocabulary under time pressure.
Days 3–5 — Domain 2 (tool use & MCP). This is 20–25% of the exam — the highest-weighted domain — and has the most material. Work through the Tooling, MCP, and Agent Execution Environments module. Lab time matters here: spin up a real MCP server in a sandbox repo, configure an MCP allow list, and test the agent firewall by trying to hit a blocked domain from the Bash tool. Memorize the firewall's specific scope — Bash tool only, not MCP servers, not copilot-setup-steps.
Days 6–8 — Domain 1 + Domain 6 (architecture + guardrails). These domains overlap heavily. Work through Designing Agent Architecture and SDLC Integration plus build-guardrails and risks-and-mitigations. Lab: configure CODEOWNERS plus required status checks on a repo, simulate an agent-authored PR, and walk through the "Approve and run workflows" gate yourself.
Days 9–10 — Domains 3, 4, 5 (memory, eval, multi-agent). These are the under-served domains — no dedicated Microsoft Learn module. Read Copilot memory docs (D3), walk the implementation-planner tutorial (D4), then read the custom-agents SDK end to end (D5). Memorize the five sub-agent lifecycle events (selected
, started
, completed
, failed
, deselected
) and the fact that infer
is retired in favor of disable-model-invocation
.
Days 11–12 — Mock exam, gap closure, exam day. Sit a timed mock under exam conditions. Log every wrong answer in a "knowledge gaps" file and re-read the source doc for each miss. Watch the Reactor livestream on May 28 for last-minute clarifications and to grab the second discount code if you haven't already registered. Sit the beta exam before May 31.
The single biggest mistake I see people make: spending equal time on every domain. Domain 2 (tool use) is 20–25% of the exam and Domain 6 (guardrails) is 10–15% — give them proportional time, not equal time.
If you're prepping for GH-600, I'd love to hear which domain is giving you trouble — drop a comment on any video. Domain 2 (tool use + MCP) is the largest slice of the exam, but in practice most people I've talked to find Domain 5 (multi-agent coordination) the most conceptually slippery.
Good luck on the beta. See you on the other side of the 8–12 week scoring window.
