搜索
搜索 TodayAI 的工具、模型、数据集、开发资源、开源项目、论文、设计资源与 Agent 资源
搜索结果
“Claude”
Guides · 13 个结果
Guides
为 Claude Code 配置安全的权限模式
Anthropic · Claude Code
用 defaultMode 与 allow/ask/deny 规则,给 Claude Code 配一套可提交版本库的安全权限策略。
Guides
把 Claude Code 连接到 MCP 工具
Anthropic · MCP
用 claude mcp add 接入远程 HTTP MCP server,让 Claude Code 直接读写外部工具,而不是靠复制粘贴。
Guides
用 Claude Code Hooks 拦截关键操作
Anthropic · Claude Code
在 settings.json 里配置 PreToolUse 等 hooks,在工具执行前拦截危险命令或保护敏感文件。
Guides
用 Claude Code 开始一个真实项目
Anthropic · Claude Code
安装 Claude Code,进入真实仓库,先读懂项目,再做一次受控的小修改。
Guides
给 Claude 打开 Prompt Caching 复用长上下文
Anthropic · Prompt Caching
按 Anthropic Prompt Caching 文档,给长文档或工具说明加上 cache_control。
Guides
用 Claude Messages API 流式输出回答
Anthropic · Streaming
打开 Messages 流式接口,按事件打印文本增量并处理结束信号。
Guides
用 Claude API Tool Use 调用外部工具
Anthropic · Tool Use
在 Messages API 里声明客户工具,处理 tool_use,再回传 tool_result,跑通 Claude 的外部工具闭环。
Guides
构建你的第一个 MCP Server
Model Context Protocol · MCP
用 Python 做一个最小 MCP weather server,暴露 get_alerts / get_forecast,并接入 Claude for Desktop 验证。
Guides
用 Message Batches 批量处理离线请求
Anthropic · Batches
把大量非实时 Claude 请求提交到 Message Batches,稍后再取回结果。
Guides
连接远程 HTTP MCP Server
Model Context Protocol · Remote MCP
按官方 Connect to remote MCP Servers:在 Claude 中添加 Custom Connector,用远程 MCP URL 完成鉴权、资源接入与工具权限配置。
Guides
AI Agent Framework 怎么选
TodayAI · Agent Framework
先判断你要的是单 Agent、工作流还是多 Agent,再在 LangGraph、CrewAI、Microsoft Agent Framework、LlamaIndex 与厂商 SDK 之间选择;AutoGen 只作为已有项目的维护与迁移路径。
Guides
从 Agents Course 理解 Agent 基本闭环
Hugging Face · Agents
按 Hugging Face Agents Course Unit 1:分清 Agent 与普通聊天,理解 Think → Act → Observe,以及 Tool 与 Observation 如何推动下一步。
Guides
构建可以连接 MCP Server 的 Client
Model Context Protocol · MCP
用 Python 做一个能连接 MCP server 的聊天客户端:发现工具、执行调用、把结果回传模型。