新增第26章: NAS照片发送到Telegram
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
---
|
||||
id: google-5-agent-skill-design-patterns-2026-03-19
|
||||
title: "Google 5个Agent Skill设计模式"
|
||||
type: source
|
||||
tags: [Agent, Skill, 设计模式, Google, Anthropic]
|
||||
date: 2026-03-19
|
||||
---
|
||||
|
||||
## Source File
|
||||
- [[raw/Agent/Google-5个Agent-Skill设计模式-2026-03-19.md]]
|
||||
|
||||
## Summary
|
||||
- 核心主题:Google 发布的 5 种 Agent Skill 设计模式
|
||||
- 问题域:Agent Skill 内容设计
|
||||
- 方法/机制:Tool Wrapper、Generator、Reviewer、Inversion、Pipeline 五种模式
|
||||
- 结论/价值:不同模式适用于不同场景,可以组合使用,ADK 的 SkillToolset 和渐进式披露机制实现按需加载
|
||||
|
||||
## Key Claims
|
||||
- Tool Wrapper 模式让 agent 快速成为某个领域的专家,通过监听特定关键词动态加载相关文档
|
||||
- Generator 模式通过模板和样式指南强制一致的输出格式,解决 agent 输出结构不一致的问题
|
||||
- Reviewer 模式把检查清单和检查逻辑分开,审查标准可动态替换实现不同专项审计
|
||||
- Inversion 模式让 agent 先问用户再做,通过明确门控指令确保用户参与每个阶段
|
||||
- Pipeline 模式带硬性检查点的严格工作流,强制执行顺序并设置前置条件确认
|
||||
|
||||
## Key Quotes
|
||||
> "最好的 Skill 不是写得好的提示词,而是一个「工具箱」" — Anthropic 经验
|
||||
|
||||
## Key Concepts
|
||||
- [[渐进式披露]]:agent 只在运行时需要时才消耗上下文 token 来加载特定模式
|
||||
- [[SkillToolset]]:ADK 提供的 skill 工具集,支持按需加载
|
||||
|
||||
## Key Entities
|
||||
- [[Google]]:发布该设计模式指南的云服务提供商
|
||||
- [[Anthropic]]:Claude 开发者,提出 Skill 设计的九类分类
|
||||
- [[ADK]]:Agent Development Kit,Google 的 agent 开发工具包
|
||||
|
||||
## Connections
|
||||
- [[Anthropic]] ← provides_skill_guidance ← [[Google]]
|
||||
- [[Tool Wrapper]] ← is_variant_of ← [[Agent-Skill-模式]]
|
||||
- [[Generator]] ← is_variant_of ← [[Agent-Skill-模式]]
|
||||
- [[Reviewer]] ← is_variant_of ← [[Agent-Skill-模式]]
|
||||
- [[Inversion]] ← is_variant_of ← [[Agent-Skill-模式]]
|
||||
- [[Pipeline]] ← is_variant_of ← [[Agent-Skill-模式]]
|
||||
|
||||
## Contradictions
|
||||
- (暂无)
|
||||
@@ -0,0 +1,48 @@
|
||||
---
|
||||
id: MCP-zai-Cursor-zhong-de-ji-cheng-yu-ying-yong-xiang-jie
|
||||
title: "MCP在Cursor中的集成与应用详解"
|
||||
type: source
|
||||
tags: [ai, ai-agent, cursor, mcp]
|
||||
source: raw/Agent/MCP在Cursor中的集成与应用详解.md
|
||||
last_updated: 2026-04-17
|
||||
---
|
||||
|
||||
## Source File
|
||||
- [[raw/Agent/MCP在Cursor中的集成与应用详解.md]]
|
||||
|
||||
## Summary
|
||||
- 核心主题:在 Cursor IDE 中集成和使用 MCP(Modal Context Protocol)协议
|
||||
- 问题域:大模型与外围服务的集成方式
|
||||
- 方法/机制:基于 Client-Server 架构,MCP Server 提供资源获取、工具调用、Promise 提示词三种接口
|
||||
- 结论/价值:实现大模型与多样外部工具的无缝链接,提升 AI 应用的扩展能力和交互效率
|
||||
|
||||
## Key Claims
|
||||
- MCP 是基于 Client-Server 架构的协议,实现大模型与外围服务的高效集成
|
||||
- Cursor 支持两种 MCP 接入方式:SSE 服务方式和本地执行命令方式
|
||||
- Agent 模式能自动执行内嵌命令并处理工具调用,提升操作效率
|
||||
- "enable yolo mode" 自动执行命令风险较高,建议默认关闭
|
||||
|
||||
## Key Quotes
|
||||
> "MCP 是 Modal Context Protocol 的缩写,是一种基于 Client-Server 架构的协议,旨在实现大模型与外围服务的高效集成。"
|
||||
|
||||
> "Agent 模式与 Normal 模式的最大区别在于:Agent 模式实现命令的链路打通,减少手动操作的步骤。"
|
||||
|
||||
## Key Concepts
|
||||
- [[MCP]]:Modal Context Protocol,支持 AI 大模型与外围服务基于 Client-Server 架构进行高效的数据和工具接口交互
|
||||
- [[SSE]]:Server-Sent Events,服务器向客户端推送实时事件的技术,也是一种 MCP 接入方式
|
||||
- [[Sequential Thinking]]:MCP 工具之一,支持逻辑推理与分步执行任务,优化 AI 模型的思考与响应过程
|
||||
- [[Agent模式]]:Cursor 中的交互方式,自动执行内嵌命令并处理工具调用
|
||||
- [[Composer]]:Cursor 中的对话构建模块,支持 Agent 模式与 Normal 模式
|
||||
|
||||
## Key Entities
|
||||
- [[Cursor]]:AI 增强代码编辑器,支持 MCP 协议集成
|
||||
- [[MCP Server]]:MCP 协议体系中的服务提供方,负责对外提供资源和工具接口
|
||||
- [[鱼凤老师]]:本视频教程的作者
|
||||
|
||||
## Connections
|
||||
- [[Cursor]] ← supports ← [[MCP]]
|
||||
- [[MCP Server]] ← provides ← [[工具调用]]
|
||||
- [[Sequential Thinking]] ← extends ← [[MCP]]
|
||||
|
||||
## Contradictions
|
||||
- (暂无冲突记录)
|
||||
51
wiki/sources/claude-code-diao-yong-fang-fa-zong-jie.md
Normal file
51
wiki/sources/claude-code-diao-yong-fang-fa-zong-jie.md
Normal file
@@ -0,0 +1,51 @@
|
||||
---
|
||||
id: claude-code-diao-yong-fang-fa-zong-jie
|
||||
title: "Claude Code 调用方法总结"
|
||||
type: source
|
||||
tags: [Claude Code, Agent, 工具调用, 自动化]
|
||||
date: 2026-04-17
|
||||
---
|
||||
|
||||
## Source File
|
||||
- [[raw/Agent/claude-code调用方法总结.md]]
|
||||
|
||||
## Summary
|
||||
- 核心主题:Hermes 调用 Claude Code 的两种模式及关键参数
|
||||
- 问题域:AI Agent 自动化任务执行、外部进程调用
|
||||
- 方法/机制:Print Mode(推荐)和 TMUX 交互模式
|
||||
- 结论/价值:提供 Claude Code 外部调用的完整技术方案
|
||||
|
||||
## Key Claims
|
||||
- Hermes 通过 `terminal` 工具调用 Claude Code,有 Print Mode 和 TMUX 交互两种模式
|
||||
- Print Mode 通过 stdin 传递任务文本,适合绝大多数任务
|
||||
- TMUX 交互模式适合超长任务,需要手动监控进度
|
||||
- `--permission-mode bypassPermissions` 是最可靠的权限绕过参数
|
||||
|
||||
## Key Quotes
|
||||
> "用 `--permission-mode bypassPermissions` 可直接跳过信任目录 + bypass 权限确认两步,不需要额外的 sleep + send-keys 模拟交互。"
|
||||
|
||||
> "Skill 加载只需要:`--add-dir <技能所在目录>`"
|
||||
|
||||
> "delegate_task 是 Hermes 子 agent(API 调用),terminal 调用 claude -p 是外部 Claude Code 进程"
|
||||
|
||||
## Key Concepts
|
||||
- [[Print Mode]]:通过 stdin 传递任务文本的非交互执行模式
|
||||
- [[TMUX 交互模式]]:在 TMUX 会话中运行 Claude Code 的交互模式
|
||||
- [[Skill 加载]]:通过 `--add-dir` 参数加载 Claude Code 技能
|
||||
- [[Print Mode vs TMUX 区别]]
|
||||
|
||||
## Key Entities
|
||||
- [[Claude]]:Anthropic 公司开发的 AI 聊天助手
|
||||
- [[OpenClaw]]:AI Agent 管理工具,Hermes 是其核心组件
|
||||
|
||||
## Connections
|
||||
- [[Claude Code 调用方法总结]] ← documents ← [[OpenClaw]]
|
||||
- [[Print Mode]] ← uses ← [[terminal 工具]]
|
||||
- [[TMUX 交互模式]] ← uses ← [[TMUX]]
|
||||
|
||||
## Contradictions
|
||||
- 无
|
||||
|
||||
## Notes
|
||||
- Print Mode 是推荐模式,通过管道传递任务文本避免 shell 转义问题
|
||||
- 常见坑点:不写 bypass 参数、max-turns 太小、命令行直接传任务
|
||||
46
wiki/sources/meeting-notes-action-items.md
Normal file
46
wiki/sources/meeting-notes-action-items.md
Normal file
@@ -0,0 +1,46 @@
|
||||
---
|
||||
title: "Automated Meeting Notes & Action Items"
|
||||
type: source
|
||||
tags: [agent, automation, workflow, productivity]
|
||||
date: 2026-04-17
|
||||
---
|
||||
|
||||
## Source File
|
||||
- [[raw/Agent/usecases/meeting-notes-action-items.md]]
|
||||
|
||||
## Summary
|
||||
- 核心主题:AI Agent 自动将会议转录转化为结构化笔记,并在项目管理工具中创建任务
|
||||
- 问题域:会议记录效率低、行动项遗漏
|
||||
- 方法/机制:监听转录文件 → 提取关键信息 → 创建任务 → 发送通知 → 跟进提醒
|
||||
- 结论/价值:消除"讨论了但未追踪"的 Gap,核心价值在于自动任务创建而非摘要本身
|
||||
|
||||
## Key Claims
|
||||
- Agent 能监听多种转录来源(Otter.ai、Google Meet、Zoom、手动粘贴)
|
||||
- 自动提取决策、讨论主题、行动项(含负责人和截止日期)
|
||||
- 可在 Jira、Linear、Todoist、Notion 中创建任务并分配给正确的人
|
||||
- 可选跟进提醒,在截止日期前提醒任务负责人
|
||||
|
||||
## Key Concepts
|
||||
- [[Task Automation]]:自动将会议内容转化为可执行任务
|
||||
- [[Workflow Automation]]:预定义自动化流程,与 AI Agent 互补
|
||||
- [[上下文记忆]]:Agent 保留对话历史,理解团队成员分工
|
||||
|
||||
## Key Entities
|
||||
- [[OpenClaw]]:本用例基于的 AI Agent 管理工具
|
||||
- [[Jira]]:企业级项目跟踪和任务管理工具
|
||||
- [[Linear]]:现代项目管理平台,API 优先
|
||||
- [[Todoist]]:流行的个人任务管理应用
|
||||
- [[Notion]]:全能笔记和项目管理工具
|
||||
- [[Slack]]:企业通讯平台,用于发布会议摘要
|
||||
- [[Discord]]:社区和团队通讯平台
|
||||
- [[Otter.ai]]:自动会议转录服务
|
||||
|
||||
## Connections
|
||||
- [[OpenClaw]] ← uses ← [[Task Automation]]
|
||||
- [[Linear]] ← integrates_with ← [[Task Automation]]
|
||||
- [[Jira]] ← integrates_with ← [[Task Automation]]
|
||||
- [[Todoist]] ← integrates_with ← [[Task Automation]]
|
||||
- [[n8n]] ← can_automate ← [[Workflow Automation]]
|
||||
|
||||
## Contradictions
|
||||
- (暂无冲突)
|
||||
27
wiki/sources/n8n-Claude-通过自然语言自动化工作流.md
Normal file
27
wiki/sources/n8n-Claude-通过自然语言自动化工作流.md
Normal file
@@ -0,0 +1,27 @@
|
||||
---
|
||||
title: "安装Claude Desktop"
|
||||
type: source
|
||||
tags: [claude, n8n, nodejs]
|
||||
date:
|
||||
---
|
||||
|
||||
## Source File
|
||||
- [[raw/Agent/n8n+Claude 通过自然语言自动化工作流.md]]
|
||||
|
||||
## Summary
|
||||
- 核心主题:安装 Claude Desktop 客户端
|
||||
- 问题域:n8n 与 Claude 集成的前置准备
|
||||
- 方法/机制:通过官方网站下载安装 Claude Desktop
|
||||
- 结论/价值:完成 Claude Desktop 安装,为后续 n8n 与 Claude 集成奠定基础
|
||||
|
||||
## Key Claims
|
||||
- Claude Desktop 可通过官方下载页面获取安装包
|
||||
|
||||
## Key Concepts
|
||||
- [[Claude]]:Anthropic 公司开发的 AI 聊天助手
|
||||
|
||||
## Key Entities
|
||||
- [[Claude]]:Anthropic 公司开发的 AI 聊天助手
|
||||
|
||||
## Connections
|
||||
- [[Claude]] ← depends_on ← [[n8n-mcp]]
|
||||
@@ -0,0 +1,50 @@
|
||||
---
|
||||
title: "N8N Full Tutorial Building AI Agents in 2025 for Beginners!"
|
||||
type: source
|
||||
tags: [ai, ai-agent, n8n, tutorial]
|
||||
date: 2025-03-06
|
||||
---
|
||||
|
||||
## Source File
|
||||
- [[raw/Agent/n8n full tutorial building AI agents in 2025 for Beginners!.md]]
|
||||
|
||||
## Summary
|
||||
- 核心主题:使用 N8N 平台构建 AI Agent 的入门教程
|
||||
- 问题域:工作流自动化与 AI Agent 的区别与实现
|
||||
- 方法/机制:理解 Agentic Systems、N8N 节点类型、工具集成、上下文记忆、Airtable 数据库集成
|
||||
- 结论/价值:N8N 为初学者提供了可视化界面,通过理解节点分类(触发器、操作节点、工具节点、代码节点、高级 AI 节点)可以构建强大的自动化 AI Agent
|
||||
|
||||
## Key Claims
|
||||
- Agentic Systems 由 Agent 和 Workflow 组成,Agent 能根据用户输入动态选择工具
|
||||
- N8N 平台提供直观的可视化界面,降低了 AI Agent 构建的门槛
|
||||
- 节点分为五类:触发器、操作节点、工具节点、代码节点、高级 AI 节点
|
||||
- 记忆(Memory)模块使 AI Agent 能够保留上下文,增强对话流畅性
|
||||
- 集成 Airtable 等外部工具可扩展 AI Agent 的数据管理能力
|
||||
- AI Foundations 社区提供了宝贵的学习和协作资源
|
||||
|
||||
## Key Quotes
|
||||
> "Workflows are predefined automations that yield consistent outputs, while agents utilize large language models (LLMs) to dynamically determine the necessary tools and outputs based on user input." — 核心区别说明
|
||||
> "The categorization of nodes into triggers, actions, utilities, codes, and advanced AI nodes allows for structured and efficient automation." — 节点分类的重要性
|
||||
> "By retaining context from previous interactions, agents can provide more coherent and relevant responses." — 记忆机制的价值
|
||||
|
||||
## Key Concepts
|
||||
- [[Agentic AI]]:具备自主决策和任务执行能力的 AI 系统
|
||||
- [[工作流自动化]]:通过预定义流程实现一致的自动化输出
|
||||
- [[N8N 节点]]:N8N 平台的基本构建单元,分为触发器、操作、工具、代码和高级 AI 五类
|
||||
- [[上下文记忆]]:AI Agent 保留对话历史以提供连贯响应的能力
|
||||
- [[工具集成]]:AI Agent 调用外部服务扩展功能的能力
|
||||
|
||||
## Key Entities
|
||||
- [[n8n]]:开源工作流自动化工具,用于构建 AI Agent
|
||||
- [[Airtable]]:在线数据库工具,可作为 AI Agent 的数据存储和库存管理后端
|
||||
- [[AI Foundations]]:AI 学习社区,提供课程和协作资源
|
||||
|
||||
## Connections
|
||||
- [[n8n]] ← uses ← [[Agentic AI]]
|
||||
- [[n8n]] ← uses ← [[N8N 节点]]
|
||||
- [[Agentic AI]] ← depends_on ← [[上下文记忆]]
|
||||
- [[n8n]] ← integrates_with ← [[Airtable]]
|
||||
- [[AI Foundations]] ← supports ← [[AI Agent 开发]]
|
||||
|
||||
## Contradictions
|
||||
- (暂无)
|
||||
38
wiki/sources/podcast-production-pipeline.md
Normal file
38
wiki/sources/podcast-production-pipeline.md
Normal file
@@ -0,0 +1,38 @@
|
||||
---
|
||||
title: "Podcast Production Pipeline"
|
||||
type: source
|
||||
tags: [agent-use-case, podcast, automation]
|
||||
date: 2026-04-17
|
||||
---
|
||||
|
||||
## Source File
|
||||
- [[raw/Agent/usecases/podcast-production-pipeline.md]]
|
||||
|
||||
## Summary
|
||||
- 核心主题:多 Agent 协同的播客生产流水线
|
||||
- 问题域:播客制作效率优化,内容创作自动化
|
||||
- 方法/机制:通过 Agent Chain 实现从选题到发布的全流程自动化,包括研究、脚本、Show Notes、社交媒体素材、SEO 描述生成
|
||||
- 结论/价值:将播客制作中 70% 的非创意性工作自动化,让创作者专注核心对话内容
|
||||
|
||||
## Key Claims
|
||||
- Pre-recording 研究阶段是价值最高环节,深度嘉宾研究显著提升访谈质量
|
||||
- 带时间戳的 Show Notes 是重要的听众留存工具,大多数播客制作者因繁琐而跳过
|
||||
- 社交媒体工具包节省最多的重复性时间,每集都需要宣传素材,结构固定适合自动化
|
||||
|
||||
## Key Quotes
|
||||
> "The creative part — the conversation — is maybe 30% of the total effort. This agent handles the other 70%."
|
||||
|
||||
## Key Concepts
|
||||
- [[Agent-Chain]]:多个 Agent 串联工作,各自负责不同阶段的流水线架构
|
||||
- [[Pre-Recording Research]]:录制前的准备工作,包括嘉宾研究和话题深度挖掘
|
||||
- [[Show Notes]]:带有时间戳的节目笔记,帮助听众快速定位内容
|
||||
- [[Social Media Kit]]:为每集生成的多平台宣传素材包
|
||||
|
||||
## Key Entities
|
||||
- [[Multi-Agent Content Factory]]:另一个相关的内容工厂模式,可与本流水线配合将播客内容二次创作
|
||||
|
||||
## Connections
|
||||
- [[Multi-Agent Content Factory]] ← combines_with ← [[Podcast Production Pipeline]]
|
||||
|
||||
## Contradictions
|
||||
- (暂无)
|
||||
40
wiki/sources/万字保姆级教程-让你90天跑通一人公司模式-附AI提示词.md
Normal file
40
wiki/sources/万字保姆级教程-让你90天跑通一人公司模式-附AI提示词.md
Normal file
@@ -0,0 +1,40 @@
|
||||
---
|
||||
title: "万字保姆级教程,让你90天跑通\"一人公司\"模式(附AI提示词)"
|
||||
type: source
|
||||
tags: [一人公司, 个人品牌, 商业变现]
|
||||
date: 2026-03-29
|
||||
---
|
||||
|
||||
## Source File
|
||||
- [[raw/Agent/万字保姆级教程-90天跑通一人公司模式-2026-03-29.md]]
|
||||
|
||||
## Summary
|
||||
- 核心主题:通过找到个人优势(底层能力)来实现一人公司模式的商业变现方法论
|
||||
- 问题域:个人职业发展、创业方向探索、商业模式设计
|
||||
- 方法/机制:天才地带自检、Ikigai交集、产品体系搭建、内容矩阵构建、销售漏斗设计
|
||||
- 结论/价值:一人公司的关键是更聪明地定位,而非更努力工作
|
||||
|
||||
## Key Claims
|
||||
- 一人公司的本质,是用最小的杠杆撬动最大的价值
|
||||
- 底层能力藏在冰山之下,需通过自检问题追溯
|
||||
- 产品体系需要分层:引流→入门→核心→高价
|
||||
- 内容生产用"反向金字塔":一次长内容切成百次微内容分发
|
||||
|
||||
## Key Quotes
|
||||
> "在你觉得太简单所以不值钱的事情里,在朋友们总是找你帮忙的那个领域里——现在,是时候把它挖掘出来了"
|
||||
|
||||
## Key Concepts
|
||||
- [[Ikigai]]:热情、市场需求、能获得报酬、擅长四者交集
|
||||
- [[天才地带]]:能产生心流的区域,时间飞逝精力充沛
|
||||
- [[底层能力]]:隐藏在活动表象下的核心能力
|
||||
- [[产品体系]]:引流→入门→核心→高价四级产品矩阵
|
||||
- [[内容矩阵]]:核心主题×内容形式的二维内容策略
|
||||
- [[销售漏斗]]:获客→激活→转化的客户转化路径
|
||||
|
||||
## Key Entities
|
||||
- [[营销人张飞宇]]:微信公众号作者,本文来源
|
||||
|
||||
## Connections
|
||||
- [[一人公司模式]] ← 基于 ← [[Ikigai]]
|
||||
- [[产品体系]] ← 依赖 ← [[底层能力]]
|
||||
- [[销售漏斗]] ← 包含 ← [[内容矩阵]]
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
title: "万字讲透OpenClaw🦞从"能用"到"真好用"的分水岭:Workspace 深度解析"
|
||||
title: 万字讲透OpenClaw-Workspace深度解析
|
||||
type: source
|
||||
tags: [OpenClaw, Agent, Workspace, AGENTS.md, SOUL.md]
|
||||
date: 2026-03-21
|
||||
|
||||
41
wiki/sources/使用Claude自动生成N8N工作流的实操教程.md
Normal file
41
wiki/sources/使用Claude自动生成N8N工作流的实操教程.md
Normal file
@@ -0,0 +1,41 @@
|
||||
---
|
||||
title: "使用Claude自动生成N8N工作流的实操教程"
|
||||
type: source
|
||||
tags: [n8n, Claude, 工作流自动化, AI]
|
||||
date: 2025-12-31
|
||||
---
|
||||
|
||||
## Source File
|
||||
- [[raw/Agent/使用Claude自动生成N8N工作流的实操教程.md]]
|
||||
|
||||
## Summary
|
||||
- 核心主题:利用 Claude AI 助手自动生成 n8n 工作流的实操教程
|
||||
- 问题域:n8n 工作流创建的复杂性,新手无从下手的问题
|
||||
- 方法/机制:通过 n8n-mcp 项目将 Claude 与 n8n 连接,输入自然语言描述需求,AI 自动生成工作流
|
||||
- 结论/价值:Claude 可实现约 80%-90% 的工作流自动生成,显著降低学习门槛,但仍有 10%-20% 错误需人工修正
|
||||
|
||||
## Key Claims
|
||||
- n8n-mcp 提供了 543 个 n8n 节点的访问能力,覆盖 99% 的节点属性和 63.6% 的操作
|
||||
- Claude 配合 Opensea 模型和 extended thinking 模式可自动生成工作流代码
|
||||
- 自动生成的工作流准确率约 80%-90%,需人工二次修正细节错误
|
||||
|
||||
## Key Quotes
|
||||
> "Claude能实现约80%-90%正确的工作流布局和逻辑,尽管有细节错误仍需人工二次修正,但对新手尤其友好,显著降低学习门槛和工作时间" — 教程总结
|
||||
|
||||
## Key Concepts
|
||||
- [[n8n]]:开源工作流自动化工具,支持节点连接执行任务
|
||||
- [[MCP]]:多功能控制面板,允许外部工具调用 n8n 所有节点功能
|
||||
- [[n8n-mcp]]:连接 n8n 与 AI 模型的桥接项目,提供节点文档和模板库
|
||||
- [[Vibe Coding]]:AI 辅助开发方式,自然语言描述需求,AI 负责代码实现
|
||||
|
||||
## Key Entities
|
||||
- [[Claude]]:Anthropic 公司开发的 AI 聊天助手
|
||||
- [[n8n]]:开源工作流自动化工具
|
||||
|
||||
## Connections
|
||||
- [[Vibe Coding]] ← 应用场景 ← [[使用Claude自动生成N8N工作流的实操教程]]
|
||||
- [[n8n-mcp]] ← 依赖项目 ← [[使用Claude自动生成N8N工作流的实操教程]]
|
||||
- [[n8n]] ← 自动化平台 ← [[n8n-mcp]]
|
||||
|
||||
## Contradictions
|
||||
- (暂无)
|
||||
Reference in New Issue
Block a user