0Pricing
Claude Architect · Aula

A Certificação em Resumo

O que um Arquiteto Certificado pela Claude comprova e por que isso importa.

A Certificação em Resumo é uma aula grátis de Claude Architect no CoddyKit. Esta é a aula 1 de 4. Você pode ler a aula completa abaixo gratuitamente — depois pratica ao vivo no navegador com um editor de código integrado e um tutor de IA 24/7. Faz parte do caminho de aprendizado de Claude Architect, e seu progresso é sincronizado entre a web e o app CoddyKit. O curso de Claude Architect inclui 4 aulas no total.

Partes desta aula ainda não foram traduzidas e aparecem em inglês.

Welcome, Future Architect

The Claude Certified Architect credential proves you can design real, production-grade systems on Claude — not just write a clever prompt. Here's the big picture.

Who It's For

This is an architect-level cert aimed at solution architects with 6+ months of production Claude experience. Newer to it? You can still pass by learning the production patterns here.

Exam Format at a Glance

The exam is scenario-based multiple choice: a realistic situation, 4 options, exactly 1 correct. You won't recite definitions — you'll choose the right design decision.

Scoring and the Pass Line

Your result is a scaled score from 100 to 1000, and you pass at 720. There's no penalty for guessing, so answer every question — a blank beats nothing.

score = 745
PASS = 720

if score >= PASS:
    print("Certified Claude Architect \U0001F389")
else:
    print(f"Keep studying: {PASS - score} points to go")

How Scenarios Are Sampled

The cert is built around 8 canonical scenarios, but any exam shows you just 4 of them. Since you can't predict which, the smart move is to prepare for all 8.

The Five Domains

Questions come from five weighted domains: D1 Agents 27%, D2 Tools/MCP 18%, D3 Claude Code 20%, D4 Prompting 20%, D5 Context 15%. The weights are your study budget.

Domain 1 Carries the Most Weight

At 27%, Agent Architecture and Orchestration is the largest domain. It covers the agentic loop: send a request, check stop_reason, run tools, repeat until end_turn.

# The agentic loop — driven by stop_reason, never by parsing text
resp = client.messages.create(
    model="claude-sonnet-4-5",
    max_tokens=1024,
    messages=messages,
    tools=tools,
)

while resp.stop_reason == "tool_use":
    messages.append({"role": "assistant", "content": resp.content})
    messages.append({"role": "user", "content": run_tools(resp)})
    resp = client.messages.create(
        model="claude-sonnet-4-5",
        max_tokens=1024,
        messages=messages,
        tools=tools,
    )
# loop exits cleanly on stop_reason == "end_turn"

What the Other Domains Prove

The other domains each certify a skill: D2 tool descriptions and MCP, D3 CLAUDE.md and workflows, D4 prompting and JSON Schema, D5 context and reliability.

It Certifies Judgment, Not Trivia

The exam rewards architectural judgment over trivia. Many questions hide an anti-pattern — like stopping an agent by parsing its text for 'done' instead of stop_reason.

# Anti-pattern (a tempting WRONG answer):
if "done" in resp.content[0].text.lower():
    stop()  # fragile, model-phrasing dependent

# Correct: terminate on the protocol signal
if resp.stop_reason == "end_turn":
    stop()  # deterministic, model-driven

Grounded in the Real API

Every scenario assumes you know the Messages API: the model keeps no state, so you resend the full history every turn, and you read the four stop reasons.

resp = client.messages.create(
    model="claude-sonnet-4-5",
    max_tokens=1024,
    system="You are a precise solutions architect.",
    messages=messages,   # FULL history every turn — model is stateless
    tools=tools,
    tool_choice={"type": "auto"},
)
print(resp.stop_reason)  # end_turn | tool_use | max_tokens | stop_sequence

Why the Credential Matters

Passing proves you can turn Claude from a chat tool into dependable infrastructure — agents that loop, tools that route, systems that fail gracefully. Next: the 8 scenarios and 5 domains.

Quick Check

A teammate sees their certification report and panics. Which interpretation is correct?

Recap: The Cert at a Glance

Quick recap: scenario-based MCQ, scaled 100-1000, pass 720, 4 of 8 scenarios, no guessing penalty. Five domains, D1 the heaviest. It tests judgment — terminate on stop_reason, never parsed text.

Perguntas Frequentes

A aula “A Certificação em Resumo” é grátis?

Sim — o texto completo de “A Certificação em Resumo” é grátis para ler aqui na web. Para praticá-la interativamente (um editor de código integrado e um tutor de IA 24/7) e desbloquear o restante do curso de Claude Architect, atualize para CoddyKit PRO. O curso de Claude Architect inclui 4 aulas no total.

O que vou aprender em “A Certificação em Resumo”?

O que um Arquiteto Certificado pela Claude comprova e por que isso importa. Você pratica Claude Architect com código prático que executa diretamente no navegador, e um tutor de IA 24/7 responde suas dúvidas enquanto trabalha na aula.

Preciso ter experiência prévia para começar Claude Architect?

Nenhuma experiência prévia é necessária. Claude Architect no CoddyKit é estruturado para alunos iniciantes até avançados, então você pode começar aqui ou desde o início e aprender no seu ritmo. Esta é a aula 1 de 4.

Quanto tempo leva a aula “A Certificação em Resumo”?

A maioria das aulas CoddyKit leva cerca de 5–10 minutos. Cada uma é compacta e interativa, então você faz progresso constante e retoma exatamente de onde parou entre web e app.

Posso escrever e executar código nesta aula de Claude Architect?

Sim. Cada aula de Claude Architect inclui um editor de código integrado, então você escreve e executa código real direto no navegador e recebe feedback de IA instantaneamente — nenhuma configuração local necessária.

Todas as aulas deste curso

  1. A Certificação em Resumo
  2. Os Cinco Domínios do Exame
  3. Formato Baseado em Cenários e Pontuação
  4. Quem Deve Fazer Este Exame
← Voltar para Claude Architect