AI Skill Hub 推荐使用:Dive AI 工作流 是一款优质的Agent工作流。AI 综合评分 7.5 分,在同类工具中表现稳健。如果你正在寻找可靠的Agent工作流解决方案,这是一个值得深入了解的选择。
Dive AI 工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
Dive AI 工作流 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:go install(推荐) go install github.com/deepnoodle-ai/dive@latest # 方式二:从源码编译 git clone https://github.com/deepnoodle-ai/dive cd dive go build -o dive . # 方式三:下载预编译二进制 # 访问 Releases 页面下载对应平台二进制文件 # https://github.com/deepnoodle-ai/dive/releases
# 查看帮助 dive --help # 基本运行 dive [options] <input> # 详细使用说明请查阅文档 # https://github.com/deepnoodle-ai/dive
# dive 配置说明 # 查看配置选项 dive --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export DIVE_CONFIG="/path/to/config.yml"
Dive is a foundational Go library for building AI agents and LLM-powered applications.
Dive gives you three main things: consistent access to 8+ LLM providers, a tool-calling system, and a robust agent loop with hooks. Images, documents, local tools, MCP tools, and structured output all work across providers. Most other libraries have gaps on this front. The agent runs the generate-call-repeat loop for you, with hooks to intercept before and after each step. Tools and hooks are the primary extension points.
The built-in toolkit includes Read, Write, Edit, Glob, Grep, Bash, and more. Use all of them, some of them, or bring your own. The built-in tools align with Claude Code's patterns, so you benefit from any model tuning that Anthropic has done for these tool shapes.
Dive is unopinionated. You provide the system prompt and decide which tools and hooks to install. Your agents do what you tell them. There are no hidden prompts or library-imposed behaviors.
Use the LLM layer when you want direct access to model capabilities. Use the agent layer when you want the tool-calling loop handled for you. Use Dive to build CLIs, add AI to back-end SaaS services, or run agents within a workflow orchestrator.
Everything outside the experimental/ directory is stable, while everything inside experimental/ may change. The experimental packages add more tools, permissions, and a CLI similar to Claude Code. Use experimental code as inspiration, copy and modify it, or use it directly.
Dive is developed by Deep Noodle and is used in multiple production AI deployments.
agent, err := dive.NewAgent(dive.AgentOptions{
SystemPrompt: "You are a senior software engineer.",
Model: anthropic.New(),
Tools: []dive.Tool{
toolkit.NewReadFileTool(),
toolkit.NewTextEditorTool(),
toolkit.NewListDirectoryTool(),
},
})
response, err := agent.CreateResponse(ctx, dive.WithInput("Please fix the failing test"))
fmt.Println(response.OutputText())
Packages under experimental/* have no stability guarantees. APIs may change at any time.
.dive/settings.jsonexperimental/cmd/dive)go get github.com/deepnoodle-ai/dive
Set your LLM API key:
export ANTHROPIC_API_KEY="your-key" # and/or OPENAI_API_KEY, GEMINI_API_KEY, etc.
Run examples from the examples/ directory:
```bash cd examples
快速构建 AI 代理的 Go 工具
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
总体来看,Dive AI 工作流 是一款质量良好的Agent工作流,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | dive |
| 原始描述 | 开源AI工作流:Use Dive to quickly build AI agents in Go. Build agentic CLIs or add AI to your 。⭐126 · Go |
| Topics | AIGo工作流 |
| GitHub | https://github.com/deepnoodle-ai/dive |
| License | Apache-2.0 |
| 语言 | Go |
收录时间:2026-06-10 · 更新时间:2026-06-10 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端