← 返回 Skills 市场
olina1ye

Ai Agent Builder Zh

作者 Olina1Ye · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ 安全检测通过
154
总下载
0
收藏
1
当前安装
2
版本数
在 OpenClaw 中安装
/install ai-agent-builder-zh
功能描述
AI智能体开发 / AI Agent构建 / 智能体工作流 / agent builder。掌握工具调用、记忆管理、多步推理等核心能力,快速搭建客服机器人、数据分析代理、内容生成助手。适合工程师、产品经理、运营主管在企业自动化办公中应用,支持ChatGPT、Claude、文心一言等大模型集成。替代RPA重复劳动,...
使用说明 (SKILL.md)

AI 智能体构建指南

帮助工程师和产品经理设计、开发具备工具调用、记忆管理与多步骤推理能力的 AI 智能体(AI Agent),覆盖主流大模型(ChatGPT、Claude、文心一言等)集成模式,适配钉钉、企业微信、Web 等平台部署场景。

Tools Required

  • 代码编辑器(VS Code / Cursor)
  • LLM API(OpenAI / Anthropic / 百度千帆 / 阿里通义)
  • 工作流平台(n8n / Dify / FastGPT,可选)
  • 向量数据库(Milvus / Chroma,记忆模块可选)

Usage

  • "帮我设计一个能自动查询数据库并生成报表的 AI 智能体架构"
  • "我想用 Claude API 搭建一个客服机器人,支持多轮对话和工单创建,怎么设计工具调用流程?"
  • "如何给智能体加上长期记忆,让它记住用户的历史偏好和上下文?"

Examples

输入: 我需要一个销售助理智能体,能查询 CRM 系统里的客户信息、生成跟进邮件,并自动记录到飞书文档。请设计架构和工具列表。

输出:

智能体架构设计:销售助理 Agent

核心组件:

用户输入(销售需求)
      │
      ▼
  Agent(LLM 推理层:Claude / GPT-4)
      │
  ┌───┼───────────┐
  │   │           │
  ▼   ▼           ▼
查询  生成      记录工具
工具  工具      (飞书API)
(CRM) (邮件模板)

工具列表(Function Calling):

工具名 功能 输入参数
get_customer_info 查询 CRM 客户信息 customer_id / name
generate_followup_email 生成个性化跟进邮件 customer_info, context
save_to_feishu_doc 写入飞书文档 doc_id, content
search_deal_history 查询历史成交记录 customer_id, date_range

多步推理流程:

  1. 理解意图:解析销售人员输入,判断需要哪些工具
  2. 查询客户:调用 get_customer_info 获取基本信息 + search_deal_history 获取历史
  3. 生成邮件:基于客户画像调用 generate_followup_email,输出个性化内容
  4. 记录存档:调用 save_to_feishu_doc 将邮件草稿 + 操作记录写入飞书

记忆管理建议:

  • 短期记忆:对话上下文窗口(最近 10 轮)
  • 长期记忆:向量数据库存储客户偏好标签,每次对话前检索相关记忆注入 Prompt
  • 工作记忆:当前任务状态(已完成哪步、待执行哪步)存入 Redis

关键代码片段(Python + OpenAI Function Calling):

tools = [
    {
        "type": "function",
        "function": {
            "name": "get_customer_info",
            "description": "从CRM系统查询客户基本信息",
            "parameters": {
                "type": "object",
                "properties": {
                    "customer_name": {"type": "string", "description": "客户姓名或公司名"},
                },
                "required": ["customer_name"]
            }
        }
    },
    # 其他工具定义...
]

response = client.chat.completions.create(
    model="gpt-4o",
    messages=[{"role": "user", "content": user_input}],
    tools=tools,
    tool_choice="auto"  # 让模型自动决定调用哪个工具
)

部署建议:

  • 企业内部:通过企业微信 / 钉钉机器人接入,
安全使用建议
This skill appears safe to install as an instruction-only guide. Before building systems from its examples, make sure any connected CRM, Feishu, LLM API, vector database, or workflow tool uses least-privilege access, avoids storing unnecessary personal or business data, and requires approval before high-impact writes or external actions.
功能分析
Type: OpenClaw Skill Name: ai-agent-builder-zh Version: 1.0.1 The skill bundle is a purely educational guide for building AI agents, providing architectural advice and standard code snippets for OpenAI function calling. There are no executable scripts, network requests, or instructions that attempt to exfiltrate data or compromise the host environment (SKILL.md).
能力评估
Purpose & Capability
The skill’s purpose is coherent: it teaches AI agent architecture, tool calling, memory, and LLM integration. Some examples involve business data access and document writes, which are sensitive if users later implement them.
Instruction Scope
The artifact provides design guidance and example code snippets rather than runnable automation. It mentions automatic tool selection, so implementations should add user approval and tool limits for high-impact actions.
Install Mechanism
There is no install specification, no required binaries, no required environment variables, and no code files; the static scan had nothing suspicious to analyze.
Credentials
References to LLM APIs, workflow platforms, and vector databases are expected for an AI agent builder guide, but users implementing the examples will need to manage credentials and data boundaries themselves.
Persistence & Privilege
The guide discusses long-term memory using vector databases and Redis; this is purpose-aligned but should be implemented with clear retention, consent, and deletion controls.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install ai-agent-builder-zh
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /ai-agent-builder-zh 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
- 更新了描述与标签,更突出“agent builder”、“RPA 替代”、“企业AI解决方案”等关键词 - 增强了关键词覆盖和典型搜索场景,强调30%以上效率提升和自动化办公应用 - 用词更贴近企业实际需求,便于工程师、产品和运营主管快速定位并启用技能 - 其余内容保持一致,无核心技术变动
v1.0.0
Initial release: Comprehensive AI agent design and development guide in Chinese, covering core features and practical workplace applications. - Provides step-by-step instructions for building AI agents with tool calling, memory management, and multi-step reasoning. - Includes integration models for popular LLMs (ChatGPT, Claude, WenXin YiYan) and workflow platforms. - Sample workflows and architecture diagrams tailored to real-world Chinese enterprise scenarios (office automation, customer service bots, content assistants, data analysis). - Practical API and deployment recommendations for enterprise WeChat, DingTalk, Feishu, and web environments. - Example code snippets for tool integration and memory management.
元数据
Slug ai-agent-builder-zh
版本 1.0.1
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 2
常见问题

Ai Agent Builder Zh 是什么?

AI智能体开发 / AI Agent构建 / 智能体工作流 / agent builder。掌握工具调用、记忆管理、多步推理等核心能力,快速搭建客服机器人、数据分析代理、内容生成助手。适合工程师、产品经理、运营主管在企业自动化办公中应用,支持ChatGPT、Claude、文心一言等大模型集成。替代RPA重复劳动,... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 154 次。

如何安装 Ai Agent Builder Zh?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install ai-agent-builder-zh」即可一键安装,无需额外配置。

Ai Agent Builder Zh 是免费的吗?

是的,Ai Agent Builder Zh 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Ai Agent Builder Zh 支持哪些平台?

Ai Agent Builder Zh 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Ai Agent Builder Zh?

由 Olina1Ye(@olina1ye)开发并维护,当前版本 v1.0.1。

💬 留言讨论