What's Inside
A preview of the book's layout and structure
cca-f-study-guide.html
Claude Certified
Architect — Foundations
Complete Study Guide & Reference
by Claude Certified Architect Team
116 Lessons · 15 Domains · 803 Practice Questions
Title page
chapter-agent-loops.html
Agentic Architecture — 27% of exam
Agentic Loops
Learning Objectives
- •Understand the agentic loop cycle
- •Use stop_reason for termination
- •Avoid common anti-patterns
An agentic loop is the runtime that sits between your application and the Claude API. Without it, every API call is stateless and isolated...
async function agenticLoop() {
const messages = [];
while (true) {
// Claude responds with stop_reason
const response = await api.send(messages);
if (response.stop_reason === "end_turn") break;
}
}
Difficulty: advanced📝 Exam Tip section
Sample chapter — Agentic Loops
Choose Your Format
Each format is optimized for a different reading experience. Pick the one that fits your workflow.
HTML
2 MB · Opens in Chrome
Fully formatted, print-friendly HTML with built-in CSS. Opens in any browser — no special reader needed. Best for desktop reading and printing.
- Open in any browser instantly
- Print-friendly with page break support
- Dark/light mode compatible
- Clickable table of contents
- Searchable with Ctrl+F
- Zero dependencies or installs
Table of Contents
The book is organized into 4 parts spanning all 15 domains
How books are generated: This ebook is built automatically during the site's build process. It reads all 116 lesson files, parses their frontmatter and HTML content, and assembles them into this comprehensive study guide. The HTML version is the source format; EPUB and PDF are derived from it.
Prefer reading online? The full interactive version with quizzes, flashcards, and progress tracking is available at cc.frontendx.dev.