0Pricing
Claude Architect · レッスン

認定資格の概要

Claude Certified Architectが証明することと、その重要性を学びます

「認定資格の概要」はCoddyKit上の無料Claude Architectレッスンです。 これはレッスン1/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応の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時間対応のAIチューター)、Claude Architectコースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 Claude Architectコースには全4レッスンが含まれています。

「認定資格の概要」で何を学びますか?

Claude Certified Architectが証明することと、その重要性を学びます ブラウザで直接実行するハンズオンコードでClaude Architectを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。

Claude Architectを始めるのに経験は必要ですか?

事前経験は必要ありません。CoddyKitのClaude Architectは初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン1/4です。

「認定資格の概要」レッスンにはどのくらい時間がかかりますか?

ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。

このClaude Architectレッスンでコードを書いて実行できますか?

はい。すべてのClaude Architectレッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。

このコースのすべてのレッスン

  1. 認定資格の概要
  2. 試験の5つの分野
  3. シナリオ形式と採点
  4. この試験を受けるべき方
← Claude Architectに戻る