INITIALIZING...
60-Day AI Product Management Course
Platform live

Build real AI products.
Not just read about them.

A hands-on, 60-day curriculum that teaches you to ship AI products — with real code labs, frontier model APIs, and the PM frameworks top companies actually use. Python & JavaScript run right in your browser.

Start the 60-Day Course Free → Browse AI PM Jobs
60
Days of curriculum
240
Hands-on tasks
60
Code labs
241+
AI PM roles tracked

What You Get
Everything you need to become an AI PM
Curriculum
60-Day Structured Course
Day-by-day guided learning covering MCP, A2A, RAG, Constitutional AI, Evals, and more. Each day includes context, 4 hands-on tasks, a code lab, an interview question, and PM-specific angles.
60 Days240 TasksInterview PrepPM Angles
Start learning →
Code Labs
Python & JavaScript in Browser
Every day includes a runnable code example. Python executes via Pyodide WebAssembly and JavaScript runs in a sandboxed iframe — no setup, no installs, no API keys needed to start.
Pyodide WASMPython 3JavaScriptZero Setup
Try a code lab →
Job Board
Live AI PM Job Tracker
241+ AI PM roles from top companies, updated daily via automated ATS crawlers powered by GitHub Actions. Filter by company, role level, and location — all in one place.
241+ RolesDaily UpdatesATS CrawlersGitHub Actions
Browse jobs →
AI Operating System
PM-OS
An AI-powered product management OS for Claude Code and GitHub Copilot. Structured slash commands, specialist sub-agents, and agentic workflows built on the .claude/ architecture.
Claude CodeGitHub CopilotSub-Agents15+ Skills
Set up PM-OS →
Coming Soon
AI Operating System Coming Soon
RIA OS
An AI operating system for Registered Investment Advisors. Specialist sub-agents for compliance, portfolio analysis, and tax strategy built on Claude Code.
Claude CodeMCPSub-agents
AI Operating System Coming Soon
ML OS
An AI operating system for ML engineers. Agentic workflows for model training, evaluation, deployment, and monitoring — built on Claude Code architecture.
Claude CodeML Workflows
Built With
Supabase (Postgres)Vercel EdgeClerk Auth Pendo AnalyticsGitHub ActionsPyodide WASM
Free — All 60 Days
The 60-Day AI PM Curriculum

Every day fully written. Every concept explained. MCP, A2A, ACP, Claude Code, Azure AI Foundry, Constitutional AI, Evals, Red-Teaming — all covered with zero Googling required. Sign in and get started immediately.

Start the Course Free →
Model Context Protocol
Learn what MCP is and how it lets LLMs connect to external tools, databases, and APIs through a standardized protocol.
Day 12
Agent-to-Agent (A2A)
Understand how autonomous AI agents discover, negotiate with, and delegate tasks to each other using Google's A2A protocol.
Days 26, 27, 47
Agent Comm Protocol
Deep dive into Cisco/LangChain's Agent Communication Protocol. Learn when to choose ACP vs A2A.
Day 27
Constitutional AI & RLHF
How frontier models are aligned with human values. Understand RLHF reward modeling and Constitutional AI principles.
Day 3
Frontier Reasoning Models
Explore o3, o4-mini, and Claude's extended thinking. Learn chain-of-thought reasoning and cost trade-offs.
Day 6
OpenAI Agents SDK
Master the OpenAI API ecosystem: Chat Completions, Assistants API v2, and the Responses API.
Day 10
Claude Code (Agentic CLI)
Build with Claude Code's .claude/ architecture: slash commands, CLAUDE.md configuration, specialist sub-agents.
Day 43
GitHub Copilot Ecosystem
Navigate the Copilot platform: extensions, workspace agents, MCP integration, and Copilot Chat customization.
Day 44
Azure AI Foundry
Deploy and manage AI models on Azure: model catalog, prompt flow, responsible AI dashboards.
Day 45
RAG & Fine-tuning
Build retrieval-augmented generation pipelines. Covers vector databases, embeddings, chunking, and distillation.
Days 13-14
Evals & Benchmarks
Design evaluation suites that measure what matters. Learn benchmark design and eval-driven development.
Day 18
Red-Teaming & Adversarial
Test AI systems for vulnerabilities: prompt injection, jailbreaks, and systematic red-teaming methodologies.
Day 53
Built-In Code Runner
Python & JavaScript — right in your browser

Every course day includes a runnable code lab. Python executes via Pyodide WebAssembly and JavaScript runs in a sandboxed iframe. No setup, no installs, no API keys.

PYTHON · WASM
# Day 1: Frontier model cost comparison
models = {
    "Claude Sonnet 4.6":  {"ctx":"1M",  "in":3.0,  "out":15.0},
    "GPT-5.4":            {"ctx":"1M",  "in":2.5,  "out":15.0},
    "Gemini 2.5 Pro":     {"ctx":"1M",  "in":1.25, "out":10.0},
    "DeepSeek R1":        {"ctx":"128K","in":0.55, "out":2.19},
}
for name, s in models.items():
    cost = (500/1e6*s['in'] + 300/1e6*s['out']) * 1000
    print(f"{name:<22}  ${cost:.4f}")
▶ Sign in to run code in the full course editor
Start coding in the course → 60 code labs · Python & JavaScript · Zero setup