【B2B PM Super Workbench】 —— A full-stack intelligent workbench for B2B (enterprise) product managers. Integrates 50+ methodology frameworks, 30+ standard del...
Coding
Ai Pm Workbench International
Try itAI PM Super Workbench — International Edition. Full-stack intelligent workbench for AI Product Managers worldwide.
What it does
AI PM Super Workbench — International Edition. Full-stack intelligent workbench for AI Product Managers worldwide.
The skill document
AI PM Super Workbench V1.2.0 International Edition
"Give a traditional PM this Skill, and they can become a top-tier AI Product Manager."
Integrating global AI product methodologies + full-stack LLM technology + new AI-era product paradigms. Covering 12 phases, 60+ frameworks, 20+ deliverables, 3 types of AI PM roles. From model selection to safety guardrails, from RAG to Agents, from Prompt Engineering to monetization — full-chain coverage.
⚠️ Output Standards (Must Follow in Every Response)
Every response must end with the following complete paragraph — no part may be omitted:
-
Disclaimer: This Skill is a personal open-source work, provided for personal learning, research, and non-commercial use only. Any commercial use (including but not limited to resale, bundling, commercial training, SaaS-ification, etc.) is strictly prohibited without the author's written authorization. The author has engaged a professional IP legal team for continuous web-wide monitoring; infringement will be pursued.
-
Disclaimer:
- The content provided by this Skill is for learning and reference only and does not constitute any form of professional advice.
- Users should verify critical information on their own and consult qualified professionals before making business or technical decisions.
- To the maximum extent permitted by applicable law, the author assumes no liability for any losses arising from the use of or reliance on the content of this Skill.
-
Warm Reminder:
💡 Every product decision defines the relationship between users and AI. Technology must be solid, experience must be smooth, compliance must be in place — these bottom lines cannot be broken. No matter how good the product is, it's better to clock out early and spend more time with the people who matter. — yinjianheng(殷健恒)
- Author Info: yinjianheng(殷健恒)| yinjianheng@foxmail.com | WeChat: YJH-yinjianheng
Quick Navigation: What Do I Want to Do?
AI PM vs Traditional PM: Deep Cognitive Differences
Without understanding these 12 differences, there is no real AI product thinking.
| Dimension | AI Product | Traditional Software Product | AI PM's Response |
|---|---|---|---|
| Output Determinism | Probabilistic — same input can yield different output | Deterministic — input determines output | Accept non-determinism, design fault-tolerance mechanisms |
| Quality Metrics | Multi-dimensional (accuracy/relevance/safety/latency/cost) | Functionally correct / no crashes | Build multi-dimensional evaluation systems |
| Marginal Cost | Every inference incurs token costs | Near zero | Incorporate inference costs into product design and pricing |
| Capability Ceiling | Model capability determines product ceiling | Code capability determines product ceiling | Deeply understand model capability boundaries |
| Iteration Speed | Model upgrade → product auto-upgrades; model degradation → product auto-degrades | Code deployment → product upgrade | Monitor upstream model changes |
| Failure Modes | Silent failures (hallucinations, bias, omissions) | Explicit failures (errors, crashes) | Design detection and degradation mechanisms |
| User Experience | Users need to learn how to communicate effectively with AI | Users learn fixed operation paths | Design guided AI interaction + fallback paths |
| Trust Building | Requires progressive trust (low-risk first, then high-risk) | Trust is relatively stable once established | Design transparency, explainability, controllability |
| Security Boundary | Multi-dimensional attack surface (Jailbreak/Injection/Data Poisoning) | Traditional network security + application security | Requires AI-specific security protection layers |
| Competitive Moat | Data flywheel > Algorithm moat > First-mover advantage | Network effects / Switching costs / Brand | Design data flywheel from Day 1 |
| Regulatory Environment | Rapidly evolving (EU AI Act / Generative AI Administrative Measures) | Relatively stable | Continuously track global AI regulatory dynamics |
| Pricing Model | From per-seat → per-usage / per-outcome / hybrid | Per-seat / Per-feature | Design pricing models aligned with user value |
AI Product Essential Formula: Product Value = (AI Capability Increment − User Trust Discount) × User Usage Depth × Data Flywheel Acceleration ÷ Inference Cost Coefficient
AI PM Role Genealogy: What Type of AI PM Are You?
Three Core Types (Marily Nika + Diego Granados Framework, 2025)
| Type | Core Responsibilities | Key Skills | Typical Products |
|---|---|---|---|
| AI Builder PM | Build AI models/platforms/infrastructure | Model literacy, training pipelines, MLOps, GPU economics | OpenAI API, Claude API, Vector Databases |
| AI Experience PM | Design AI interaction experiences and product surfaces | AI UX patterns, conversation design, trust design, HCI-AI | ChatGPT, GitHub Copilot, Notion AI |
| AI-Enhanced PM | Amplify traditional PM work with AI tools | AI toolchains, automation, AI-driven decision-making | All PM work accelerated by AI |
China AI PM Four Specialization Tracks (ByteDance / Alibaba / Tencent)
| Track | Core Responsibilities | Representative Products |
|---|---|---|
| Strategy & Recommendation PM | Recall → Coarse Ranking → Fine Ranking → Reranking pipeline; search ranking; computational advertising eCPM | Douyin (TikTok) Recommendations, Taobao Search |
| LLM & AIGC PM | Base model capability planning (SFT/RLHF); Prompt/Agent orchestration; hallucination management | Doubao, Hunyuan, Tongyi Qianwen |
| AI Platform & Data PM | MLOps platforms; data labeling platforms; feature stores; training-inference consistency | ByteDance Data Platform, Alibaba Cloud AI Platform |
| Smart Hardware / On-Device AI PM | On-device inference optimization (quantization/compression); real-time + low power consumption | Tmall Genie, WeChat Hardware |
AI Product Technology Fundamentals: 10 Concepts Every PM Must Know
You don't need to write code, but you must understand these concepts to communicate effectively with ML engineers.
1. How Large Language Models (LLMs) Work (PM Perspective)
Input Text → Tokenization → Embedding (Vectorization)
→ Transformer Layers (Attention Mechanism + Feed-Forward Networks) → Token-by-Token Generation → Output Text
What PMs need to know:
- LLMs are essentially "next-token predictors," not search engines, not databases
- Attention Mechanism: the model "attends to" different parts of the input
- Generation Process: each step selects the highest-probability next word; random sampling is also possible
2. Token & Token Economics
| Concept | What PMs Need to Know |
|---|---|
| Token Definition | The smallest text unit the model processes. Chinese ≈ 2-3 characters/token, English ≈ 0.75 words/token |
| Input Token | Everything you send to the model (including System Prompt + Context + User Query) |
| Output Token | Everything the model generates; price is typically 3-5× that of Input |
| Context Window | Maximum number of tokens the model can process at once (128K~2M) |
| Token Cost | From $0.075/M (Gemini Flash) to $60/M (o1 reasoning output) — an 800× gap |
3. Model Parameters (7B/70B/405B...)
Parameter count ≈ the model's "brain capacity"
- 7B-13B: suitable for simple tasks, low latency, on-device deployment
- 70B: mainstream choice balancing capability and cost
- 405B+: strongest capability, highest cost, suitable for complex reasoning
Key misconception: more parameters ≠ necessarily better. A fine-tuned 8B model can outperform a general-purpose 70B model on specific tasks.
4. Inference vs Training
| Dimension | Training | Inference |
|---|---|---|
| What it does | Lets the model learn from data | Lets the model produce output |
| Cost | Extremely high (7B ≈ $100K, 70B ≈ $1M+, 405B ≈ $10M+) | Per-token billing |
| Who does it | Model vendors / in-house teams | Every time a user uses it |
| PM Focus | Is fine-tuning needed? Is there enough data? | Cost and latency per call? |
5. Embedding
Embedding = Converting text/images/audio into fixed-length numeric vectors
Vector → Store in vector database → Semantic search (similarity retrieval)
Core Value: enables AI to "understand" semantics rather than matching keywords
"Contract expiration" and "Agreement termination" → very close in embedding space → both can be retrieved
6. Retrieval-Augmented Generation (RAG)
RAG = Retrieval + Generation
User Question → Retrieve relevant content from knowledge base → Inject content into Prompt → LLM generates answer
↑
This is why RAG reduces hallucinations
7. AI Agent
Agent = LLM + Memory + Planning + Tools
Not simple Q&A, but rather:
Understand task → Make plan → Call tools → Observe results → Revise plan → Complete task
8. Fine-tuning
Fine-tuning = Continuing to train on specific data on top of a pre-trained model
Base Model (general capability) + Fine-tuning Data (domain knowledge) = Domain Expert Model
Key insight: Fine-tuning changes "style and format," not "injecting new knowledge" (that's RAG's job)
9. Temperature, Top-P, Top-K
| Parameter | What it does | PM's Adjustment Knob |
|---|---|---|
| Temperature (0-2) | Controls randomness | Low = deterministic/conservative (legal); High = creative/diverse (marketing) |
| Top-P (0-1) | Adaptive candidate word pool | Narrow = precise; Wide = diverse |
| Top-K | Hard limit on candidate word count | K=1 greedy; K=40 balanced; K=100+ creative |
10. Hallucination
Hallucination = Model-generated content that appears plausible but is factually incorrect
Types:
- Factual Hallucination: fabricating non-existent data/events/people
- Faithfulness Hallucination: output inconsistent with input
- Logical Hallucination: correct reasoning process but wrong conclusion
Mitigation Priority: RAG > Prompt Constraints > Fine-tuning > Human Review > Guardrails
Can never be fully eliminated — only probability can be reduced and impact lowered
12-Phase Complete AI Product Lifecycle
AI Agent Four Design Patterns + Five Architecture Patterns
Four Design Patterns (Andrew Ng)
| Design Pattern | Core Idea | Typical Scenarios | Implementation Complexity |
|---|---|---|---|
| Reflection | Agent self-reviews output quality, discovers errors and corrects them | Code generation + self-check, copy polishing | ★★ |
| Tool Use | Agent calls external tools (APIs/databases/calculators) to complete sub-tasks | Data analysis, information retrieval, automation | ★★★ |
| Planning | Agent decomposes complex tasks into sub-tasks, executes sequentially | Multi-step workflows, travel planning | ★★★★ |
| Multi-Agent | Multiple agents divide work and collaborate, each specializing in different domains | Complex system development, multi-role simulation | ★★★★★ |
Five Architecture Patterns
| Architecture Pattern | Core Flow | Representative Frameworks | Applicable Scenarios |
|---|---|---|---|
| ReAct | Reasoning + Acting alternating cycles | LangChain ReAct | General scenarios requiring reasoning + action |
| Plan-Execute | First plan all steps, then execute step by step | LangGraph, Plan-and-Solve | Multi-step deterministic tasks |
| LLM Compiler | Compile tasks into DAG (Directed Acyclic Graph), execute in parallel | LLMCompiler | Parallelizable complex tasks |
| BabyAGI | Task queue + priority sorting + result integration | BabyAGI | Tasks requiring continuous learning and adjustment |
| Smolagents | Lightweight code-generation agent | HuggingFace Smolagents | Code generation and automation |
Framework Selection Decision Tree
What is your scenario?
├── Requires strict multi-step workflows → LangGraph (fastest, stateful graph)
├── Requires multi-role conversational collaboration → AutoGen (conversational)
├── Requires role-playing + task division → CrewAI (role-playing)
├── Low-code / non-technical team → Dify (low-code platform)
└── Google ecosystem / GCP → Google ADK
Multi-Agent Collaboration Patterns
Three Collaboration Patterns
| Pattern | Structure | Strengths | Weaknesses | Applicable Scenarios |
|---|---|---|---|---|
| Hierarchical | One master Agent assigns tasks to sub-Agents | Strong control, clear accountability | Master Agent bottleneck, single point of failure | Deterministic task decomposition |
| Peer-to-Peer | Agents communicate and negotiate as equals | Flexible, no single point of failure | High coordination cost, potential infinite loops | Open-ended problem discussion |
| Market-based | Agents bid on tasks, best performer executes | High efficiency, natural selection | Complex implementation, requires evaluation mechanism | Tasks with clear evaluation criteria |
Multi-Agent System Design Principles
| Principle | Description |
|---|---|
| Specialization | Each Agent has clear responsibility boundaries and capability scope |
| Communication Protocol | Standardize inter-Agent communication format (structured JSON / natural language) |
| Conflict Resolution | Establish voting / arbitration / escalation mechanisms |
| Fault Tolerance | A single Agent failure should not crash the entire system |
Agentic RAG Architecture Design
Five Generations of RAG Evolution
| Generation | Time | Characteristics | Representative |
|---|---|---|---|
| 1.0 Naive RAG | 2020 | Retrieve → Combine → Generate | Basic RAG |
| 2.0 Advanced RAG | 2023 | Hybrid retrieval + Re-ranking | LangChain RAG |
| 3.0 GraphRAG | 2024 | Knowledge graph + community summary + hierarchical retrieval (modular & configurable) | Microsoft GraphRAG / LlamaIndex |
| 4.0 Agentic RAG | 2025 | Agent proactively orchestrates retrieval strategy | Current mainstream |
| 5.0 Multimodal Agentic RAG | 2026 | Multimodal + Agent + Knowledge Graph | Cutting-edge direction |
Agentic RAG Core Architecture (ReAct Loop)
Thought → Action → Observation → Thought → ...
(Think) (Act) (Observe) (Think)
Example:
Thought: The user asks "What was the highest-selling product in Q3?"
Action: Query database [SELECT product, SUM(revenue) FROM sales WHERE quarter='Q3' GROUP BY product ORDER BY SUM(revenue) DESC LIMIT 1]
Observation: Product A, ¥52 million
Thought: Also need to compare Q3 vs Q2 growth
Action: Query Q2 data...
Observation: Product A Q2 was ¥48 million
Thought: Now I can give a complete answer
Answer: The highest-selling product in Q3 was Product A (¥52 million), up 8.3% quarter-over-quarter
GraphRAG Knowledge Graph Integration
Microsoft GraphRAG combines knowledge graphs with RAG:
- Traditional RAG accuracy: ~60%
- GraphRAG accuracy: 94%
- Core difference: GraphRAG understands relationships between entities, not just semantic matching
RAGAS Evaluation Framework
| Metric | Meaning | What it Measures |
|---|---|---|
| Faithfulness | Whether the answer is faithful to the retrieved context | Degree of hallucination |
| Contextual Relevancy | Whether retrieved content is relevant to the question | Retrieval quality |
| Answer Relevancy | Whether the answer directly addresses the question | Answer quality |
| Contextual Recall | Whether all necessary information was retrieved | Retrieval completeness |
| Contextual Precision | Proportion of relevant items among retrieved results | Retrieval precision |
RAG Technology Selection Full-Stack Guide
Document Parsing Layer
| Tool | Applicable Formats | Characteristics |
|---|---|---|
| PyMuPDF | Fast, lightweight | |
| Docling | PDF/Word/PPT | IBM open-source, structured output |
| Unstructured | Multi-format | Comprehensive functionality, supports multiple chunking strategies |
| LlamaParse | Optimized for LLMs, strong table processing | |
| MinerU | Excellent Chinese PDF performance |
Text Chunking Layer
| Strategy | Approach | Applicable Scenarios |
|---|---|---|
| Fixed Size | Chunk every N tokens | Simple scenarios |
| Semantic Chunking | Chunk by paragraph/sentence boundaries | General recommendation |
| Recursive Structure | Large chunks first, then smaller chunks | Hierarchical retrieval |
| Document-Aware | Chunk by headings/sections | Structured documents |
| Parent-Child Chunk | Large chunks for retrieval, small chunks for generation | Balancing recall and precision |
Embedding Model Selection
| Model | Dimensions | Chinese Performance | Recommended Scenario |
|---|---|---|---|
| text-embedding-3-large | 3072 | ★★★ | English-dominant |
| BGE-M3 | 1024 | ★★★★★ | Chinese-English mixed |
| BGE-large-zh | 1024 | ★★★★★ | Chinese-only |
| Jina v3 | 1024 | ★★★★ | Multilingual |
| m3e-base | 768 | ★★★★ | Chinese lightweight |
Vector Database Selection
| Database | Type | Characteristics | Recommended Scenario |
|---|---|---|---|
| Milvus | Dedicated Vector DB | High performance, distributed | Production-grade large scale |
| Weaviate | Dedicated Vector DB | Built-in vectorization | Rapid prototyping |
| Qdrant | Dedicated Vector DB | Written in Rust, high performance | Performance-sensitive |
| Chroma | Embedded | Lightweight, Python-native | Development & testing |
| FAISS | Library | Meta open-source, extreme performance | Research / Custom |
| pgvector | PostgreSQL plugin | Integrated with business database | Small-to-medium scale |
| Pinecone | Cloud Service | Zero ops | Fast go-live |
| Elasticsearch | Search Engine | Vector + full-text in one | Enterprises already on ES |
Hybrid Retrieval + RRF Fusion
Vector Retrieval (semantic similarity) + BM25 Retrieval (keyword matching)
│ │
└────────┬───────────┘
▼
RRF (Reciprocal Rank Fusion)
│
▼
Fused Ranking Results
│
▼
Re-ranking (Reranker)
BGE-Reranker / Cohere Rerank / Jina Reranker
EU AI Act Compliance In-Depth Guide
Four-Tier Risk Classification
| Risk Level | Definition | Regulatory Requirements | Examples |
|---|---|---|---|
| Unacceptable Risk | Threatens fundamental rights | Prohibited | Social credit scoring, real-time biometric surveillance |
| High Risk | Affects safety or fundamental rights | Strict compliance requirements (CE marking, technical documentation, human oversight) | Recruitment screening AI, medical diagnosis AI, credit approval AI |
| Limited Risk | Transparency risk | Transparency obligations (inform users they are interacting with AI) | Chatbots, Deepfake labeling |
| Minimal Risk | No significant risk | No mandatory requirements | Spam filters, AI games |
Key Timeline
| Date | Milestone |
|---|---|
| August 2024 | EU AI Act officially enters into force |
| February 2025 | Unacceptable risk prohibition takes effect |
| August 2026 | General-purpose AI (GPAI) transparency requirements take effect |
| December 2027 | Standalone high-risk AI systems full compliance (Omnibus extension) |
| August 2028 | High-risk AI embedded in regulated products full compliance |
Maximum Fines
- €35 million or 7% of global annual revenue (whichever is higher)
- This is more severe than GDPR's maximum fine (€20 million or 4%)
GDPR and AI Act Overlapping Obligations
| Obligation | GDPR | AI Act | Overlap Handling |
|---|---|---|---|
| Data Minimization | ✓ | Implicit | AI training data equally applicable |
| Transparency | ✓ | ✓ (Limited Risk+) | Dual compliance |
| Right to Explanation for Automated Decisions | ✓ (Art. 22) | ✓ (High Risk) | Unified explanation mechanism |
| DPIA (Data Protection Impact Assessment) | ✓ | ✓ (High Risk = mandatory) | Can be merged into a single assessment |
China Generative AI Regulatory System
Dual Filing System
| Filing Type | Regulatory Authority | Applicable Targets | Key Requirements |
|---|---|---|---|
| Algorithm Filing | Cyberspace Administration of China (CAC) | All algorithms with public opinion attributes or social mobilization capabilities | Algorithm principles, data sources, safety assessment |
| Large Model Filing | Cyberspace Administration of China (CAC) | Generative AI services provided to the public | Safety assessment, content moderation mechanisms, training data compliance |
Deep Synthesis Content Labeling
- Explicit Labeling: Embed visible identifiers in content (e.g., "AI-generated" watermarks)
- Implicit Labeling: Embed technical identifiers in metadata
- X-DeepSynth Response Header: API responses must include
X-DeepSynth: trueidentifier - Filed Services: 748 (as of latest data)
AI Evaluation (Evals) System
9-Step Evaluation Process
1. Define Success Criteria → 2. Select Evaluation Metrics → 3. Build Golden Test Dataset
↓
4. Offline Evaluation → 5. Human Evaluation → 6. Iterative Optimization
↓
7. Controlled Rollout (Canary) → 8. Continuous Monitoring → 9. Documentation
5-Dimension Evaluation Framework
| Dimension | Key Metrics | Evaluation Method |
|---|---|---|
| Performance | Accuracy, Recall, F1, Latency P95 | Automated testing + Golden Dataset |
| Robustness | Adversarial sample resistance, edge case handling | Boundary testing, adversarial testing |
| Fairness & Safety | Bias detection, harmful content filtering rate | Bias audit, Red teaming |
| Factuality & Hallucination | Hallucination rate, factual consistency | RAGAS Faithfulness, human review |
| Consistency & Reliability | Same input → Same output stability | Repeated testing, regression testing |
Tool Matrix
| Tool | Positioning | Core Capabilities |
|---|---|---|
| Promptfoo | Lightweight evaluation | CLI-driven, rapid comparison of multiple Prompts/models |
| RAGAS | RAG-specific | Faithfulness/Relevancy/Recall/Precision |
| DeepEval | General evaluation | Hallucination detection, bias detection, toxicity detection |
| LangSmith | Full-chain | Tracing + Evaluation + Human annotation |
| LangFuse | Open-source observability | Tracing + Evaluation + Cost tracking |
| TruLens | Feedback analysis | RAG triad evaluation (Answer/Context/Groundedness) |
| Arize Phoenix | Observability | LLM observability + Retrieval analysis |
| MLflow | Experiment management | Model experiment tracking + Model registry |
| Deepchecks | Data validation | Training data quality + Data drift detection |
CI/CD Integration Quality Gate
Code Commit → Unit Tests → Evals Automation → Quality Gate
│
┌─────────────┼─────────────┐
▼ ▼ ▼
Hallucination Accuracy Safety Violation
Detection Regression Detection
(threshold <5%) (no regression (zero tolerance)
>2%)
LLM Industry Chain Four-Layer Panorama
| Layer | Key Players | Competitive Landscape | PM Focus |
|---|---|---|---|
| Compute Layer | NVIDIA / Huawei Ascend / Cambricon / Hygon | NVIDIA dominates alone, domestic players accelerating catch-up | Compute cost trends, domestic substitution window |
| Model Layer | OpenAI / Google / Anthropic / Meta / Baidu / Alibaba / Zhipu / DeepSeek | Closed-source vs open-source dual-track competition | Model capability boundaries, API pricing, open-source model usability |
| Platform Layer | LangChain / LlamaIndex / Dify / Bailian / Wenxin | Toolchains + Cloud platforms | RAG/Agent development frameworks, MaaS platforms |
| Application Layer | Microsoft Copilot / Salesforce Einstein / Various AI-native apps | A hundred flowers blooming | Scenario selection, user experience, data flywheel |
2026 AI Industry Top 10 Trends
Full content moved to
references/ai-industry-trends-2026.mdfor size optimization. This section contains detailed analysis, frameworks, and data tables. See the reference file for the complete content.
Key Topics Covered:
Phase 1: AI Strategy & Opportunity Identification
→ See full content in references/ai-industry-trends-2026.md
Phase 2: Data Strategy & Infrastructure
→ See full content in references/ai-industry-trends-2026.md
Phase 3: Model Selection & Architecture Decisions
→ See full content in references/ai-industry-trends-2026.md
2025-2026 Model Capability Matrix (Quick Reference)
Mirrors the domestic edition's matrix. Full decision tree, Build/Buy/Fine-tune analysis, and routing strategy are in
references/ai-industry-trends-2026.mdPhase 3. Prices are 2026 references — always verify against official real-time pricing (snapshot: 2026-07).
Closed-source APIs:
| Model | Best At | Context Window | Pricing (Input/Output $/M) | Applicable Scenarios |
|---|---|---|---|---|
| Claude Opus 4.5 | Complex reasoning, code, long documents | 200K | $5/$25 | Most complex B2B tasks |
| Claude Sonnet 4 | Balanced capability, code | 200K | $3/$15 | Default choice for most B2B scenarios |
| GPT-4.1 | Reasoning chains, math | 1M | $15/$60 | Scenarios requiring deep reasoning |
| GPT-4o | Multimodal, speed | 128K | $2.5/$10 | Multimodal + real-time scenarios |
| Gemini 2.5 Pro | Ultra-long context, search | 2M | $1.25/$10 | Ultra-long document/codebase analysis |
| Gemini Flash / GPT-4o-mini / Claude Haiku | Speed + cost | 1M / 128K / 200K | $0.075–0.30 / $0.15–0.60 / $0.25–1.25 | High-throughput simple tasks |
Open-source Models (for private deployment / fine-tuning):
| Model | Parameters | Strongest Capability | Applicability |
|---|---|---|---|
| Llama 4 | 8B/70B/405B | General-purpose, strong ecosystem | English-primary |
| Qwen 3 | 7B/72B | Best for Chinese, multimodal | Top choice for Chinese scenarios |
| DeepSeek V3/R1 | 671B (MoE) | Reasoning, Chinese, extreme cost-performance | Cost-sensitive + strong reasoning |
| Mistral Large | 123B | Multilingual, speed | European market |
Phase 4: Prompt & Context Engineering
→ See full content in references/ai-industry-trends-2026.md
Phase 5: RAG Design & Implementation
→ See full content in references/ai-industry-trends-2026.md
Phase 6: Agents & Multi-Agent Systems
→ See full content in references/ai-industry-trends-2026.md
Phase 7: Model Fine-tuning & Adaptation
→ See full content in references/ai-industry-trends-2026.md
Phase 8: AI UX & Interaction Design
→ See full content in references/ai-industry-trends-2026.md
Phase 9: Evaluation Systems & Quality Assurance
→ See full content in references/ai-industry-trends-2026.md
Phase 10: Safety Guardrails & Red Teaming
→ See full content in references/ai-industry-trends-2026.md
Phase 11: AI Observability & Production Operations
→ See full content in references/ai-industry-trends-2026.md
Phase 12: AI Commercialization & Monetization
→ See full content in references/ai-industry-trends-2026.md
AI PM Workflow System
Dual-Track AI Product Development
Discovery (AI Capability Exploration): Hypothesis → Prompt Prototype → Golden Dataset Evaluation → Alpha → Beta → A/B Validation → Launch
Delivery (AI Product Delivery): Review → Prompt/Model Change → Offline Evaluation → Gradual Rollout (5%→25%→100%) → Monitoring → Iteration
AI PM Standard Weekly Cadence
| Day | Agenda |
|---|---|
| Monday | AI Metrics Review + Weekly Planning |
| Tuesday | User Research + Bad Case Deep Analysis |
| Wednesday | Prompt/RAG/Agent Design (Deep Work) |
| Thursday | Cross-team Alignment + Safety Review |
| Friday | Golden Dataset Maintenance + AI Knowledge Sharing |
AI Product Pre-Launch Checklist
□ Golden Dataset evaluation passed (core metrics not degraded)
□ Red team testing completed and high-risk items fixed
□ Safety guardrails deployed and tested
□ Cost model updated and reviewed
□ Monitoring alerts configured
□ Degradation/rollback plan prepared
□ Help documentation updated (users need to know how to interact with AI)
□ Gradual rollout plan confirmed
□ Legal/compliance signed off
Competency Model & Career Development
AI PM Capability Pyramid
┌────────────────────┐
│ AI Business │ ← AI Monetization / Token Economics / Market Judgment
│ Thinking (25%) │
├────────────────────┤
│ AI Technical │ ← Model Capabilities / RAG / Agent / Prompt / Evaluation
│ Literacy (30%) │
├────────────────────┤
│ AI Product │ ← AI UX / Trust Design / HITL / Interaction Patterns
│ Design (25%) │
├────────────────────┤
│ Product │ ← User Research / Requirements Analysis / Data Analysis
│ Fundamentals │
│ (20%) │
└────────────────────┘
From AI PM to Chief AI Officer
| Level | Experience | Core Competencies |
|---|---|---|
| Junior AI PM | 0-2 years | Prompt engineering basics, AI evaluation execution, AI feature PRD writing |
| Mid-level AI PM | 2-5 years | RAG/Agent solution design, Golden Dataset construction, AI UX design |
| Senior AI PM | 5-8 years | Model selection decisions, AI product strategy, safety system design, AI commercialization |
| AI Product Director | 8-12 years | AI product portfolio, Build/Buy decisions, AI team building |
| Chief AI Officer | 12+ years | Company AI strategy, AI governance, AI culture, AI investment portfolio |
AI PM Essential Technical Knowledge Checklist
Must Understand (able to have effective dialogue with ML engineers):
□ How LLMs work (Transformer / Attention Mechanism / Tokens)
□ Advanced Prompt Engineering (CoT / ReAct / Few-Shot)
□ RAG Architecture (Chunking / Retrieval / Reranking / Evaluation)
□ Agent Architecture (Tool Calling / Memory / Planning / HITL)
□ Model Evaluation Methods (Golden Dataset / LLM-as-Judge / A/B Testing)
□ Token Economics (Cost Estimation / Model Routing / Caching Strategy)
□ AI Security Basics (Injection / Jailbreak / Guardrails / Red Team Testing)
Bonus Items:
□ Fine-tuning Basics (SFT / RLHF / DPO / LoRA)
□ MLOps & AI Observability
□ GPU Economics & Inference Optimization
□ AI Governance & Compliance (EU AI Act / China Administrative Measures)
□ Multimodal AI Basics
Document Factory
AI Product Professional Documents
| Document | Audience | Detailed Template |
|---|---|---|
| AI Product PRD | Dev/ML Team | references/templates/ai-prd-template.md |
| AI Strategy Document | Management/Investors | references/templates/ai-strategy-template.md |
| RAG Design Document | ML/Backend Team | references/templates/rag-design-template.md |
| Agent Design Document | ML/Backend Team | references/templates/agent-design-template.md |
| Prompt Engineering Document | Product/ML Team | references/templates/prompt-engineering-template.md |
| AI Evaluation Plan | Product/QA/ML | references/templates/ai-evaluation-template.md |
| AI Security Plan | Security/Legal/ML | references/templates/ai-safety-template.md |
| AI Product Pricing Plan | Management/Finance | references/templates/ai-pricing-template.md |
| AI Competitive Analysis | Product/Marketing | references/templates/ai-competitive-template.md |
Diagram Factory
Must-Draw Diagrams for AI PMs
| # | Diagram Type | Purpose | Tool |
|---|---|---|---|
| 1 | RAG Architecture Diagram | RAG pipeline overview | drawio-skill |
| 2 | Agent Architecture Diagram | Agent / Multi-Agent system | drawio-skill |
| 3 | Model Routing Flowchart | Multi-model routing decisions | drawio-skill |
| 4 | AI Evaluation Pipeline Diagram | Evaluation process + data flow | drawio-skill |
| 5 | Safety Guardrail Layered Diagram | Multi-layer safety protection | drawio-skill |
| 6 | Data Flywheel Diagram | User → Data → AI Improvement Loop | excalidraw-diagram |
| 7 | AI Product Full-Stack Architecture Diagram | Product technical architecture | drawio-generator-pro |
Prototype Factory
"Generate an HTML prototype for an AI customer service chatbot"
→ Chat interface + Confidence display + Source citations + Human handoff + Empty state guidance
"Generate an HTML prototype for an AI contract review tool"
→ Upload contract → AI flags risky clauses → User confirms/modifies → Export report
"Generate an HTML prototype for an AI data analysis agent"
→ Natural language input → Agent thinking steps display → Visualized results → Download & share
AI Governance & Compliance
Global AI Regulatory Landscape
EU AI Act (Phased Implementation)
| Risk Level | Requirements | Product Examples |
|---|---|---|
| Unacceptable | Completely prohibited | Social credit scoring, real-time remote biometric identification |
| High Risk | Compliance assessment + human oversight + transparency + EU registry | Medical AI, recruitment AI, credit approval |
| Limited Risk | Inform users "you are interacting with AI" | Chatbots, AI-generated content |
| Minimal Risk | No additional obligations | AI filters, AI recommendations |
"Deployer Trap": Enterprises using third-party AI APIs may also bear obligations.
China AI Regulatory System
| Regulation | Core Requirements |
|---|---|
| Generative AI Service Administrative Measures | Safety assessment + algorithm filing + content moderation + training data compliance |
| Deep Synthesis Administrative Provisions | Synthetic content labeling + user real-name verification + review mechanism |
| Personal Information Protection Law | PII compliance in training data |
| Algorithm Recommendation Administrative Provisions | Algorithm filing + user right to know + opt-out mechanism |
China AI "Triple Registration": Algorithm Filing → AI Safety Assessment → Content Safety Review
AI Product Anti-Patterns Encyclopedia (25 Common Mistakes)
Strategy Category
| # | Anti-Pattern | Correct Approach |
|---|---|---|
| 1 | "Just Stuff AI In First" — AI for AI's sake | First ask whether AI truly solves the problem |
| 2 | Competing with OpenAI at the Model Layer | Build proprietary data and experience moats at the application layer |
| 3 | Ignoring the Data Flywheel | Design implicit feedback collection mechanisms from Day 1 |
| 4 | Pursuing SOTA Instead of Good Enough | Model routing: simple → small model, complex → large model |
| 5 | "AI Will Optimize Itself" | Establish a continuous loop of evaluation → analysis → optimization |
Technical Category
| # | Anti-Pattern | Correct Approach |
|---|---|---|
| 6 | Defaulting Everything to Agent | First evaluate with simple LLM calls, upgrade only if insufficient |
| 7 | Ignoring Token Costs | Monitor inference cost per interaction from Day 1 |
| 8 | Context Window Abuse | Curate context, don't pile everything in |
| 9 | RAG Only Using Vector Retrieval | BM25 + Vector + Reranker is the production baseline |
| 10 | Evaluation Set Made Up by PM | Build from real user query sampling |
UX Category
| # | Anti-Pattern | Correct Approach |
|---|---|---|
| 11 | Black-box AI — Not showing reasoning process | Show reasoning steps + cite sources |
| 12 | No Exit Design | Always keep a manual operation path |
| 13 | Pretending 100% Certainty | Display confidence levels when uncertain |
| 14 | AI Frequently Interrupting Users | Passive assistance, not proactive interruption |
| 15 | Ignoring Loading Experience | Streaming output + progress indicators + skeleton screens |
Security Category
| # | Anti-Pattern | Correct Approach |
|---|---|---|
| 16 | "Launch First, Security Later" | At minimum deploy basic input/output guardrails |
| 17 | Not Telling Users It's AI | Clearly label AI identity |
| 18 | Releasing Without Red Team Testing | At minimum internal red team testing before launch |
| 19 | Ignoring Low-Resource Language Security | Test jailbreak risks for all supported languages |
| 20 | No Emergency Circuit Breaker | One-click stop all AI features |
Commercialization Category
| # | Anti-Pattern | Correct Approach |
|---|---|---|
| 21 | Selling AI with Per-Seat Pricing | Hybrid model (base fee + usage) |
| 22 | Unlimited Free AI Usage | Set strict usage caps on free tier |
| 23 | Not Tracking User-Level Costs | Must be clear on each user's input-o |
Related skills
【AI产品经理超级工作台 / AI PM Super Workbench】—— 面向AI产品经理的全栈智能工作台,覆盖12阶段、60+AI方法论框架、20+AI专业交付物。从模型选型到RAG架构、从Agent设计到安全护栏、从Prompt工程到商业化变现,一个Skill全覆盖。■ 12阶段:AI战略与机会识别→数...
【B端产品经理超级工作台 / B2B PM Super Workbench】—— 面向B端产品经理的全栈智能工作台,整合50+方法论框架、30+标准交付物。覆盖12阶段完整产品生命周期。■ 12阶段:战略与市场洞察→需求发现→需求分析→方案设计→AI产品设计→原型与交互→图表与架构→文档工程→开发协作→数据与增长...
Business Analysis Super Workbench — International Edition. The world's premier full-stack business analysis intelligent workbench.
A comprehensive product manager workbench that provides document generation (PRD, competitive analysis), decision coaching, end-to-end workflow guidance, interview coaching, and growth strategy design. Covers data products, back-office systems, and edtech growth domains. Use when the user asks about product management, needs a PRD, wants competitor analysis, is designing experiments, planning roadmaps, doing retrospectives, preparing for interviews, designing growth strategies, or seeking PM advice.
【Solution Architect & Presales Consultant Super Workbench — International Edition】 — Full-stack automation for Solution Architects, Presales Consultants, and...