Claude Agent SDK 最简玩法:几行代码配合 Markdown 轻松搭建 Agent

本文将带大家了解 Claude Agent SDK 的最简玩法,只需要几行代码,加上几个 Markdown 文件,就能迅速搭建出一个 Agent。

全部代码在我的 GitHub 仓库 liruifengv/claude-agent-demo

上节回顾

在上一篇文章中,我们 使用 Claude Agent SDK 实现了一个 DeepResearch Agent,它实现了一个多 Agent 协作系统,分为

  • 负责分解研究任务,调度其他 Agent 的 Lead Agent
  • 负责搜索网络、收集资料的 Researcher
  • 负责将研究结果整理成报告 Report Writer

之前是基于代码实现的 SubAgents,现在我们使用 Markdown 文件来实现 Subagents。

Markdown 实现

首先在项目的根目录创建 .claude 文件夹。

创建 CLAUDE.md 文件,这个文件就是主 Agent 的系统提示词,和 Claude Code 的用法一样。

md 复制代码
You are a lead research coordinator who orchestrates comprehensive multi-agent research projects.

**CRITICAL RULES:**
1. You MUST delegate ALL research and report writing to specialized subagents. You NEVER research or write reports yourself.
2. Keep ALL responses SHORT - maximum 2-3 sentences. NO greetings, NO emojis, NO explanations unless asked.
3. Get straight to work immediately - analyze and spawn subagents right away.

<role_definition>
- Break user research requests into 2-4 distinct research subtopics
- Spawn multiple researcher subagents in parallel to investigate each subtopic
- Coordinate the research process and ensure comprehensive coverage
- After ALL research is complete, spawn a report-writer subagent to synthesize findings
- Your ONLY tool is Task - you delegate everything to subagents
</role_definition>

// 更多请查看代码仓库...

然后创建 agents 文件夹,这个文件夹是放 SubAgents 的提示词的。

创建一个 researcher.md 文件,这个文件就是 Researcher 的系统提示词。

md 复制代码
---
name: researcher
description: Use this agent when you need to gather research information on any topic. The researcher uses web search to find relevant information, articles, and sources from across the internet. Writes research findings to files/research_notes/ for later use by report writers. Ideal for complex research tasks that require deep searching and cross-referencing.
tools: WebSearch, Write
---
You are a research specialist focused on information gathering. You always follow this system prompt COMPLETELY. This is critically important.

**CRITICAL: You MUST use WebSearch for ALL research. You MUST save CONCISE research summaries to files/research_notes/ folder.**

// 更多请查看代码仓库...

注意这个文件上方有三个横杠围起来的内容,叫做 frontmatter,里面是一些字段:

  • name: SubAgent 的名称
  • description: SubAgent 的描述,告诉 Lead Agent 什么时候应该调用这个 subagent
  • tools: SubAgent 可以使用的工具。
  • model: SubAgent 使用的模型。

Claude Agent SDK 在启动时会去读取 .claude 文件夹,加载系统提示词和 SubAgents。

同理,我们再创建一个 report-writer.md 文件,这个文件就是 Report Writer 的系统提示词。

md 复制代码
---
name: report-writer
description: Use this agent when you need to create a formal research report document. The report-writer reads research findings from files/research_notes/ and synthesizes them into clear, concise, professionally formatted reports in files/reports/. Ideal for creating structured documents with proper citations and organization. Does NOT conduct web searches - only reads existing research notes and creates reports.
tools: Read, Write, Glob, Skill
---
You are a professional report writer who creates clear, concise research summaries on any topic.

**CRITICAL: You MUST read research notes from files/research_notes/ folder.**

// 更多请查看代码仓库...

OK,有了这个三个 Markdown 文件,我们的 Agent 的核心就已经建立起来了。

接下来写一点代码:

ts 复制代码
import { query, type Query } from "@anthropic-ai/claude-agent-sdk";

const result: Query = query({
  prompt: userInput,
  options: {
    resume: sessionId,
    settingSources: ["project"],
    permissionMode: "bypassPermissions",
    allowedTools: ["Task"],
    hooks: customHooks,
  },
});

这里使用了 query 函数来调用 Agent,一些参数我们在之前的文章中讲过了。我们把 settingSources 设置为 ["project"],这样 Agent 就会从项目配置中读取设置。 allowedTools 我们只给主 Agent 一个 Task 工具安排任务。

这就是核心代码了!

其余的可以在根据需求,增加用户交互、自定义钩子函数、日志输出等。

总结

就这么简单,三个 Markdown 文件,配合几行代码,就能实现一个非常强的 DeepResearch Agent。这就是 Claude Agent SDK 的强大。 你不需要关心细节,什么 Agent Loop、工具调用、权限管理、SubAgents,这些都由 SDK 内部处理好了。

但是这样也有一个坏处,就是完全是一个黑盒,你不清楚内部实现细节,并且它是不开源的。

如果你是第一次开发 Agent,强烈建议先用 Claude Agent SDK 跑起来,大部分的功能都能实现的很好。当它不能满足你的需求或者当你需要更深入研究学习时,再转用其他更灵活的框架或者自己手撸。

相关推荐
标书畅畅行14 小时前
钛投标:全流程企业级AI标书解决方案,重构投标数字化生产力
大数据·人工智能
一壶纱14 小时前
一个用于 UniApp 项目的 Pinia 持久化插件
前端·javascript·vue.js
凌涘14 小时前
JS 八大基本类型:一场内存视角的冒险之旅
前端·javascript
叫我:松哥14 小时前
基于深度卷积神经网络的水果图片分类算法设计与实现,有ResNet50的迁移学习模型,准确率达95%
人工智能·python·神经网络·机器学习·分类·cnn·迁移学习
大囚长14 小时前
大模型API的上下文缓存(Contextual Cache)
人工智能·缓存
无心水14 小时前
【Hermes:团队、企业、生态与边界】47、Hermes 在 CI/CD 中的完整 DevOps 流水线:从 PR 审查到自动部署,让 Agent 接管你的发布流程
运维·人工智能·devops·openclaw·养龙虾·hermes·honcho
名不经传的养虾人14 小时前
从0到1:企业级AI项目迭代日记 Vol.44|功能建好,和功能接通,是两件完全不同的事
人工智能·架构·agent·ai编程·企业ai
数据知道14 小时前
视觉伪装(上):Canvas 指纹生成原理与 Skia 图形库底层注入噪声
开发语言·javascript·ecmascript·数据采集·指纹浏览器
金融小师妹14 小时前
AI因子共振模型显示:金银比突破区间上沿,白银定价逻辑进入再校准阶段
人工智能·算法·均值算法·线性回归
奶油话梅糖14 小时前
IMA 知识库体验(内有资源分享):把资料变成可以提问的 AI 知识助手
人工智能·ai·aigc·知识图谱·知识库·学习工具·ima