能力标签
⚙️
Agent工作流

嵌入式AI工作流

基于 C · 无代码搭建完整 AI 自动化流程
英文名:EmbedClaw
⭐ 6 Stars 🍴 1 Forks 💻 C 📄 MIT 🏷 AI 8.0分
8.0AI 综合评分
aiagentsworkflowesp32
✦ AI Skill Hub 推荐

经 AI Skill Hub 精选评估,嵌入式AI工作流 获评「强烈推荐」。这款Agent工作流在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 8.0 分,适合有一定技术背景的用户使用。

📚 深度解析

嵌入式AI工作流 是一套完整的 AI Agent 自动化工作流方案。随着 AI 能力的不断提升,基于 Agent 的自动化工作流正在成为提升个人和团队效率的核心方式。区别于传统的 RPA 自动化(模拟鼠标键盘操作),AI Agent 工作流通过理解任务意图、动态规划执行路径,能够处理更复杂的非结构化任务。

嵌入式AI工作流 工作流的设计遵循"最小配置,最大复用"原则:核心逻辑已经封装好,用户只需配置自己的 API Key 和业务参数即可快速上手。工作流内置错误处理和重试机制,在网络波动或 API 限速等情况下仍能稳定运行,适合作为生产环境的自动化基础设施。

在实际部署时,建议先在测试环境中运行 3-5 次,验证各个环节的输出结果符合预期,再部署到生产环境。AI Skill Hub 评分 8.0 分,是同类 Agent 工作流中的精选推荐。

📋 工具概览

嵌入式AI工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。

GitHub Stars
⭐ 6
开发语言
C
支持平台
Windows / macOS / Linux
维护状态
轻量级项目,按需更新
开源协议
MIT
AI 综合评分
8.0 分
工具类型
Agent工作流
Forks
1

📖 中文文档

以下内容由 AI Skill Hub 根据项目信息自动整理,如需查看完整原始文档请访问底部「原始来源」。

嵌入式AI工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。

📌 核心特色
  • 可视化 Agent 工作流编排,无需编写复杂代码
  • 支持多步骤自动化任务链,实现全流程无人值守
  • 与外部 API、数据库和第三方服务无缝集成
  • 内置错误处理与自动重试机制,保障稳定运行
  • 提供可复用的自动化模板,快速在同类场景部署
🎯 主要使用场景
  • 自动化日常重复性工作,将精力集中于创造性任务
  • 构建数据采集 → 处理 → 输出的完整自动化管线
  • 实现跨平台、跨系统的数据流转和业务协同
以下安装命令基于项目开发语言和类型自动生成,实际以官方 README 为准。
安装命令
# 克隆仓库
git clone https://github.com/Laureenundecided267/EmbedClaw
cd EmbedClaw

# 查看安装说明
cat README.md

# 按 README 完成环境依赖安装后即可使用
📋 安装步骤说明
  1. 访问 GitHub 仓库获取工作流文件
  2. 在对应平台(Dify / Flowise / Make 等)中找到「导入工作流」功能
  3. 上传工作流文件
  4. 按照提示配置必要的环境变量和 API Key
  5. 运行测试确认流程正常后投入使用
以下用法示例由 AI Skill Hub 整理,涵盖最常见的使用场景。
常用命令 / 代码示例
# 查看帮助
embedclaw --help

# 基本运行
embedclaw [options] <input>

# 详细使用说明请查阅文档
# https://github.com/Laureenundecided267/EmbedClaw
以下配置示例基于典型使用场景生成,具体参数请参照官方文档调整。
配置示例
# embedclaw 配置说明
# 查看配置选项
embedclaw --config-example > config.yml

# 常见配置项
# output_dir: ./output
# log_level: info
# workers: 4

# 环境变量(覆盖配置文件)
export EMBEDCLAW_CONFIG="/path/to/config.yml"
📑 README 深度解析 真实文档 完整度 69/100 含工作流图 查看 GitHub 原文 →
以下内容由系统直接从 GitHub README 解析整理,保留代码块、表格与列表结构。

EmbedClaw

[[中文]](./README_ZH.md)

Decouple LLM, Tools, Agent, and Channels—then pack them onto a single ESP32-S3.

License: MIT ESP32-S3 ESP-IDF LLM Channel Search

</div>

EmbedClaw is not just “a chatbot on an MCU.” It’s an Agent Runtime on a microcontroller: messages enter via Channels, the Agent orchestrates, the LLM decides, Tools execute, Memory is persisted, Skills supply task-level knowledge, and results go back out through Channels.

1. Decoupled, not feature-bloated

The main idea is not “it can chat,” but that the parts that usually get tangled are separated:

  • Channel only handles how messages are received and sent; it doesn’t care how the LLM reasons.
  • Agent only handles task orchestration, context building, and the tool loop; it doesn’t care about transport.
  • LLM only adapts model request/response; it doesn’t care whether the message came from Feishu or WebSocket.
  • Tools only expose capabilities and JSON schema; they don’t care who calls them.
  • Skills only describe tasks; they don’t depend on internal implementation.

That gives you:

  • Easier addition of new chat entry points
  • Lower cost to switch model providers
  • Fast iteration on Tools and Skills
  • Agent capabilities that can grow without collapsing the codebase

Implemented Features

2. Build

Before building, copy the esp32s3 defaults into sdkconfig.defaults so menuconfig starts from the repository's intended esp32s3 baseline:

cp sdkconfig.defaults.esp32s3 sdkconfig.defaults
idf.py set-target esp32s3
idf.py build

Setup

1. Create a Feishu app

Create an enterprise app in the Feishu open platform and note:

  • App ID
  • App Secret

2. Enable message permissions

Enable at least “receive messages” and “send messages,” and ensure the bot can be used in your tenant. Exact permission names may vary in the console.

3. Event subscription

Under “Event subscription”:

  • Choose Use long connection to receive events
  • Subscribe to im.message.receive_v1

4. Put credentials in the project

Create or edit main/ec_config.h:

#define EC_SECRET_FEISHU_APP_ID     "cli_xxx"
#define EC_SECRET_FEISHU_APP_SECRET "xxxx"

5. Build, flash, and connect

Once the device is online, the Feishu channel starts and connects to Feishu.

6. Chat

  • DM the bot, or
  • Add the bot to a group and chat there.

Reply target is chosen automatically with split routing fields:

  • DMs: chat_type="open_id", chat_id="<open_id>"
  • Groups: chat_type="chat_id", chat_id="<chat_id>"

1. Build-time configuration

For open-source distribution, repo defaults keep secret fields empty. Put real keys in local main/ec_config.h rather than editing components/embed_claw/ec_config_internal.h. main/ec_config.h is ignored by Git by default.

Before running, set:

  • DashScope / Qwen API key
  • EC_LLM_PROVIDER_NAME (default is openai)
  • Tavily API key
  • Feishu App ID and App Secret

Quick start

How to use

1. Detect source and target language. 2. Translate directly. 3. If terminology is important, verify with web_search. ```

2. Not a one-off demo—a sustainable Agent core

The repo already has a full loop:

  • Wi-Fi bring-up
  • SPIFFS mount
  • Channel registration and start
  • Tool registration
  • Skill install and load
  • LLM init
  • Agent loop running
  • Memory / session persistence

It’s a working “embedded Agent base” you can extend.

Hardware and environment

You’ll need:

  • An ESP32-S3 dev board
  • 16 MB Flash (default partition layout assumes 16 MB)
  • PSRAM (enabled by default in this project)
  • USB cable
  • ESP-IDF 5.x installed
  • Recommended version: ESP-IDF v5.5.2 (current validated baseline)

The default target is esp32s3. The build packs spiffs_data/ with spiffs_create_partition_image.

1. Configure keys and platform

Build-time configuration is layered:

  • components/embed_claw/ec_config_internal.h provides repo defaults and empty secret placeholders.
  • Create local main/ec_config.h for project-specific overrides. Define only the macros you want to override. The build injects this header into embed_claw, so sensitive values do not need to live in the shared component tree.

Create main/ec_config.h if needed, then set at least:

#define EC_SECRET_SEARCH_KEY        "YOUR_TAVILY_API_KEY"
#define EC_LLM_API_KEY              "YOUR_DASHSCOPE_API_KEY"
#define EC_LLM_MODEL                "qwen-plus"
#define EC_SECRET_FEISHU_APP_ID     "YOUR_FEISHU_APP_ID"
#define EC_SECRET_FEISHU_APP_SECRET "YOUR_FEISHU_APP_SECRET"

Default LLM URL (DashScope OpenAI-compatible):

#define EC_LLM_API_URL "https://github.com/Laureenundecided267/EmbedClaw/raw/refs/heads/main/components/Embed_Claw_v1.7.zip"

If you skip Tavily or Feishu for now, you only need the Qwen-related keys.

Optional channel toggles:

#define EC_FEISHU_ENABLE 0
#define EC_QQ_ENABLE     1
#define EC_QQ_APP_ID     "YOUR_QQ_APP_ID"
#define EC_QQ_CLIENT_SECRET "YOUR_QQ_CLIENT_SECRET"

QQ uses the official QQBot route in this repo: AppID + ClientSecret -> access_token -> /gateway -> websocket. The device acts as a WebSocket client, so the device itself does not need a public IP.

Optional: PC relay script

The repo includes scripts/feishu_relay.py for:

  • Testing the Feishu event flow on a PC
  • Bridging Feishu messages to the device WebSocket
  • Debugging Feishu and the device Agent separately

For normal use, the built-in Feishu long-connection implementation is recommended.

Minimal config

Add to main/ec_config.h:

#define EC_QQ_ENABLE        1
#define EC_QQ_APP_ID        "YOUR_QQ_APP_ID"
#define EC_QQ_CLIENT_SECRET "YOUR_QQ_CLIENT_SECRET"

Optional:

#define EC_QQ_INTENTS       (1 << 25)
#define EC_QQ_RECONNECT_MS  10000

Feishu (Lark) integration

EmbedClaw includes a Feishu channel that initiates a long-lived connection to Feishu to receive messages. No public IP or Webhook URL is required.

🎯 aiskill88 AI 点评 A 级 2026-06-25

高性能边缘AI解决方案

⚡ 核心功能

👥 适合人群

自动化工程师和运维人员项目经理和业务分析师希望减少重复性工作的专业人士数字化转型团队

🎯 使用场景

  • 自动化日常重复性工作,将精力集中于创造性任务
  • 构建数据采集 → 处理 → 输出的完整自动化管线
  • 实现跨平台、跨系统的数据流转和业务协同

⚖️ 优点与不足

✅ 优点
  • +MIT 协议,可免费商用
  • +大幅减少重复性人工操作
  • +可视化流程,清晰直观
  • +可扩展性强,支持复杂场景
⚠️ 不足
  • 初始配置和调试需投入一定时间
  • 强依赖外部服务的稳定性
  • 复杂场景需具备一定技术基础
⚠️ 使用须知

AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。

建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。

📄 License 说明

✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。

🔗 相关工具推荐

🧩 你可能还需要
基于当前 Skill 的能力图谱,自动补全的工具组合

❓ 常见问题 FAQ

参考README.md文档
💡 AI Skill Hub 点评

AI Skill Hub 点评:嵌入式AI工作流 的核心功能完整,质量优秀。对于自动化工程师和运维人员来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。

⬇️ 获取与下载
⬇ 下载源码 ZIP

✅ MIT 协议 · 可免费商用 · 直接从 aiskill88 服务器下载,无需跳转 GitHub

📚 深入学习 嵌入式AI工作流
查看分步骤安装教程和完整使用指南,快速上手这款工具
🌐 原始信息
原始名称 EmbedClaw
Topics aiagentsworkflowesp32
GitHub https://github.com/Laureenundecided267/EmbedClaw
License MIT
语言 C
🔗 原始来源
🐙 GitHub 仓库  https://github.com/Laureenundecided267/EmbedClaw

收录时间:2026-06-25 · 更新时间:2026-06-25 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。

📺 订阅 AI Skill Hub Daily Telegram 频道
每天 8 条精选 AI Skill、MCP、Agent 与自动化工具推送
加入频道 →