Skills MCP Model 博客 提交 Skills

AI 开发 教程

系统化的 AI 开发学习路径。从提示词工程到模型微调,从 RAG 到 Agent 开发,覆盖 AI 应用开发全栈知识。共 142 篇教程,18 个分类,入门到高级全覆盖。

找到 20 篇教程

Agent Development Intermediate

DeepSeek Agent Development Tutorial

Complete tutorial for building AI agents based on DeepSeek: ReAct mode, tool calling, memory management, and multi-agent collaboration. Includes practical code for LangChain Agent, AutoGPT-style autonomous agents, and Function Calling Agent.

AI Agent ReAct 工具调用 多Agent
2025-06 25 分钟阅读
阅读教程 →
Agent Development Beginner

Introduction to the MCP Protocol: Building Standard Interfaces for AI Tool Calls

MCP (Model Context Protocol) is the hottest AI tool calling standard protocol in 2026. This article explains the MCP protocol principles from scratch, Server construction, Client integration, and a complete integration solution with DeepSeek API.

MCP协议 工具调用 标准接口 Agent开发 协议设计
2026-08 14 分钟阅读
阅读教程 →
Agent Development Advanced

Multi-Agent Collaboration Patterns in Practice: From Orchestration to Autonomy

Single agents have limited capabilities; multi-agent collaboration is key to unlocking complex tasks. This article starts from practical experience, compares mainstream collaboration modes such as Supervisor, GroupChat, and Sequential, and provides runnable code implementations.

多Agent 协作模式 编排 Supervisor
2026-08 25 分钟阅读
阅读教程 →
Agent Development Intermediate

MCP Server Development in Practice: From Protocol to Production-Grade Tool Service

MCP is becoming the standard protocol for AI tool invocation. Starting from protocol principles, this article walks you through implementing a production-grade MCP server, covering tool definition, authentication, error handling, streaming responses, and deployment operations.

MCP 工具服务器 Agent开发 协议
2026-08 24 分钟阅读
阅读教程 →
Agent Development Advanced

Agent State Machine and Fault-Tolerant Orchestration: Building Reliable Agents

In real business, agents fail: tool timeouts, context overflow, loop deadlocks. This article models the agent lifecycle with a finite state machine and explains the complete implementation of fault-tolerant orchestration, including timeout circuit breaking, retry compensation, and session recovery.

状态机 容错 编排 可靠性
2026-08 25 分钟阅读
阅读教程 →
Agent Development Advanced

Agent Memory System Design: Short-Term, Long-Term, and Tool Memory

Memory is the foundation of Agent intelligence. This article models four layers: working, episodic, semantic, and tool memory, covering compression, retrieval, writing, and forgetting strategies. Implement a complete Agent memory subsystem with vector memory and reflection using DeepSeek API.

Agent 记忆系统 向量记忆 会话记忆 反思机制 长期规划 记忆压缩 LangChain
2026-08 36 分钟阅读
阅读教程 →
Agent Development Beginner

Agent Loop Basics: Understanding AI Autonomous Workflows from Scratch

Agent Loop is the hottest AI development paradigm today. Starting from the ReAct pattern, this article helps you understand how AI achieves the autonomous loop of observation → planning → execution → feedback, and master the core concepts of Agent development.

Agent Loop ReAct AI工作流 入门教程
2026-07 15 分钟阅读
阅读教程 →
Agent Development Intermediate

Tool Calling Loop: Enabling AI to Use External Tools

Function Calling is a key capability of Agent Loop. This article explains in depth how AI autonomously selects tools, calls APIs, and parses results to build truly capable AI assistants.

Agent Loop Function Calling 工具调用 API集成
2026-07 18 分钟阅读
阅读教程 →
Agent Development Intermediate

Reflection and Self-Correction: Doubling AI Output Quality

Reflection is a key technique to improve the quality of AI output. This article explains how to enable AI to self-evaluate, discover errors, and iteratively correct them, significantly improving output quality through a reflection loop.

Agent Loop Reflection 自修正 质量提升
2026-07 16 分钟阅读
阅读教程 →
Agent Development Advanced

Multi-Agent Collaboration: Building an AI Team with Skill Chains

A single AI has limited capabilities, but collaboration among multiple AI roles can solve complex problems. This article explains how to orchestrate multiple Agents with skill chains, building a collaborative team of planner → executor → reviewer.

Agent Loop 多Agent 协作 技能链
2026-07 20 分钟阅读
阅读教程 →
Agent Development Advanced

Hands-on: Build Your First Agent Loop Application

From theory to practice, this article teaches you step by step how to build a complete Agent Loop application using the DeepSeek API. It includes the complete process of requirements analysis, task planning, step-by-step execution, and result verification.

Agent Loop 实战 DeepSeek 项目实战
2026-07 22 分钟阅读
阅读教程 →
Agent Development Advanced

Design of Agent Memory Systems

Memory is the key to transforming agents from one-time tools to long-term intelligent companions. This article deeply analyzes the architecture design of agent memory systems, covering short-term/long-term memory, RAG-enhanced memory, and hybrid retrieval strategies.

Agent 记忆系统 RAG 长短期记忆
2026-07 22 分钟阅读
阅读教程 →
Agent Development Advanced

In-Depth Implementation of ReAct Agents

ReAct (Reasoning + Acting) is one of the most classic paradigms in agent development. This article explains in depth how to build a production-grade ReAct agent, from principles to implementation, including prompt engineering, tool management, and error recovery.

Agent ReAct 推理 工具调用
2026-07 25 分钟阅读
阅读教程 →
Agent Development Advanced

Design of Multi-Agent Communication Protocols

When multiple AI agents need to collaborate, communication protocols are the key link connecting them. This article explores the design principles, message formats, routing strategies, and consistency guarantees of multi-agent communication protocols.

多Agent 通信协议 协作 消息队列
2026-07 23 分钟阅读
阅读教程 →
Agent Development Intermediate

Agent Security and Permission Control

When AI agents can autonomously call tools, access databases, and execute code, security becomes critical. This article explains agent security architecture design, including sandbox isolation, permission models, audit logs, and injection protection.

Agent安全 权限控制 沙箱 审计
2026-07 20 分钟阅读
阅读教程 →
Agent Development Intermediate

Agent Testing and Debugging Strategies

The non-deterministic behavior of agents makes traditional testing methods ineffective. This article introduces specialized testing strategies for agents, including evaluation-driven testing, observability debugging, and CI/CD integration solutions.

Agent测试 调试 可观测性 追踪
2026-07 18 分钟阅读
阅读教程 →
Agent Development Intermediate

AI Agent Tool Development in Practice: From Design to Deployment

Tools are the hands and feet of agents. This article provides an in-depth explanation of how to design, develop, test, and deploy high-quality AI agent tools, including tool interface design, error handling, performance optimization, and security protection.

Agent工具 工具开发 接口设计 安全防护
2025-07 18 分钟阅读
阅读教程 →
Agent Development Advanced

Multi-Agent Collaboration: Building an AI Team

A single Agent has limited capabilities; multi-Agent collaboration can solve more complex problems. This article explains the design patterns, communication mechanisms, and practical application cases of multi-Agent systems, teaching you to build AI teams that can work collaboratively.

多Agent 协作 AutoGen CrewAI
2025-06 20 分钟阅读
阅读教程 →
Agent Development Intermediate

AI Agent Architecture Design: From ReAct to Plan-and-Execute

AI Agent is one of the hottest technology directions currently. This article provides an in-depth analysis of mainstream Agent architectures such as ReAct, Plan-and-Execute, and Multi-Agent, helping you understand the applicable scenarios and design principles of different architectures.

Agent架构 ReAct Plan-and-Execute
2025-04 18 分钟阅读
阅读教程 →
Agent Development Beginner

Function Calling in Practice: Let AI Invoke External Tools

Function Calling is the bridge connecting AI to the real world. Starting from scratch, this article explains the principles, implementation methods, and common application scenarios of Function Calling, enabling AI to query databases, send emails, and call APIs.

Function Calling 工具调用 API集成
2025-03 14 分钟阅读
阅读教程 →

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

完全免费,取消任意时间。我们不会发送垃圾邮件。