0Pricing
Claude Architect · 강의

인증 한눈에 보기

Claude Certified Architect가 무엇을 입증하며 왜 중요한지 알아봅니다

인증 한눈에 보기은(는) CoddyKit의 무료 Claude Architect 강의입니다. 이것은 4개 중 1번째 강의입니다. 아래에서 전체 강의를 무료로 읽을 수 있으며, 내장 코드 에디터와 24/7 AI 튜터와 함께 브라우저에서 직접 실습할 수 있습니다. 이 강의는 Claude Architect 학습 경로의 일부이며, 진행 상황이 웹과 CoddyKit 앱에 동기화됩니다. Claude Architect 강의에는 총 4개의 강의가 포함되어 있습니다.

이 강의의 일부는 아직 번역되지 않았으며 영어로 표시됩니다.

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.

자주 묻는 질문

“인증 한눈에 보기” 강의는 무료인가요?

네 — “인증 한눈에 보기” 전체 내용을 이 웹사이트에서 무료로 읽을 수 있습니다. 인터랙티브하게 실습하려면(내장 코드 에디터와 24/7 AI 튜터), CoddyKit PRO로 업그레이드하면 Claude Architect 강의 전체를 잠금 해제할 수 있습니다. Claude Architect 강의에는 총 4개의 강의가 포함되어 있습니다.

“인증 한눈에 보기”에서 뭘 배우나요?

Claude Certified Architect가 무엇을 입증하며 왜 중요한지 알아봅니다 브라우저에서 직접 실행하는 실습 코드로 Claude Architect을(를) 배우며, 24/7 AI 튜터가 강의를 진행하면서 질문에 답변해줍니다.

Claude Architect을(를) 시작하는 데 경험이 필요한가요?

사전 경험은 필요하지 않습니다. CoddyKit의 Claude Architect은(는) 초급자부터 고급 학습자까지를 위해 구성되어 있으므로, 여기서 시작하거나 처음부터 시작할 수 있으며 자신의 속도대로 진행할 수 있습니다. 이것은 4개 중 1번째 강의입니다.

“인증 한눈에 보기” 강의는 얼마나 걸리나요?

대부분의 CoddyKit 강의는 약 5~10분이 소요됩니다. 각 강의는 간결하고 인터랙티브하여 꾸준한 진행이 가능하며, 웹과 앱에서 중단한 부분부터 바로 시작할 수 있습니다.

이 Claude Architect 강의에서 코드를 작성하고 실행할 수 있나요?

네. 모든 Claude Architect 강의에는 내장 코드 에디터가 포함되어 있으므로, 브라우저에서 바로 실제 코드를 작성하고 실행한 후 즉시 AI 피드백을 받을 수 있습니다 — 로컬 설정이 필요 없습니다.

이 강의의 모든 강의

  1. 인증 한눈에 보기
  2. 시험의 다섯 영역
  3. 시나리오 기반 형식 및 채점
  4. 이 시험을 치러야 하는 사람
← Claude Architect(으)로 돌아가기