# Training syllabus coverage map

This table maps topics from the **Claude Code — Agentic Coding**, **Extended Thinking / Multi-Agent**, and **Claude Automation Mastery** training outlines to this course. Gaps were filled in **Modules 16–19** (`course.html`). CCA-F exam prep: [cca-f-prep.html](../cca-f-prep.html) · [examples/CCA-F-PREP/](../examples/CCA-F-PREP/).

| Training topic | Covered in course | Notes |
|----------------|-------------------|--------|
| **Claude Code Fundamentals** | | |
| Installation and setup | Module 05 | Windows, macOS, Linux, `claude doctor` |
| CLI usage patterns | Module 05, [slash-commands.html](../slash-commands.html) | 70+ commands |
| CLAUDE.md for project context | Module 07 | WHAT/WHY/HOW, progressive disclosure; [HumanLayer guide](https://www.humanlayer.dev/blog/writing-a-good-claude-md) |
| Permissions model (read/write/execute) | Module 05 | Normal, plan, auto-accept |
| Session management | Module 08 | `/compact`, `/clear`, `/resume`, `/rename` |
| Cost and usage tracking | Module 08 | `/usage`, `/cost`, `/insights` |
| **Agentic Coding Workflows** | | |
| Repository-scale code understanding | Module 16 | Explore agents, grep/glob |
| Automated code generation and refactoring | Module 16 | Plan → implement → test |
| Test writing and running | Modules 04, 16, 15 | Agentic loop + capstone |
| Bug identification and fixing | Module 16 | Repro + root-cause prompts |
| Documentation generation | Module 16 | README, ADRs from code |
| Multi-file code changes | Modules 16, 12 | `/batch`, sub-agents |
| **MCP with Claude Code** | | |
| Running Claude Code as MCP server | Modules 11, 19 | Bidirectional MCP; see official docs |
| Connecting external MCP servers | Module 11 | `.mcp.json`, stdio/HTTP |
| Building custom MCP integrations | Module 11, [examples/CCA-F-PREP/p5](../examples/CCA-F-PREP/p5-custom-mcp-server/) | Python SDK example |
| Claude Code + LangGraph hybrid | Module 18 | Orchestrator graph + coding node |
| **Extended Thinking & Automation** | | |
| Extended thinking for architecture | Module 17 | `/effort high`, `/effort max` |
| Autonomous multi-step tasks | Modules 17, 14 | Skills, hooks, unattended patterns |
| AGENTS.md for AI coding guidelines | Module 17 | vs CLAUDE.md |
| CI/CD integration with Claude Code | Modules 14, 17 | Cron, headless `claude -p` |
| GitHub Actions + Claude Code | Module 17 | `/install-github-app`, PR review |
| **Claude Code in Multi-Agent Pipelines** | | |
| Claude Code as coding sub-agent | Module 18 | Specialist role in pipeline |
| Handoffs from orchestrator agents | Module 18 | Structured payloads |
| Results handling and code review | Module 18 | Reviewer agent pattern |
| OpenAI Agents SDK handoffs | Module 18 | Conceptual integration |
| **Claude Automation Mastery** | | |
| Claude API & model families | Modules 02, 19 | Haiku / Sonnet / Opus |
| API usage, structured outputs, rate limits | Module 19 | Production checklist |
| Claude Code advanced workflows | Modules 16, 19 | Large repos, debugging |
| Claude Co-Work mode | Module 19 | Desktop collaborative workflows |
| Claude MCP enterprise integration | Modules 11, 19 | Registry, OAuth, audit |
| n8n workflow automation | Module 19 | API + webhook patterns |

## Hands-on in this repo

| Topic | Path |
|-------|------|
| Custom MCP server | `examples/CCA-F-PREP/p5-custom-mcp-server/` |
| Claude Code + MCP wiring | `examples/CCA-F-PREP/p4-claude-code-workflow/` |
| Sub-agents, skills, hooks | `examples/Task-Manager-App/` |
| Full-stack capstone | `examples/DailyFlow/` |
| CCA-F certification prep | `examples/CCA-F-PREP/` |

## Not in scope (external products)

- **n8n** itself is documented conceptually (Module 19); install n8n separately for hands-on labs.
- **LangGraph** and **OpenAI Agents SDK** are architecture patterns — follow their official docs for code samples.
