FX66VIP

AI VIP课程

AI Engineering with Claude

The AI Engineering with Claude Nanodegree program prepares developers to build and ship production-grade AI agent systems with Claude, the Claude Agent SDK, the Model Context Protocol (MCP), and Claude Code. Across four project-based courses, you'll go beyond demos to engineer the "harness" that runs an agent in production: controlling the agentic loop, governing MCP tools, evaluating systems so silent failures surface before customers do, and enforcing rules in code with bounded autonomy and human-in-the-loop guardrails. Portfolio projects are anchored in real industry scenarios from insurance, retail, financial services, and manufacturing, including an MCP-powered "Agentic Analyst" and an enterprise multi-agent code-review orchestrator.

分类: AI 发布时间: 2026-09-12 课程部分: 4 课程章节: 43 预计时长: 37 小时 45 分钟 最后更新: 2026-09-12
AI Engineering with Claude

COURSE OVERVIEW

课程介绍

学习方式

课程包含结构化章节、图文内容、代码示例和嵌入式视频。

访问方式

获得课程授权后,可随时从“我的课程”进入学习。

课程类型

VIP授权课程

COURSE CURRICULUM

课程目录

共 4 个部分, 43 个章节。

Part 1 Harness Engineering with Claude and Claude Code

Context Engineering

  1. Introduction to Harness Engineering with Claude and Claude Code

    Set up your workspace for the course: configure your Anthropic API keys, get Claude Code running, and preview the harness engineering skills you'll build.

    20 分钟 8 节内容
  2. Introduction to Claude 4 Model Architecture

    Explore the Claude 4.5 model family—Haiku, Sonnet, and Opus—each optimized for a different balance of intelligence, speed, and cost for efficient AI applications.

    20 分钟 4 节内容
  3. Select Claude 4 Models with Claude API

    Learn to select the best Claude 4 model—Haiku, Sonnet, or Opus—using the API, matching model strengths to task complexity for faster, cost-effective, and high-quality AI solutions.

    45 分钟 5 节内容
  4. Introduction to Agentic System Design

    Discover agentic AI: systems that perceive, reason, and act to achieve goals through a perception-reasoning-action loop, core components, and agent design patterns.

    20 分钟 5 节内容
  5. Design Agent Architectures

    Learn to design agent architectures for automating complex tasks using multi-agent systems, enabling speed, specialization, resilience, and scalable AI-powered workflows.

    45 分钟 5 节内容
  6. Introduction to Claude Agent SDK

    Learn to build autonomous AI agents with the Claude Agent SDK—set goals, assign tools, manage permissions, and automate complex workflows using natural language instructions.

    20 分钟 4 节内容
  7. Build Production Agents with Claude Agent SDK

    Learn to build production AI agents with Claude Agent SDK that use tools to read, process, and write files, automating complex document workflows with clear prompts and structured outputs.

    50 分钟 5 节内容
  8. Build a Claims Intake Agent with a stop_reason-Driven Loop

    In this lesson, you'll build a working claims intake agent across three cumulative exercises, starting from a stop_reason-driven agentic loop and ending with a model that decides on its own when to clarify, route, or escalate.

    45 分钟 11 节内容
  9. Engineer a Long-Conversation Context Strategy for a Retail Support Copilot

    In this lesson, you'll build a context-engineering harness for a long-running retail support copilot — pruning verbose tool output, keeping a persistent block of case facts, compressing resolved conversations on a token budget, and assembling it all so the facts that matter sit where the model reads them best.

    30 分钟 14 节内容
  10. Introduction to Claude Code

    Discover how to use Claude Code as an agentic AI assistant—reading your project, writing code, scaling tasks with subagents, and applying custom knowledge via CLAUDE.md and skills.

    20 分钟 5 节内容
  11. Configure Claude Code

    Learn to build sophisticated AI systems by configuring Claude Code with modular agents and reusable skills for task delegation and domain-specific workflows.

    50 分钟 5 节内容
  12. Introduction to Claude Skills

    Learn to create and structure Claude skills—modular files that encode expertise—enabling AI agents to perform tasks consistently to your team's standards.

    15 分钟 4 节内容
  13. Create Claude Skills

    Learn to create and use Claude Skills to give agents reusable expertise. Build agents that discover, combine, and apply skills for complex tasks, with structured, type-safe outputs.

    45 分钟 5 节内容
  14. Configure Claude Code for a Multi-Surface Monorepo Team

    In this lesson, you'll stand up a version-controlled Claude Code configuration for a 12-person retail team working in one monorepo — a modular CLAUDE.md hierarchy with @import standards, path-scoped rules that load per file surface, a read-only /review slash command, a forked /deploy-check skill that keeps its verbose output out of the main session, and a decision doc that names when to use plan mode, direct execution, and the Explore sub-agent. You assemble it across four cumulative exercises, and a Python validator certifies the finished configuration against 35 acceptance tests.

    45 分钟 14 节内容
  15. Build a Multi-Shift Quality Monitoring System with Claude Orchestration

    Across four cumulative exercises, you'll assemble a Layer 3 Claude orchestration that wakes up on a schedule, looks at only what changed since last time, and survives a mid-run crash without losing its work: tiered hot/warm/cold state with atomic writes, a push-work-down invocation pipeline, an fsync'd manifest with a resume-vs-fresh recovery rule, and a fork-with-merge scratchpad workflow.

    45 分钟 13 节内容
  16. Harness Engineering with Claude and Claude Code Project

    Stand up, run, and verify four reference systems from the course, then defend each one's design in a reflection brief grounded in your own run output.

    180 分钟 4 节内容
Part 2 MCP in Action

MCP in Action

  1. Introduction to MCP in Action

    Get oriented before you build: the course prerequisites and outcomes, your instructors, and how to set up your Vocareum workspace and Claude API key.

    10 分钟 6 节内容
  2. MCP Fundamentals

    Understand MCP's role in connecting AI apps to external tools, MCP core components, real-world use cases, and complete a hands-on job search assistant walkthrough.

    30 分钟 5 节内容
  3. MCP Architecture & Roles

    Explore the MCP architecture, roles of host, client, and server, communication via JSON-RPC, transport mechanisms, and lifecycle phases of an MCP workflow.

    40 分钟 5 节内容
  4. MCP Server Features

    Explore the three core MCP server features—tools, resources, and prompts—that enable LLMs to act, access data, and use guided templates for effective user interactions.

    30 分钟 4 节内容
  5. MCP Client Features

    Explore key MCP client features: roots (directory restrictions), sampling (LLM requests), and elicitation (user info requests) for secure, flexible workflows.

    30 分钟 4 节内容
  6. Building MCP Servers

    Learn to build an MCP server that provides calculator tools, mathematical constants as resources, and calculation prompts for AI applications, using FastMCP and best development practices.

    45 分钟 3 节内容
  7. Integrate MCP Servers

    Learn to integrate Claude Agent SDK agents with external tools via MCP servers, enabling automated tasks like code analysis and structured data retrieval from services such as GitHub and ESLint.

    50 分钟 5 节内容
  8. Build an Inventory Agent with MCP Tools

    Assemble a production-minded retail inventory agent by designing structured tool results, differentiated tool descriptions, a tool-distribution and tool_choice policy, and a built-in-vs-custom tool-selection framework.

    45 分钟 14 节内容
  9. Introduction to Custom Tools in Claude Agent SDK

    Learn how to design, build, and integrate custom tools in Claude Agent SDK, letting agents interact with private data, APIs, and automate specialized business tasks.

    15 分钟 4 节内容
  10. Implement Custom Tools in Claude Agent SDK

    Learn to create, integrate, and test custom tools in the Claude Agent SDK, enabling agents to interact with APIs and solve real-world tasks tailored to your needs.

    60 分钟 5 节内容
  11. Implement MCP Governance with Scoped Config and an Audited Agent Loop

    Build a Python governance layer that turns the four enterprise MCP decisions into working code, a scoped config registry with a secret-leak CI gate, custom servers with built-in-resistant tool descriptions and a schema resource, and an audited agent loop with an append-only audit trail.

    45 分钟 11 节内容
  12. PriceScout: Agentic Analyst

    Build the "PriceScout" AI agent. Write a client that uses an LLM to command custom scraper and database servers to analyze competitor pricing automatically.

    240 分钟 5 节内容
Part 3 Agent Evaluation and Observability with Claude

Agent Skills for Engineers

  1. Introduction to Agent Evaluation and Observability with Claude

    Get oriented before you start: see what the course covers, who it's for, and the outcomes you'll reach, plus the prerequisites and resources you'll use along the way.

    10 分钟 6 节内容
  2. Introduction to Structured Outputs

    Learn how to use schemas to enforce structured outputs in Claude Agent SDK, transforming unpredictable text into reliable, validated data for robust applications.

    15 分钟 4 节内容
  3. Implement Structured Outputs

    Learn to implement structured outputs in Claude Agent SDK by defining schemas with Zod, enabling reliable, validated data extraction for robust applications.

    40 分钟 5 节内容
  4. Build a Resilient Mortgage Document Extraction System

    In this lesson, you'll build a production-shaped document extraction pipeline with the Anthropic API, one technique at a time. You'll design a JSON Schema that refuses to fabricate, orchestrate a two-pass classify-then-extract flow with forced and `any` tool choice, write an extractor prompt that stops the model from inventing values, and add a validator that catches arithmetic the model would otherwise silently "correct." Along the way you'll build the intuition for when each pattern is the right tool — and when it isn't.

    45 分钟 14 节内容
  5. Agent Evaluation

    Agent Evaluation guides assessing an agent’s task completion, quality, tool use, and system metrics using response, step, or trajectory strategies to ensure reliable and efficient operations.

    10 分钟 1 节内容
  6. Evaluate Agents Built with Claude Agent SDK

    Learn to build automated evaluation frameworks for Claude Agent SDK agents, using agent traces, evaluators, test cases, and schema validation to ensure reliable performance.

    40 分钟 5 节内容
  7. Build a Validated, Routed Insurance Policy Extraction Pipeline

    In this lesson, you'll build a production-shaped document extraction pipeline with the Anthropic API, one piece at a time. You'll learn how to retry the mistakes a model can fix and escalate the ones it can't, batch a monthly workload for a cost discount, add an independent reviewer for a second opinion, and route each policy to the right human queue.

    45 分钟 13 节内容
  8. Investigate Supply Chain Risk with Multi-Source Synthesis

    Build a Python system that fuses four disagreeing evidence sources into one honest, provenance-preserving briefing that annotates conflicts, escalates on explicit criteria, and keeps running when a source fails.

    60 分钟 12 节内容
  9. Evaluation and Observability Project

    Operate three document and risk systems you built: run them, break them on purpose, and defend their design with your own evidence. No new code to write.

    180 分钟 4 节内容
Part 4 Bounded Autonomy and Guardrails with Claude and Claude Code

Bounded Autonomy & Guardrails

  1. Introduction to Bounded Autonomy and Guardrails with Claude and Claude Code

    Start here for a tour of the course: the prerequisites you'll need, the outcomes you'll reach, and the resources that support building safe, guardrailed agents.

    10 分钟 6 节内容
  2. Introduction to Multi-Agent Orchestration

    Discover how to design multi-agent AI systems using orchestrators and subagents, apply sequential, parallel, and advanced orchestration patterns, and automate complex, multi-step tasks.

    20 分钟 5 节内容
  3. Orchestrate Multi-Agent Systems

    Learn to design and implement multi-agent systems using Claude Agent SDK where an orchestrator coordinates specialized subagents to automate and scale complex, multi-step business processes.

    50 分钟 5 节内容
  4. Build a Hub-and-Spoke Multi-Agent System

    Assemble a multi-agent system that triages electronics-defect reports across four cumulative exercises: scoped subagent definitions, parallel spawn with scoped context, Pydantic-validated structured handoff, and a bounded iterative refinement loop. By the end you have a working CLI that runs against the real Anthropic API.

    45 分钟 13 节内容
  5. Enforce Agent Compliance with Deterministic Hooks

    Wrap an Anthropic-SDK banking agent in a compliance enforcement layer across three cumulative exercises: a programmatic KYC prerequisite gate, a PostToolUse hook that normalizes heterogeneous tool output, and an interception hook that redirects over-threshold transfers with a structured handoff. A comparison harness proves deterministic hooks block 100% of violations where a strong prompt cannot.

    60 分钟 10 节内容
  6. Enterprise Multi-Agent Code Review Orchestrator

    Build an enterprise-ready Code Review tool using the Claude Agent SDK that uses different tools to check the quality of code in PRs.

    300 分钟 4 节内容