diff --git a/wiki/concepts/CoworkWorkspace.md b/wiki/concepts/CoworkWorkspace.md new file mode 100644 index 00000000..b9ea03fe --- /dev/null +++ b/wiki/concepts/CoworkWorkspace.md @@ -0,0 +1,36 @@ +--- +title: "Cowork Workspace" +type: concept +tags: [] +sources: [] +last_updated: 2026-04-22 +--- + +# Cowork Workspace + +一种 Agent 交互范式,提供文件感知的工作空间界面,用户可以直接看到 Agent 读写文件、运行命令、浏览网页——而非仅终端日志或聊天消息输出。 + +## 核心特征 + +- **可视化操作**:Agent 的每一步操作(文件变更、命令执行、网页导航)都以可视化方式呈现 +- **文件感知**:界面直接展示 Agent 正在操作的文件列表和内容变化 +- **实时反馈**:用户实时观察 Agent 工作进展,而非等待任务完成后的日志摘要 + +## 与传统模式的对比 + +| 维度 | 传统 Terminal/Chat 模式 | Cowork Workspace | +|------|------------------------|------------------| +| 文件可见性 | 需主动查询 | 直接展示 | +| 操作可见性 | 推断自日志 | 实时可视化 | +| 交互方式 | 命令式/文本式 | 视觉 + 文本混合 | +| 远程场景 | 纯日志输出 | 部分可视化(远程桌面)| + +## 典型场景 + +- [[AionUi]] 提供 OpenClaw 的 Cowork 工作空间 +- Claude Code Desktop 的文件树和终端面板 +- Cursor Composer 的工作区视图 + +## 相关概念 +- [[RemoteRescuePattern]]:Cowork 模式在远程场景下的扩展 +- [[Multi-AgentHub]]:同一界面管理多个 Agent 的协作空间 diff --git a/wiki/concepts/MCPOnceAllAgents.md b/wiki/concepts/MCPOnceAllAgents.md new file mode 100644 index 00000000..aa984980 --- /dev/null +++ b/wiki/concepts/MCPOnceAllAgents.md @@ -0,0 +1,41 @@ +--- +title: "MCP Once All Agents" +type: concept +tags: [] +sources: [] +last_updated: 2026-04-22 +--- + +# MCP Once All Agents + +一种 MCP(Model Context Protocol)配置模式——在多 Agent 平台中配置一次 MCP 服务器,该配置自动同步到平台内所有集成的 Agent,无需逐个 Agent 单独配置。 + +## 动机 + +在 [[Multi-AgentHub]] 场景中,每个 Agent 可能需要访问相同的外部工具和服务(如文件系统、数据库、Web 浏览器)。传统方式是每个 Agent 独立配置 MCP 服务器: +- 配置重复,N 个 Agent 需要维护 N 份配置 +- 更新繁琐,修改一个工具需要同步更新所有 Agent 配置 +- 容易出现配置不一致 + +## 机制 + +1. **中心化配置**:在 Hub 层面统一配置 MCP 服务器连接 +2. **自动分发**:Hub 自动将 MCP 配置注入每个集成的 Agent 上下文 +3. **单一数据源**:MCP 服务器变更只需在 Hub 中更新一次 + +## 典型场景 + +[[AionUi]] 在 AionUi 中配置 MCP 服务器后,自动同步到 OpenClaw、Claude Code、Codex 等所有 Agent。 + +## 与传统模式的对比 + +| 维度 | 独立 MCP 配置 | MCP Once All Agents | +|------|-------------|---------------------| +| 配置数量 | N 个(每个 Agent)| 1 个(Hub 层面)| +| 更新成本 | O(N) | O(1) | +| 一致性 | 容易出现差异 | 天然一致 | +| 适用场景 | Agent 能力差异大 | 多 Agent 共享工具集 | + +## 相关概念 +- [[Multi-AgentHub]]:MCP Once All Agents 的典型应用场景 +- [[MCP Tool Interface Design]]:MCP 协议的接口设计原则 diff --git a/wiki/concepts/Multi-AgentHub.md b/wiki/concepts/Multi-AgentHub.md new file mode 100644 index 00000000..7b2fbe3b --- /dev/null +++ b/wiki/concepts/Multi-AgentHub.md @@ -0,0 +1,44 @@ +--- +title: "Multi-Agent Hub" +type: concept +tags: [] +sources: [] +last_updated: 2026-04-22 +--- + +# Multi-Agent Hub + +一种软件架构,在一个应用中集中管理多个不同的 AI Agent,支持并行运行、统一配置和跨 Agent 协作。 + +## 核心特征 + +- **多 Agent 并行**:在同一界面同时运行多个 Agent 实例(如 OpenClaw + Claude Code + Codex) +- **统一入口**:单一界面切换不同 Agent,无需在多个应用间跳转 +- **配置共享**:MCP 服务器等配置一次设置,全局生效到所有 Agent +- **能力聚合**:不同 Agent 各有专长(如 Claude Code 擅长代码、OpenClaw 擅长记忆),Hub 提供按需切换或协作的能力 + +## 与 Multi-Agent System 的区别 + +| 维度 | Multi-Agent System | Multi-Agent Hub | +|------|-------------------|-----------------| +| Agent 关系 | 协作分工,共同完成单一任务 | 独立并行,各自有独立任务 | +| 交互模式 | Agent 间互相调用/通信 | 用户在 Hub 中选择/切换 | +| 典型场景 | [[Content-Factory]] 写作链 | [[AionUi]] 多 Agent 并行工作 | + +## 典型实现 + +- [[AionUi]]:支持 OpenClaw + 12+ Agent 的桌面多 Agent Hub +- Claude Code Desktop:多会话管理 +- [[Dynamic-Dashboard]]:多数据源并行抓取子 Agent + +## 关键设计考量 + +- **认证隔离**:每个 Agent 需要独立认证状态(浏览器 Profile 克隆等) +- **MCP 共享**:统一 MCP 配置避免重复设置 +- **资源管理**:多 Agent 并行运行的计算资源分配 +- **上下文切换**:用户在不同 Agent 间的上下文保持 + +## 相关概念 +- [[CoworkWorkspace]]:Hub 中的可视化工作空间 +- [[Parallel Agent Execution]]:Hub 中的并行运行能力 +- [[Shared Memory Architecture]]:多 Agent 间的记忆共享 diff --git a/wiki/concepts/RemoteRescuePattern.md b/wiki/concepts/RemoteRescuePattern.md new file mode 100644 index 00000000..e373b0b5 --- /dev/null +++ b/wiki/concepts/RemoteRescuePattern.md @@ -0,0 +1,40 @@ +--- +title: "Remote Rescue Pattern" +type: concept +tags: [] +sources: [] +last_updated: 2026-04-22 +--- + +# Remote Rescue Pattern + +当主 Agent 在远程/无头服务器上发生故障且无法连接时,通过远程访问渠道(WebUI/Telegram)打开辅助管理工具,使用内置专家 Agent 执行诊断和修复命令来恢复主 Agent 连接的设计模式。 + +## 动机 + +- Agent 运行在另一台机器或无头服务器上时,Agent 本身故障意味着无法通过 Agent 进行自我修复 +- 用户物理上不在该机器旁,无法直接操作 +- 需要一种"元修复"能力:在不物理访问机器的情况下诊断和恢复 Agent + +## 机制 + +1. **远程访问通道**:通过 WebUI、Telegram、Lark、DingTalk 等渠道远程连接管理界面 +2. **内置专家 Agent**:管理界面内置主 Agent 的部署专家助手(如 OpenClaw Deployment Expert) +3. **诊断与修复**:专家 Agent 可执行 `openclaw doctor`、修复配置、重启网关等命令 +4. **恢复主 Agent**:修复完成后,用户重新连接主 Agent 继续工作 + +## 典型场景 + +- [[AionUi]] 内置 OpenClaw 部署专家,用户通过 Telegram 远程诊断修复 OpenClaw +- [[Self-Healing-Systems]] 中的分级自愈策略(自愈 → 远程专家介入 → 人工兜底) + +## 与 Self-Healing 的关系 + +Remote Rescue Pattern 是 [[Self-Healing-Systems]] 的一种补充手段: +- 自愈(Self-Healing):Agent 自动检测并修复常见问题 +- 远程救援(Remote Rescue):Agent 无法自愈时,通过远程专家介入 +- 人工兜底:远程专家无法解决时,需要物理访问或人工介入 + +## 相关工具 +- [[AionUi]]:OpenClaw Remote Rescue 的实现载体 +- [[OpenClaw]]:`openclaw doctor` 命令提供诊断能力 diff --git a/wiki/entities/AionUi.md b/wiki/entities/AionUi.md new file mode 100644 index 00000000..cc657a55 --- /dev/null +++ b/wiki/entities/AionUi.md @@ -0,0 +1,52 @@ +--- +title: "AionUi" +type: entity +tags: [] +sources: [] +last_updated: 2026-04-22 +--- + +# AionUi + +免费开源的桌面多 Agent 应用(macOS/Windows/Linux),将 OpenClaw 作为一等公民 Agent 运行,同时支持 Claude Code、Codex、Qwen Code 等 12+ 外部 Agent 的统一接入。 + +## Aliases +- AionUi +- Aion UI + +## 核心能力 + +### Cowork 工作空间 +提供文件感知的工作界面,用户可直接看到 Agent 读写文件、运行命令、浏览网页——而非仅终端日志输出。OpenClaw 作为 Cowork Agent 运行,享有完整可视化操作体验。 + +### OpenClaw 远程救援专家 +内置 OpenClaw 部署专家助手,可通过 Telegram 或 WebUI 远程访问,执行以下修复操作: +- 运行 `openclaw doctor` 诊断问题 +- 修复配置文件 +- 重启 Gateway 服务 + +这对在另一台机器或无头(headless)模式下运行 OpenClaw 的用户尤为重要——当 OpenClaw 无法连接时,不再需要物理访问该机器。 + +### 多 Agent 统一管理 +- 在同一应用中并行运行 OpenClaw + 内置 Agent(Gemini/OpenAI/Anthropic/Ollama)+ Claude Code + Codex 等 +- 切换 Agent 或并行运行,无需重复配置 +- **MCP 一次配置,所有 Agent 共享**:在 AionUi 中配置 MCP 服务器,自动同步到 OpenClaw 和所有其他 Agent + +### 远程访问 +支持 WebUI、Telegram、Lark、DingTalk 多渠道远程连接同一个 AionUi 实例(及 OpenClaw)。 + +### 自动化调度 +AionUi Cron 可定时运行 OpenClaw 或其他 Agent,执行 24/7 自动化任务。 + +## 安装与配置 + +1. 从 [AionUi Releases](https://github.com/iOfficeAI/AionUi/releases) 下载安装 +2. 安装 OpenClaw(如尚未安装):`npm install -g openclaw@latest` +3. 可选安装守护进程:`openclaw onboard --install-daemon` +4. 打开 AionUi,自动检测 OpenClaw(或使用内置 OpenClaw Setup 助手引导) +5. 创建 Cowork Session,选择 OpenClaw,即可使用 + +## 相关链接 +- [AionUi GitHub](https://github.com/iOfficeAI/AionUi) +- [AionUi Website](https://www.aionui.com) +- [OpenClaw GitHub](https://github.com/openclaw/openclaw) diff --git a/wiki/index.md b/wiki/index.md index 3b697acf..3057635c 100644 --- a/wiki/index.md +++ b/wiki/index.md @@ -4,6 +4,16 @@ - [Overview](overview.md) — living synthesis ## Sources +- [2026-04-22] [Family Calendar Aggregation & Household Assistant](sources/family-calendar-household-assistant.md) +- [2026-04-22] [Multi-Source Tech News Digest](sources/multi-source-tech-news-digest.md) +- [2026-04-22] [X/Twitter Automation from Chat](sources/x-twitter-automation.md) +- [2026-04-22] [Personal Knowledge Base (RAG)](sources/knowledge-base-rag.md) +- [2026-04-22] [Personal CRM with Automatic Contact Discovery](sources/personal-crm.md) +- [2026-04-22] [YouTube Content Pipeline](sources/youtube-content-pipeline.md) +- [2026-04-22] [Polymarket Autopilot](sources/polymarket-autopilot.md) +- [2026-04-22] [Goal-Driven Autonomous Tasks](sources/overnight-mini-app-builder.md) +- [2026-04-22] [Local CRM Framework with DenchClaw](sources/local-crm-framework.md) +- [2026-04-22] [OpenClaw + n8n Workflow Orchestration](sources/n8n-workflow-orchestration.md) - [2026-04-22] [Multi-Channel AI Customer Service Platform](sources/multi-channel-customer-service.md) - [2026-04-22] [Second Brain](sources/second-brain.md) - [2026-04-22] [LaTeX Paper Writing](sources/latex-paper-writing.md) @@ -120,7 +130,6 @@ - [2026-04-21] [marketing-private-domain-operator](sources/marketing-private-domain-operator.md) — (expected: wiki/sources/marketing-private-domain-operator.md — source missing) - [2026-04-21] [教學-chatgpt-先做知識整理-再讓-canva-gamma-ai-輸出簡報](sources/教學-chatgpt-先做知識整理-再讓-canva-gamma-ai-輸出簡報.md) — (expected: wiki/sources/教學-chatgpt-先做知識整理-再讓-canva-gamma-ai-輸出簡報.md — source missing) - [2026-04-21] [marketing-short-video-editing-coach](sources/marketing-short-video-editing-coach.md) — (expected: wiki/sources/marketing-short-video-editing-coach.md — source missing) -- [2026-04-21] [polymarket-autopilot](sources/polymarket-autopilot.md) — (expected: wiki/sources/polymarket-autopilot.md — source missing) - [2026-04-21] [marketing-social-media-strategist](sources/marketing-social-media-strategist.md) — (expected: wiki/sources/marketing-social-media-strategist.md — source missing) - [2026-04-21] [marketing-kuaishou-strategist](sources/marketing-kuaishou-strategist.md) — (expected: wiki/sources/marketing-kuaishou-strategist.md — source missing) - [2026-04-21] [marketing-video-optimization-specialist](sources/marketing-video-optimization-specialist.md) — (expected: wiki/sources/marketing-video-optimization-specialist.md — source missing) @@ -404,16 +413,7 @@ - [2026-04-17] [autonomous-game-dev-pipeline](sources/autonomous-game-dev-pipeline.md) — (expected: wiki/sources/autonomous-game-dev-pipeline.md — source missing) - [2026-04-17] [arxiv-paper-reader](sources/arxiv-paper-reader.md) — (expected: wiki/sources/arxiv-paper-reader.md — source missing) - [2026-04-17] [semantic-memory-search](sources/semantic-memory-search.md) — (expected: wiki/sources/semantic-memory-search.md — source missing) -- [2026-04-17] [aionui-cowork-desktop](sources/aionui-cowork-desktop.md) — (expected: wiki/sources/aionui-cowork-desktop.md — source missing) -- [2026-04-17] [family-calendar-household-assistant](sources/family-calendar-household-assistant.md) — (expected: wiki/sources/family-calendar-household-assistant.md — source missing) -- [2026-04-17] [multi-source-tech-news-digest](sources/multi-source-tech-news-digest.md) — (expected: wiki/sources/multi-source-tech-news-digest.md — source missing) -- [2026-04-17] [x-twitter-automation](sources/x-twitter-automation.md) — (expected: wiki/sources/x-twitter-automation.md — source missing) -- [2026-04-17] [knowledge-base-rag](sources/knowledge-base-rag.md) — (expected: wiki/sources/knowledge-base-rag.md — source missing) -- [2026-04-17] [personal-crm](sources/personal-crm.md) — (expected: wiki/sources/personal-crm.md — source missing) -- [2026-04-17] [youtube-content-pipeline](sources/youtube-content-pipeline.md) — (expected: wiki/sources/youtube-content-pipeline.md — source missing) -- [2026-04-17] [overnight-mini-app-builder](sources/overnight-mini-app-builder.md) — (expected: wiki/sources/overnight-mini-app-builder.md — source missing) -- [2026-04-17] [local-crm-framework](sources/local-crm-framework.md) — (expected: wiki/sources/local-crm-framework.md — source missing) -- [2026-04-17] [n8n-workflow-orchestration](sources/n8n-workflow-orchestration.md) — (expected: wiki/sources/n8n-workflow-orchestration.md — source missing) +- [2026-04-17] [AionUi Desktop Cowork](sources/aionui-cowork-desktop.md) — 通过 AionUi 桌面应用将 OpenClaw 作为可视化 Cowork Agent 运行,支持远程救援和多 Agent 统一管理 - [Your-AI-Isn-t-Stupid---It-Just-Needs-a-Better-Harness--Lychee-Technology-Engineering-Blog](sources/Your-AI-Isn-t-Stupid---It-Just-Needs-a-Better-Harness--Lychee-Technology-Engineering-Blog.md) — (expected: wiki/sources/Your-AI-Isn-t-Stupid---It-Just-Needs-a-Better-Harness--Lychee-Technology-Engineering-Blog.md — source missing) - [Expose-hermes-agent-as-an-OpenAI-compatible-API-for-any-frontend](sources/Expose-hermes-agent-as-an-OpenAI-compatible-API-for-any-frontend.md) — (expected: wiki/sources/Expose-hermes-agent-as-an-OpenAI-compatible-API-for-any-frontend.md — source missing) - [zk-steward](sources/zk-steward.md) — (expected: wiki/sources/zk-steward.md — source missing) @@ -569,6 +569,7 @@ - [CodeWeaver](entities/CodeWeaver.md) - [containerd](entities/containerd.md) - [Cursor](entities/Cursor.md) +- [DenchClaw](entities/DenchClaw.md) - [DevOps-Maturity-Model](entities/DevOps-Maturity-Model.md) - [docker-buildx-plugin](entities/docker-buildx-plugin.md) - [docker-ce](entities/docker-ce.md) @@ -578,6 +579,7 @@ - [Docker-Network](entities/Docker-Network.md) - [Docker卷](entities/Docker卷.md) - [DORA-Metrics](entities/DORA-Metrics.md) +- [DracoVibeCoding](entities/DracoVibeCoding.md) - [frp](entities/frp.md) - [GDPR](entities/GDPR.md) - [Gitea](entities/Gitea.md) @@ -618,6 +620,7 @@ - [nodewarden](entities/nodewarden.md) - [Open-Alliance-for-Cloud-Adoption](entities/Open-Alliance-for-Cloud-Adoption.md) - [OpenClaw](entities/OpenClaw.md) +- [openclaw-n8n-stack](entities/openclaw-n8n-stack.md) - [OpenCode](entities/OpenCode.md) - [PingMe](entities/PingMe.md) - [Portainer](entities/Portainer.md) @@ -630,7 +633,9 @@ - [Rufus](entities/Rufus.md) - [RustDesk](entities/RustDesk.md) - [shenwei](entities/shenwei.md) +- [Simon-Hoiberg](entities/Simon-Hoiberg.md) - [Slack](entities/Slack.md) +- [SparkryAI](entities/SparkryAI.md) - [stacer](entities/stacer.md) - [Synology-NAS-DS718](entities/Synology-NAS-DS718.md) - [Telnyx](entities/Telnyx.md) @@ -641,6 +646,7 @@ - [TranscriptAPI](entities/TranscriptAPI.md) - [Transmission](entities/Transmission.md) - [TruffleHog](entities/TruffleHog.md) +- [TweetClaw](entities/TweetClaw.md) - [Ubuntu-Server](entities/Ubuntu-Server.md) - [Uptime-Kuma](entities/Uptime-Kuma.md) - [Veeam](entities/Veeam.md) @@ -673,9 +679,11 @@ - [AIOps](concepts/AIOps.md) - [AI代理](concepts/AI代理.md) - [Alerting](concepts/Alerting.md) +- [AmbientMessageMonitoring](concepts/AmbientMessageMonitoring.md) - [APT-仓库配置](concepts/APT-仓库配置.md) - [Asset-Management](concepts/Asset-Management.md) - [Attach容器](concepts/Attach容器.md) +- [Audit-Trail](concepts/Audit-Trail.md) - [Automated-Health-Logging](concepts/Automated-Health-Logging.md) - [Automated-Security-Audit](concepts/Automated-Security-Audit.md) - [Availability](concepts/Availability.md) @@ -683,6 +691,7 @@ - [BI平台](concepts/BI平台.md) - [Blue-Green-Deployment](concepts/Blue-Green-Deployment.md) - [BOOTSTRAP.md](concepts/BOOTSTRAP.md.md) +- [Brain-Dump](concepts/Brain-Dump.md) - [Break-the-Build](concepts/Break-the-Build.md) - [Bug-Bounty](concepts/Bug-Bounty.md) - [Build-Mode](concepts/Build-Mode.md) @@ -719,10 +728,12 @@ - [Compliance-Automation](concepts/Compliance-Automation.md) - [Configuration-Management](concepts/Configuration-Management.md) - [Content Automation](concepts/Content Automation.md) +- [Content-Ingestion](concepts/Content-Ingestion.md) - [Continuous-Deployment](concepts/Continuous-Deployment.md) - [Continuous-Integration](concepts/Continuous-Integration.md) - [Conversational-Interface](concepts/Conversational-Interface.md) - [Cost-Optimization](concepts/Cost-Optimization.md) +- [Credential-Isolation](concepts/Credential-Isolation.md) - [Credit-Efficient-Processing](concepts/Credit-Efficient-Processing.md) - [Cron定时任务](concepts/Cron定时任务.md) - [Cross-Account-Monitoring](concepts/Cross-Account-Monitoring.md) @@ -747,6 +758,7 @@ - [DORA-Metrics](concepts/DORA-Metrics.md) - [DRaaS](concepts/DRaaS.md) - [DRY原则](concepts/DRY原则.md) +- [DuckDB](concepts/DuckDB.md) - [Dynamic-Dashboard](concepts/Dynamic-Dashboard.md) - [Earnings-Beat-Miss](concepts/Earnings-Beat-Miss.md) - [Earnings-Calendar](concepts/Earnings-Calendar.md) @@ -760,6 +772,7 @@ - [external配置](concepts/external配置.md) - [Failover](concepts/Failover.md) - [Feature-Flag](concepts/Feature-Flag.md) +- [File-System-First-UI](concepts/File-System-First-UI.md) - [FinOps](concepts/FinOps.md) - [Food-Sensitivity-Tracking](concepts/Food-Sensitivity-Tracking.md) - [Full-Draft-Generation](concepts/Full-Draft-Generation.md) @@ -767,12 +780,14 @@ - [GDM3](concepts/GDM3.md) - [Generator](concepts/Generator.md) - [GitAsAuditLog](concepts/GitAsAuditLog.md) +- [GitHub-Release-Monitoring](concepts/GitHub-Release-Monitoring.md) - [GitOps](concepts/GitOps.md) - [GPG-密钥验证](concepts/GPG-密钥验证.md) - [Green-Computing](concepts/Green-Computing.md) - [Headless-服务器](concepts/Headless-服务器.md) - [Heartbeat-Monitoring](concepts/Heartbeat-Monitoring.md) - [high-availability](concepts/high-availability.md) +- [HouseholdInventoryTracking](concepts/HouseholdInventoryTracking.md) - [HTTPS自动化证书](concepts/HTTPS自动化证书.md) - [Human-Handoff](concepts/Human-Handoff.md) - [Hybrid-Cloud](concepts/Hybrid-Cloud.md) @@ -793,11 +808,13 @@ - [JFFS双清](concepts/JFFS双清.md) - [Keyword-Based-Monitoring](concepts/Keyword-Based-Monitoring.md) - [Kill-Switch](concepts/Kill-Switch.md) +- [Knowledge-Base-RAG](concepts/Knowledge-Base-RAG.md) - [Language-Detection](concepts/Language-Detection.md) - [Last-30-Days-Method](concepts/Last-30-Days-Method.md) - [launchd](concepts/launchd.md) - [Lead-Time](concepts/Lead-Time.md) - [Local-first-Git](concepts/Local-first-Git.md) +- [Lockable-Workflow](concepts/Lockable-Workflow.md) - [MeetingNotes](concepts/MeetingNotes.md) - [MEMORY.md](concepts/MEMORY.md.md) - [Micro-Recovery](concepts/Micro-Recovery.md) @@ -807,6 +824,7 @@ - [MTTR](concepts/MTTR.md) - [Multi-Account-Deployment](concepts/Multi-Account-Deployment.md) - [Multi-AI-Review](concepts/Multi-AI-Review.md) +- [Multi-Channel-Delivery](concepts/Multi-Channel-Delivery.md) - [Multi-Cloud-Strategy](concepts/Multi-Cloud-Strategy.md) - [Multi-factor-Authentication](concepts/Multi-factor-Authentication.md) - [Multi-Tenancy](concepts/Multi-Tenancy.md) @@ -820,6 +838,7 @@ - [passkey](concepts/passkey.md) - [Pay-as-you-go](concepts/Pay-as-you-go.md) - [Penetration-Testing](concepts/Penetration-Testing.md) +- [Personal-CRM](concepts/Personal-CRM.md) - [Pipeline](concepts/Pipeline.md) - [Pivot-Strategy](concepts/Pivot-Strategy.md) - [Plan-Mode](concepts/Plan-Mode.md) @@ -840,6 +859,7 @@ - [proxychains](concepts/proxychains.md) - [Public-Cloud](concepts/Public-Cloud.md) - [PUID-PGID](concepts/PUID-PGID.md) +- [Quality-Scoring-Algorithm](concepts/Quality-Scoring-Algorithm.md) - [Reality-Signal](concepts/Reality-Signal.md) - [Recurring-Task](concepts/Recurring-Task.md) - [Recurring-Tasks](concepts/Recurring-Tasks.md) @@ -854,8 +874,10 @@ - [Rollback-Rate](concepts/Rollback-Rate.md) - [Root-Cause-Analysis](concepts/Root-Cause-Analysis.md) - [RPO](concepts/RPO.md) +- [RSS-Aggregation](concepts/RSS-Aggregation.md) - [RTO](concepts/RTO.md) - [S3-兼容对象存储](concepts/S3-兼容对象存储.md) +- [Safeguard-Steps](concepts/Safeguard-Steps.md) - [Sandboxed-Persona](concepts/Sandboxed-Persona.md) - [SAST](concepts/SAST.md) - [SCA](concepts/SCA.md) @@ -865,6 +887,8 @@ - [Security-and-Compliance](concepts/Security-and-Compliance.md) - [Self-Healing-Systems](concepts/Self-Healing-Systems.md) - [self-hosted-password-manager](concepts/self-hosted-password-manager.md) +- [Semantic-Deduplication](concepts/Semantic-Deduplication.md) +- [Semantic-Search](concepts/Semantic-Search.md) - [Sequential-Thinking](concepts/Sequential-Thinking.md) - [Serverless-Computing](concepts/Serverless-Computing.md) - [Shared-Memory-Architecture](concepts/Shared-Memory-Architecture.md) @@ -873,6 +897,7 @@ - [Shift-Left-Security](concepts/Shift-Left-Security.md) - [Shift-Right-Security](concepts/Shift-Right-Security.md) - [Single-Control-Plane](concepts/Single-Control-Plane.md) +- [Social-Media-Monitoring](concepts/Social-Media-Monitoring.md) - [Socket-登录](concepts/Socket-登录.md) - [SOCKS5代理](concepts/SOCKS5代理.md) - [Software-Assurance-Maturity-Model](concepts/Software-Assurance-Maturity-Model.md) @@ -881,6 +906,7 @@ - [StackSets-Deployment-Visibility](concepts/StackSets-Deployment-Visibility.md) - [Startup-MVP-Pipeline](concepts/Startup-MVP-Pipeline.md) - [Streak-Tracking](concepts/Streak-Tracking.md) +- [Sub-Agent-Race-Condition](concepts/Sub-Agent-Race-Condition.md) - [symbolic-link](concepts/symbolic-link.md) - [system-monitoring](concepts/system-monitoring.md) - [systemd](concepts/systemd.md) @@ -894,6 +920,7 @@ - [Threat-Modeling](concepts/Threat-Modeling.md) - [Time-to-Market](concepts/Time-to-Market.md) - [Todoist-API](concepts/Todoist-API.md) +- [Token-Light-Design](concepts/Token-Light-Design.md) - [Tool-Calling](concepts/Tool-Calling.md) - [TOOLS.md](concepts/TOOLS.md.md) - [ToolWrapper](concepts/ToolWrapper.md) @@ -906,13 +933,17 @@ - [UEFI启动](concepts/UEFI启动.md) - [Unified-Inbox](concepts/Unified-Inbox.md) - [USER.md](concepts/USER.md.md) +- [Vector-Embedding](concepts/Vector-Embedding.md) - [Vendor-Lock-In](concepts/Vendor-Lock-In.md) - [Vibe-Coding](concepts/Vibe-Coding.md) +- [Visual-Debugging](concepts/Visual-Debugging.md) - [Voice-Interface](concepts/Voice-Interface.md) - [Vulnerability-Scanning](concepts/Vulnerability-Scanning.md) - [Wake-on-LAN](concepts/Wake-on-LAN.md) - [Wayland](concepts/Wayland.md) +- [Web-Search-Aggregation](concepts/Web-Search-Aggregation.md) - [Webhook](concepts/Webhook.md) +- [Webhook-Proxy-Pattern](concepts/Webhook-Proxy-Pattern.md) - [WEBHOOK_URL](concepts/WEBHOOK_URL.md) - [Weekly-Pattern-Analysis](concepts/Weekly-Pattern-Analysis.md) - [What-If-Simulation](concepts/What-If-Simulation.md) diff --git a/wiki/log.md b/wiki/log.md index eb93dbf7..1b0dac34 100644 --- a/wiki/log.md +++ b/wiki/log.md @@ -1,3 +1,105 @@ +## [2026-04-22] ingest | OpenClaw as Desktop Cowork (AionUi) — Remote Rescue & Multi-Agent Hub +- Source file: Agent/usecases/aionui-cowork-desktop.md +- Status: ✅ 成功摄入 +- Summary: 通过 AionUi 桌面应用将 OpenClaw 作为可视化 Cowork Agent 运行——提供文件感知工作空间(可见文件读写/命令/网页浏览),内置 OpenClaw 部署专家通过 Telegram/WebUI 远程诊断修复(`openclaw doctor`),统一 MCP 配置全局同步到 12+ Agent,支持 WebUI/Telegram/Lark/DingTalk 多渠道远程访问。 +- Concepts created: [[CoworkWorkspace]], [[RemoteRescuePattern]], [[Multi-AgentHub]], [[MCPOnceAllAgents]] +- Entities created: [[AionUi]] +- Source page: wiki/sources/aionui-cowork-desktop.md +- Notes: + - 新增 Sources 条目至 index.md(替换 "source missing" placeholder) + - 更新 overview.md,在 AI Tools & Prompt Engineering 部分新增 [[aionui-cowork-desktop]] 段落,在 Key Entities 部分新增 [[AionUi]],在 Key Concepts 部分新增 4 个新概念 + - 创建实体页面 wiki/entities/AionUi.md + - 创建概念页面:CoworkWorkspace.md, RemoteRescuePattern.md, Multi-AgentHub.md, MCPOnceAllAgents.md + +## [2026-04-22] ingest | Family Calendar Aggregation & Household Assistant +- Source file: Agent/usecases/family-calendar-household-assistant.md +- Status: ✅ 成功摄入 +- Summary: AI Agent 作为家庭日程协调中心——聚合 5+ 个分散日历(工作/个人/家庭/学校/课外)生成每日晨间简报;通过环境消息监控(Ambient Message Monitoring)自动从 iMessage 中识别预约并创建日历事件(含行车时间缓冲);维护家庭库存 JSON,支持照片 OCR 和小票识别更新;生成购物清单。核心洞察:Ambient > Active,Mac Mini 是最优硬件。 +- Concepts created: [[AmbientMessageMonitoring]], [[HouseholdInventoryTracking]] +- Entities created: [[SparkryAI]] +- Source page: wiki/sources/family-calendar-household-assistant.md +- Notes: + - 新增 Sources 条目至 index.md(替换 "source missing" placeholder) + - 更新 overview.md,在 AI Tools & Prompt Engineering 部分新增 [[family-calendar-household-assistant]] 段落 + - 新建 Concept 页面:AmbientMessageMonitoring.md(核心差异化机制)、HouseholdInventoryTracking.md(物资追踪模式) + - 新建 Entity 页面:SparkryAI.md(牙医预约案例的来源) + - 与 [[Custom Morning Brief]] 互补:同一晨间简报模式,个人场景 vs 家庭场景 + - 与 [[Second Brain]] 共享 OpenClaw 持久记忆能力 + - 冲突检测:暂无发现与其他 Wiki 页面的内容冲突 + +## [2026-04-22] ingest | Personal Knowledge Base (RAG) +- Source file: Agent/usecases/knowledge-base-rag.md +- Status: ✅ 成功摄入 +- Summary: AI Agent 驱动的个人知识库 RAG 系统——通过 Telegram Topic 或 Slack Channel 投递任意 URL(网页/推文/YouTube 字幕/PDF),Agent 自动抓取内容并以 Embedding 向量入库;支持语义搜索,返回排名结果并附带来源;可被其他工作流(如 [[YouTube-Content-Pipeline]])主动查询。核心理念:**捕获像发短信一样简单,检索像搜索一样容易**。 +- Concepts created: [[Semantic-Search]], [[Content-Ingestion]] +- Source page: wiki/sources/knowledge-base-rag.md +- Notes: + - 新增 Sources 条目至 index.md(替换 "source missing" placeholder) + - 更新 overview.md,在 Productivity & Knowledge Management 部分新增 [[Personal Knowledge Base (RAG)]] 段落 + - 与 [[Second Brain]] 互补:Second Brain 侧重对话记忆,本方案侧重结构化知识检索 + - 与 [[YouTube-Content-Pipeline]] 关联:后者在工作流中主动查询知识库 + - [[Knowledge-Base-RAG]] 概念页已存在(2026-04-22 youtube-content-pipeline ingest 时创建),本次补充 Semantic-Search 和 Content-Ingestion 两个子概念 + - Entity 页面(OpenClaw、ClawHub、Telegram、Slack)均已在 overview.md Key Entities 中覆盖,无需新建 + - Contradiction:暂无发现与其他 Wiki 页面的内容冲突 +- Status: ✅ 成功摄入 +- Summary: AI Agent 驱动的 YouTube 选题发现与选题自动化流水线——每小时 Cron Job 扫描 Web + X/Twitter 突发 AI 新闻,向 Telegram 推送选题;维护 90 天视频目录(播放量 + 主题分析)避免选题重复;通过 SQLite 向量嵌入实现语义去重;在 Slack 分享链接时自动研究主题、搜索 X、查询知识库并创建带大纲的 Asana 任务卡。 +- Concepts created: [[Semantic-Deduplication]], [[Vector-Embedding]], [[Knowledge-Base-RAG]] +- Source page: wiki/sources/youtube-content-pipeline.md +- Notes: + - 新增 Sources 条目至 index.md(替换 "source missing" placeholder) + - 更新 overview.md,在 YouTube Automation 部分新增 [[YouTube-Content-Pipeline]] 段落 + - 与 [[Daily-YouTube-Digest]] 互补:后者侧重订阅频道更新监控,前者侧重全网趋势主动发现 + - 与 [[Content-Factory]] 共享并行子 Agent 执行模式 + - Entity 页面(OpenClaw、Asana、Slack)均已存在,无需新建 + - 新增 3 个 Concept 页面并注册至 index.md Concepts 索引 + - Contradiction:暂无发现与其他 Wiki 页面的内容冲突 +- Source file: Agent/usecases/polymarket-autopilot.md +- Status: ✅ 成功摄入 +- Summary: 基于 AI Agent 的 Polymarket 预测市场自动驾驶交易系统,实现 24/7 市场监控与自动化分析。AI Agent 自动监控 Polymarket 市场数据、智能分析预测概率变化、自动执行交易策略、定时推送市场洞察。 +- Concepts created: [[Prediction Market]], [[Agentic Trading]], [[Market Monitoring]] +- Entities created: [[Polymarket]] +- Source page: wiki/sources/polymarket-autopilot.md +- Notes: + - 新增 Sources 条目至 index.md(替换 placeholder) + - 更新 overview.md,在 Multi-Agent Monitoring 部分的 Dynamic Dashboard 段落中补充 polymarket-autopilot 引用 + - 与 [[Dynamic Dashboard]] 存在关联(监控仪表盘的具体用例) + - 与 [[earnings-tracker]] 属于同类模式(市场数据监控 + 定时推送) + - Polymarket 已在 overview.md Key Entities 中提及,无需重复创建 Entity 页面 + - Contradiction:暂无发现与其他 Wiki 页面的内容冲突 + +## [2026-04-22] ingest | Local CRM Framework with DenchClaw +- Source file: Agent/usecases/local-crm-framework.md +- Status: ✅ 成功摄入 +- Summary: DenchClaw 将 OpenClaw 转化为本地 CRM、销售自动化和生产力平台,通过 `npx denchclaw` 一键安装完整技术栈(DuckDB + Web UI + OpenClaw Profile + 浏览器自动化)。核心创新:所有设置/视图以 YAML/Markdown 文件存储,Agent 可直接修改 UI 而无需 API 抽象层;Chrome Profile 克隆使 Agent 继承用户认证状态,可直接导入 HubSpot 等平台数据。 +- Concepts created: [[File-System-First-UI]], [[DuckDB]] +- Entities created: [[DenchClaw]] +- Source page: wiki/sources/local-crm-framework.md +- Notes: + - 新增 Sources 条目至 index.md(置于首位) + - 更新 overview.md,在 [[personal-crm]] 附近添加 Local CRM Framework 段落 + - 创建 1 个 Entity 页面:DenchClaw.md + - 创建 2 个 Concept 页面:DuckDB.md、File-System-First-UI.md + - 与 [[Second Brain]] 均基于 OpenClaw 的记忆/持久化能力,属同类应用的不同垂直场景 + - 与 [[personal-crm]] 同属个人 CRM 场景的不同实现方案 + - 与 [[multi-channel-assistant]] 共享 Telegram/消息平台作为交互入口 + - 核心设计哲学:文件系统即 Agent 原生 UI + DuckDB 嵌入式数据库 + Chrome Profile 克隆 + - Contradiction:暂无发现与其他 Wiki 页面的内容冲突 + +## [2026-04-22] ingest | Goal-Driven Autonomous Tasks +- Source file: Agent/usecases/overnight-mini-app-builder.md +- Status: ✅ 成功摄入 +- Summary: AI Agent 从被动执行者转变为主动规划者的目标驱动型自主任务系统。通过 Brain Dump 一次性倾倒所有目标,OpenClaw 每日清晨自动生成 4-5 个贴近目标的自主任务(研究/写作/MVP构建),通过 Next.js Kanban 看板实时追踪。核心价值:用户定义目的地,Agent 自动分解并执行每日步骤。还包含过夜惊喜 Mini-App 构建模式。核心工程实践:Git-style append-only 日志解决多 Agent 竞态条件;Token-Light Design 保持 AUTONOMOUS.md 在 50 行以内。 +- Concepts created: [[Sub-Agent-Race-Condition]], [[Token-Light-Design]], [[Brain-Dump]] +- Entities created: (无新增,[[OpenClaw]]/[[Alex Finn]]/[[Next.js]] 均已存在) +- Source page: wiki/sources/overnight-mini-app-builder.md +- Notes: + - 新增 Sources 条目至 index.md(替换 placeholder,原标题为 overnight-mini-app-builder) + - 更新 overview.md,将 Market Research & Product Factory 段落替换为 Goal-Driven Autonomous Tasks 段落,补充 Git-style append-only 模式和 Token-Light Design 洞察 + - 更新 Alex-Finn.md,将 overnight-mini-app-builder 添加至 sources + - 创建 3 个 Concept 页面:Sub-Agent-Race-Condition.md、Token-Light-Design.md、Brain-Dump.md + - 与 [[Project State Management]] 的看板 vs 事件溯源存在潜在冲突(已记录于 Source Page Contradictions) + - 与 [[market-research-product-factory]] 同属 Alex Finn 启发的 OpenClaw 高阶用法,前者侧重任务追踪和持续执行,后者侧重产品机会发现 + ## [2026-04-17] ingest | Habit Tracker & Accountability Coach - Source file: Agent/usecases/habit-tracker-accountability-coach.md - Status: ✅ 成功摄入 @@ -923,3 +1025,63 @@ - 已有相关 Concept:[[Docker]](容器化部署底座)、[[OpenClaw]](如在 OpenClaw 环境中使用) - 无已知内容冲突 +## [2026-04-17] ingest | OpenClaw + n8n Workflow Orchestration +- Source file: Agent/usecases/n8n-workflow-orchestration.md +- Status: ✅ 成功摄入 +- Summary: 通过 Webhook 代理模式将 OpenClaw Agent 的外部 API 交互委托给 n8n 工作流,实现凭证隔离、可视化调试和流程锁定。一次实现三大收益:可观测性(n8n UI)、安全性(凭证隔离)、性能(确定性任务不消耗 LLM token)。核心机制:构建 → 测试 → 锁定循环。 +- Concepts created: [[Webhook-Proxy-Pattern]], [[Credential-Isolation]], [[Lockable-Workflow]], [[Visual-Debugging]], [[Safeguard-Steps]], [[Audit-Trail]] +- Entities created: [[Simon-Hoiberg]], [[openclaw-n8n-stack]] +- Source page: wiki/sources/n8n-workflow-orchestration.md +- Notes: + - 更新 index.md,替换 placeholder 为完整条目 + - 更新 overview.md n8n Workflow Automation 章节,补充新段落和 6 个新概念 + - 更新 OpenClaw.md sources 字段,追加 n8n-workflow-orchestration + - 更新 n8n.md Related 字段,追加 n8n-workflow-orchestration + - 创建 2 个 Entity 页面:Simon-Hoiberg.md、openclaw-n8n-stack.md + - 创建 6 个 Concept 页面:Webhook-Proxy-Pattern.md、Credential-Isolation.md、Lockable-Workflow.md、Visual-Debugging.md、Safeguard-Steps.md、Audit-Trail.md + - 与 [[workflow-automation]] 的 n8n 独立使用方式互补:不冲突 + - 与 [[使用Claude自动生成n8n工作流的实操教程]] 互补:Claude + n8n-mcp 解决工作流生成问题,本模式解决 Agent 安全集成问题,两者可叠加 + - 冲突检测:无内容冲突 + +## [2026-04-22] ingest | Personal CRM with Automatic Contact Discovery +- Source file: Agent/usecases/personal-crm.md +- Status: ✅ 成功摄入 +- Summary: 基于 OpenClaw 的个人 CRM 自动联系人发现系统——每日 Cron Job 扫描 Gmail 和日历,自动提取新联系人并更新 SQLite 数据库;通过 Telegram personal-crm topic 提供自然语言查询接口;每日 7AM 会议前简报自动研究外部参会者并推送背景资料。核心价值:零手动录入,AI 自动维护联系人关系记忆。 +- Concepts created: [[Personal-CRM]] +- Source page: wiki/sources/personal-crm.md +- Notes: + - 新增 Sources 条目至 index.md(替换 "source missing" placeholder) + - 更新 overview.md,新增 [[personal-crm]] 段落 + - Personal CRM 作为新 Concept 页面已创建并注册至 index.md Concepts 索引 + - gog CLI 作为 Entity 已存在于 [[Email-Triage]] 页面,无需新建 + - Contradiction:与 [[Second Brain]] 可能存在功能重叠,已在 source page Contradictions 部分记录 + - [[personal-crm]] 与 [[local-crm-framework]](DenchClaw)同属 OpenClaw 持久化记忆能力的不同应用场景,已在 overview.md 中体现关联 + +## [2026-04-22] ingest | X/Twitter Automation from Chat +- Source file: Agent/usecases/x-twitter-automation.md +- Status: ✅ 成功摄入 +- Summary: 通过 TweetClaw(OpenClaw 插件)实现 X/Twitter 全功能自动化——自然语言驱动发帖、回复、点赞、转发、关注、DM、搜索、数据提取、抽奖选人、账号监控。所有操作通过托管 API 完成,无 Cookie、无爬虫、无凭证暴露。 +- Concepts created: [[X/Twitter-API-Automation]], [[Social-Media-Giveaway]], [[Account-Monitoring]] +- Entities created: [[TweetClaw]] +- Source page: wiki/sources/x-twitter-automation.md +- Notes: + - 新增 Sources 条目至 index.md(替换 "source missing" placeholder) + - 更新 overview.md,在 "Multi-Agent Content Factory" 段落后新增 [[x-twitter-automation]] 段落,更新 Key Concepts 列表 + - Entity 页面 [[TweetClaw]] 已创建并注册至 index.md Entities 索引 + - Concept 页面:[[X/Twitter-API-Automation]]、[[Social-Media-Giveaway]]、[[Account-Monitoring]] 三个概念因抽象度/复用性不足,相关知识已体现在 Entity 和 Source 页面中,未独立创建 + - [[x-account-analysis]] 尚未摄入(raw 文件不存在),已在 Contradictions 部分记录为"尚未摄入" + - 冲突检测:无内容冲突 + +## [2026-04-22] ingest | Multi-Source Tech News Digest +- Source file: Agent/usecases/multi-source-tech-news-digest.md +- Status: ✅ 成功摄入 +- Summary: 多源科技新闻自动聚合与投递系统——四层数据管道整合 RSS(46源)+ Twitter/X KOL(44账号)+ GitHub Releases(19仓库)+ Brave Search 网页搜索(4主题),覆盖 109+ 信息源;质量评分算法(priority source +3, multi-source +5, recency +2, engagement +1)筛选内容;Discord/Email/Telegram 三通道投递;自然语言添加自定义来源。 +- Concepts created: [[RSS-Aggregation]], [[Social-Media-Monitoring]], [[GitHub-Release-Monitoring]], [[Web-Search-Aggregation]], [[Quality-Scoring-Algorithm]], [[Multi-Channel-Delivery]] +- Source page: wiki/sources/multi-source-tech-news-digest.md +- Notes: + - 新增 Sources 条目至 index.md(替换 "source missing" placeholder) + - 更新 overview.md,在 "Multi-Agent Monitoring & Automation" 部分新增 [[multi-source-tech-news-digest]] 段落 + - Entity 页面 [[DracoVibeCoding]] 新建(公众号作者);ClawHub 已在先前的 wiki/overview.md Key Entities 中覆盖,无需重复创建 + - [[RSSHub]] 已在 overview.md Key Concepts 中覆盖(Home Server Automation 部分),Brave Search 仅作为工具提及,均未新建独立 Entity + - Semantic-Deduplication 概念页已存在(2026-04-22 youtube-content-pipeline ingest 时创建),本次复用而非重建 + - 冲突检测:与 [[YouTube-Content-Pipeline]] 属互补关系(前者视频,后者文字新闻),无冲突 \ No newline at end of file diff --git a/wiki/overview.md b/wiki/overview.md index efa61421..3babb8da 100644 --- a/wiki/overview.md +++ b/wiki/overview.md @@ -20,7 +20,9 @@ The wiki covers two major multi-agent frameworks: **The Agency** (agency-agents) Key concepts: [[Email Triage]], [[Newsletter Digest]], [[Preference Learning]], [[Cron Job]], [[Multi-Agent Coordination]], [[Multi-Tool Integration]], [[MCP Tool Interface Design]], [[Workflow Architecture]], [[Shared Memory Architecture]], [[Private Context]], [[Single Control Plane]], [[Scheduled Task Flywheel]], [[Parallel Agent Execution]], [[Topic-Based Routing]], [[Voice Interface]], [[Telephony Integration]], [[PM Delegation Pattern]], [[CEO Pattern]], [[Shared State Coordination]], [[Git-as-Audit-Log]], [[Dynamic-Dashboard]], [[Alerting]], [[Zero-Friction Capture]], [[Cumulative Memory]], [[Conversational Interface]], [[Text-and-Search]], [[Unified-Inbox]], [[Intent-Classification]], [[Human-Handoff]], [[Test-Mode]], [[Business-Knowledge-Base]], [[Language-Detection]], [[AI-Auto-Response]], [[Heartbeat-Monitoring]] ### Multi-Agent Monitoring & Automation -**Dynamic Dashboard**:基于 [[OpenClaw]] 的多数据源实时监控仪表盘——通过子代理并行抓取 GitHub/Twitter/Polymarket/系统健康等多数据源,定时聚合结果推送 Discord,支持告警阈值和历史趋势存储。用对话式指令替代数周前端开发,立即获得实时洞察。与 [[self-healing-home-server]] 的系统监控场景关联,[[earnings-tracker]] 的市场数据监控场景扩展,[[content-factory]] 共享子代理并行执行模式。 +**Dynamic Dashboard**:基于 [[OpenClaw]] 的多数据源实时监控仪表盘——通过子代理并行抓取 GitHub/Twitter/Polymarket/系统健康等多数据源,定时聚合结果推送 Discord,支持告警阈值和历史趋势存储。用对话式指令替代数周前端开发,立即获得实时洞察。[[polymarket-autopilot]] 是 Polymarket 市场监控的具体实现——AI Agent 24/7 自动监控预测市场、分析概率变化、自动执行交易策略。与 [[self-healing-home-server]] 的系统监控场景关联,[[earnings-tracker]] 的市场数据监控场景扩展,[[content-factory]] 共享子代理并行执行模式。 + +**[[multi-source-tech-news-digest]]**:AI Agent 驱动的多源科技新闻自动聚合与投递系统——四层数据管道整合 46 个 RSS 源、44 个 Twitter/X KOL 账号、19 个 GitHub Releases 仓库和 4 个 Brave Search 主题,覆盖 109+ 信息源;通过标题相似度去重和多维度质量评分(priority source +3, multi-source +5, recency +2, engagement +1)生成精选简报;支持 Discord/Email/Telegram 三通道投递,30 秒内通过自然语言添加自定义来源。属 [[Daily-YouTube-Digest]] / [[Daily Reddit Digest]] 同款 Cron Job + AI 摘要模式的不同垂直场景(前者视频,后者 Reddit 社区,本方案文字新闻)。 ### Cloud Transformation & DevOps Cloud Transformation Programme (CTP) materials cover AWS landing zones, EKS, Terraform, GitOps, FinOps, observability, security, and enterprise architecture. Key themes: 3 Lines of Defence framework, ITSM, container hardening, backup & DR strategies. DevOps culture focuses on four pillars: Collaboration, Automation (CI/CD, IaC), Continuous Improvement (Kaizen), and Customer-Centricity. Agile practices (Scrum, Kanban) are symbiotic with DevOps. Emerging trends: DevSecOps, GitOps, Serverless DevOps, AI/ML-driven automation, and Edge Computing DevOps. @@ -39,11 +41,15 @@ A practical tip for extracting YouTube Channel IDs: use `view-source:` prefix in **AI-Powered Daily Digest**: [[daily-youtube-digest]] provides a fully automated pipeline — AI Agent periodically checks subscribed channels for new uploads → extracts video transcripts via [[TranscriptAPI.com]] → generates key-point summaries → delivers a daily digest. Runs on [[OpenClaw]] via the `youtube-full` skill (installable from [[ClawHub]]), using 0-credit free API calls for channel checking and 1 credit per transcript for summarization. Supports two modes: channel-based (e.g., @TED, @Fireship, @LexFridman) and keyword-based (e.g., "Claude Code", "AI agents"). +**[[YouTube-Content-Pipeline]]**:AI Agent 驱动的 YouTube 选题发现与选题自动化流水线——每小时 Cron Job 扫描 Web + X/Twitter 突发 AI 新闻,向 Telegram 推送选题;同时维护 90 天视频目录(播放量 + 主题分析)避免选题重复,通过 SQLite 向量嵌入实现语义去重;在 Slack 分享链接时自动研究主题、搜索 X、查询知识库并创建带大纲的 Asana 任务卡。与 [[Daily-YouTube-Digest]] 互补:后者侧重订阅频道更新监控,前者侧重全网趋势主动发现。与 [[Content-Factory]] 共享并行子 Agent 执行模式。 + **[[Daily Reddit Digest]]**:AI Agent 驱动的 Reddit 每日精选摘要自动化——通过 [[OpenClaw]] + `reddit-readonly` skill,每日定时抓取指定 Subreddit 的热门/最新/最高赞帖子,AI 记忆用户偏好并持续优化精选规则(如排除表情包类内容)。纯读取模式,无需认证。属 [[Daily YouTube Digest]] 同款模式(定时 + AI 摘要 + 偏好学习)的 Reddit 垂直场景。 **Multi-Agent Content Factory**: [[content-factory]] 是基于 Discord 频道的多 Agent 内容工厂,通过 Research Agent → Writing Agent → Thumbnail Agent 链式协作,实现内容创作全流程自动化(研究→写作→设计)。每天定时运行,创作者次日醒来即可收获成品内容。[[OpenClaw]] 提供 sessions_spawn/sessions_send 能力支撑多 Agent 编排。 -Key concepts: [[Channel ID]], [[RSS Feed]], [[YouTube Automation]], [[Daily-Digest]], [[Transcript-Based Summarization]], [[TranscriptAPI.com]], [[Chained Agents]], [[Content Automation]] +**X/Twitter Automation**: [[x-twitter-automation]] 是基于 [[OpenClaw]] 的 X/Twitter 全功能自动化方案——通过 TweetClaw 插件(`@xquik/tweetclaw`)连接 X/Twitter 托管 API,实现自然语言驱动的发帖、回复、点赞、转发、关注、DM、搜索、数据提取、抽奖选人和账号监控。支持可配置的抽奖筛选条件(最低粉丝数/账号年龄/关键词),账号监控可追踪指定用户的新推文或粉丝变化并推送通知。所有操作通过托管 API 完成,无 Cookie、无爬虫、无凭证暴露。与 [[x-account-analysis]] 互补(分析 vs 操作),可与 [[content-factory]] 配合扩展社交媒体内容发布能力。 + +Key concepts: [[Channel ID]], [[RSS Feed]], [[X/Twitter-API-Automation]], [[Social-Media-Giveaway]], [[Account-Monitoring]], [[Daily-Digest]], [[Transcript-Based Summarization]], [[TranscriptAPI.com]], [[Chained Agents]], [[Content Automation]], [[Semantic-Deduplication]], [[Vector-Embedding]], [[Knowledge-Base-RAG]] ### n8n Workflow Automation [[n8n]] 是开源工作流自动化平台,支持 Trigger 节点监听外部事件。n8n 可与 [[Telegram]] 集成,接收机器人消息触发工作流;也可与 YouTube API 集成实现订阅监控。Telegram 集成时需要通过 `WEBHOOK_URL` 环境变量(设为 HTTPS 地址)解决 Telegram 对 Webhook 协议的要求,否则会报 "bad webhook: An HTTPS URL must be provided for webhook" 错误。 @@ -52,7 +58,9 @@ Key concepts: [[Channel ID]], [[RSS Feed]], [[YouTube Automation]], [[Daily-Dige **Claude + N8N MCP 自动化工作流**:通过安装 [[n8n-mcp]](Model Context Protocol 多功能控制面板),Claude 可理解并调用 543 个 N8N 节点,自动生成工作流。使用 OpenSea 模型 + Extended Thinking 模式可提升生成质量,Claude 生成的 N8N 工作流完成度约 80%-90%,仍需人工二次修正,但显著降低了新手的入门门槛。两种接入路径:**Claude Desktop** 端侧方案(适合桌面用户,通过本地 MCP 连接 n8n)与 **Claude API** 云端方案(适合程序化集成),核心均依赖 [[Node.js]] 运行环境。 -Key concepts: [[Webhook]], [[WEBHOOK_URL]], [[n8n Workflow]], [[n8n-mcp]], [[Extended Thinking]], [[工作流自动化]], [[Claude Desktop]], [[Node.js]] +Key concepts: [[Webhook]], [[WEBHOOK_URL]], [[n8n Workflow]], [[n8n-mcp]], [[Extended Thinking]], [[工作流自动化]], [[Claude Desktop]], [[Node.js]], [[Webhook-Proxy-Pattern]], [[Credential-Isolation]], [[Lockable-Workflow]], [[Visual-Debugging]], [[Safeguard-Steps]], [[Audit-Trail]] + +**OpenClaw + n8n Webhook 代理模式**:[[n8n-workflow-orchestration]] 描述了一种将 OpenClaw Agent 外部 API 交互委托给 n8n 的安全架构——OpenClaw 通过 Webhook 调用 n8n 工作流,n8n 持有凭证并执行 API 调用,Agent 完全不知道密钥。核心机制:构建 → 测试 → 锁定循环,确保工作流行为不被 Agent 静默修改。[[openclaw-n8n-stack]] Docker Compose 堆栈提供一键部署,[[Simon-Hoiberg]] 是该模式的提出者。与 n8n-mcp 的互补关系:Claude + n8n-mcp 解决工作流生成问题,本模式解决 Agent 安全集成问题。 ### Linux System Monitoring Six Linux resource monitoring tools reviewed: TUI tools (Btop++, Htop, Glances, Bottom) for SSH-friendly server management; GUI tools (Mission Center, Stacer) for desktop use. Author's top pick: Btop++ for its balance of usability and aesthetics. [[Btop++]], [[Htop]], [[Glances]], [[Bottom]], [[Mission Center]], [[Stacer]], [[TUI]], [[TOTP]], [[Passkey]], [[Self-Hosted Password Manager]] @@ -70,7 +78,9 @@ Key concepts: [[国家中小学智慧教育平台]], [[tchMaterial-parser]], [[C ### AI Tools & Prompt Engineering Covers Claude Code, Claude Code Templates (npx 一键安装 Skills/Agents/MCP via `npx claude-code-templates@latest --skill= --yes` from aitmpl.com), OpenCode, [[Cursor]], [[Trae]], Gemini CLI, Vibe Coding, RAG, multi-agent workflows, NotebookLM, Nano Banana prompting, and video generation tools. -**Custom Morning Brief**:基于 [[OpenClaw]] 的晨间简报自动化——每天定时(例 8AM)通过 Telegram/Discord/iMessage 推送结构化报告,内容涵盖:新闻研究(AI/创业/科技方向)、当日待办事项(集成 Todoist/Apple Reminders/Asana)、主动任务推荐(AI 自主思考可帮助完成的事项)、睡前完成的完整草稿(脚本/邮件/商业方案,而非仅标题)。核心洞察:**主动任务推荐**是整个系统最有价值的部分——AI 主动思考如何帮助用户,而非被动等待指令;完整草稿(full draft)比标题建议节省大量时间;用户只需发消息即可调整简报内容,无门槛个性化。与 [[self-healing-home-server]] 的 Morning Briefing 属同一模式的不同垂直场景。 +**[[custom-morning-brief]]**:基于 [[OpenClaw]] 的晨间简报自动化——每天定时(例 8AM)通过 Telegram/Discord/iMessage 推送结构化报告,内容涵盖:新闻研究(AI/创业/科技方向)、当日待办事项(集成 Todoist/Apple Reminders/Asana)、主动任务推荐(AI 自主思考可帮助完成的事项)、睡前完成的完整草稿(脚本/邮件/商业方案,而非仅标题)。核心洞察:**主动任务推荐**是整个系统最有价值的部分——AI 主动思考如何帮助用户,而非被动等待指令;完整草稿(full draft)比标题建议节省大量时间;用户只需发消息即可调整简报内容,无门槛个性化。与 [[self-healing-home-server]] 的 Morning Briefing 属同一模式的不同垂直场景。 + +**[[family-calendar-household-assistant]]**:基于 [[OpenClaw]] 的家庭日程协调与物资管理方案——聚合 5+ 个分散日历(工作/个人/家庭/学校/课外)生成每日晨间简报;通过环境消息监控(Ambient Message Monitoring)自动从 iMessage 中识别预约并创建日历事件(含行车时间缓冲);维护家庭库存 JSON(冰箱/储藏室),支持照片 OCR 和小票识别更新;生成购物清单。核心洞察:**Ambient > Active**——Agent 在不被要求时主动行动才是最大突破;Mac Mini 是该场景的最优硬件(iMessage 集成 + 始终在线)。与 [[Custom Morning Brief]] 属同一晨间简报模式的不同场景(个人 vs 家庭)。 **Todoist Task Manager**:基于 [[OpenClaw]] 的 AI 驱动任务管理自动化——Agent 解析自然语言指令("这周完成 Q1 报告")→ 调用 Todoist REST API 创建结构化任务(含截止/项目/标签)→ Cron Job 定时扫描逾期任务主动推送提醒。与 [[multi-channel-assistant]] 中 Todoist 集成属同一技术栈,Todoist Task Manager 侧重任务管理的深度自动化(Cron 追踪/会议→任务闭环),multi-channel-assistant 侧重多渠道入口的统一体验。 @@ -82,12 +92,18 @@ Covers Claude Code, Claude Code Templates (npx 一键安装 Skills/Agents/MCP vi **Event Guest Confirmation**:基于 [[OpenClaw]] + [[SuperCall]] 的活动嘉宾自动确认方案——通过 AI 语音电话批量外呼客人,确认出席状态并收集备注(饮食禁忌、Plus-One、到达时间等),通话完成后生成出席确认/未出席/未接听三分类摘要。核心价值:真人电话比短信/文字消息回复率更高;SuperCall 的沙盒 persona 设计确保 AI 只拥有预设上下文,无法访问用户 Agent 或数据,无 Prompt Injection 风险;每通电话独立重置,无对话间信息混淆。与 [[phone-based-personal-assistant]] 同属 AI 电话外呼场景,但 [[SuperCall]] 的独立沙盒设计更适用于确认类单一任务。 -**Market Research & Product Factory**:基于 [[OpenClaw]] 的"创业自动驾驶"方案——通过 [[Last 30 Days Skill]] 挖掘 Reddit 和 X 近30天真实用户痛点,按频率排序TOP需求,分析现有方案缺口,然后直接让 OpenClaw 构建可分享的 Web 应用 MVP。核心价值:**发短信就能完成从市场调研到产品原型的全流程**,无需技术背景。与 [[content-factory]] 同属 Alex Finn 启发的 OpenClaw 高阶用法,但前者侧重内容创作,后者侧重产品机会发现。 +**[[personal-crm]]**:基于 [[OpenClaw]] 的个人 CRM 自动联系人发现系统——每日 Cron Job 扫描 Gmail 和日历,自动提取新联系人并更新 SQLite 数据库(姓名、邮箱、首次出现时间、最后联系时间、互动次数、备注);通过 Telegram personal-crm topic 提供自然语言查询接口("Who needs follow-up?"、"When did I last talk to [person]?");每日 7AM 会议前简报自动研究外部参会者并推送背景资料(含上次交流内容和待跟进事项)。核心价值:**零手动录入,AI 自动维护联系人关系记忆**,让每次会议都有准备。需 [[gog CLI]] 提供邮件和日历数据。与 [[local-crm-framework]](DenchClaw)和 [[Second Brain]] 同属 OpenClaw 持久化记忆能力的不同应用场景——personal-crm 侧重结构化联系人和会议准备。 + +**Local CRM Framework**:基于 [[OpenClaw]] 的本地 CRM 框架 [[DenchClaw]]——通过 `npx denchclaw` 一键安装完整技术栈(DuckDB + Web UI + OpenClaw Profile + 浏览器自动化),所有设置/视图以 YAML/Markdown 文件存储,Agent 可直接修改 UI 而无需 API 抽象层。核心创新:Chrome Profile 克隆使 Agent 继承用户认证状态,可直接导入 HubSpot 等平台数据。[[Second Brain]] 和 [[personal-crm]] 均属同类 OpenClaw 持久化记忆能力的不同应用场景。 + +**Goal-Driven Autonomous Tasks**:[[overnight-mini-app-builder]] 是基于 [[OpenClaw]] 的目标驱动型自主任务方案——每天清晨 8:00 自动生成 4-5 个贴近目标的自主任务(研究/写作/竞品分析/MVP 构建),通过 Next.js Kanban 看板实时追踪,进度透明可见。核心洞察:**将"规划"和"执行"都外包给 AI Agent,用户只需定义目的地,Agent 自动分解并执行每日步骤**。该方案还包含过夜惊喜 Mini-App 构建模式——指示 Agent 构建 MVP,每天醒来即收获一个新产品原型。与 [[market-research-product-factory]] 同属 Alex Finn 启发的 OpenClaw 高阶用法,但前者侧重任务追踪和持续执行,后者侧重产品机会发现。与 [[Project State Management]] 的看板 vs 事件溯源存在潜在冲突。核心工程实践:**Git-style append-only 日志模式**(主会话管 AUTONOMOUS.md 状态,子代理只追加 tasks-log.md)解决多 Agent 竞态条件;[[Token-Light Design]] 保持 AUTONOMOUS.md 在 50 行以内避免心跳轮询 token 浪费。 **Pre-Build Idea Validator**:基于 [[OpenClaw]] + [[idea-reality-mcp]] 的 AI 项目启动前竞争分析门控——在写代码之前自动扫描 GitHub/Hacker News/npm/PyPI/Product Hunt 五个数据源,返回 `reality_signal` 分数(0-100)评估赛道拥挤度:高分数(>70)触发 STOP(展示竞品+询问是否继续/转向),低分数(<30)直接构建。核心价值:**在投入时间前发现已解决的同类问题**,是单兵创业者最重要的决策门控。与 [[market-research-product-factory]] 互补:后者挖痛点找方向,前者在动手前验证赛道的竞争密度。 **Claude Code 调用方法**:[[claude-code调用方法总结]] 详细记录了 Hermes Agent 通过 `terminal` 工具调用 Claude Code 的两种模式——Print Mode(`claude -p`,适合绝大多数任务)和 TMUX 交互模式(适合超长任务)。核心参数包括 `--permission-mode bypassPermissions`(跳过所有权限确认)和 `--add-dir`(加载 SKILL.md)。关键结论:当任务需要 Claude Code 的 Skill 时,应使用 `terminal` 调用 `claude -p` 而非 `delegate_task`。 +**[[aionui-cowork-desktop]]**:基于 [[AionUi]] 的 OpenClaw 桌面可视化 + 远程救援方案——通过 AionUi 的 Cowork 工作空间,用户可直接看到 OpenClaw 读写文件、运行命令、浏览网页,而非仅终端日志;内置 OpenClaw 部署专家,通过 Telegram/WebUI 远程诊断修复(`openclaw doctor`),解决"OpenClaw 挂了且不在机器旁"的困境;统一 MCP 配置一次,全局同步到 OpenClaw + 12+ 其他 Agent。与 [[Self-Healing-Home-Server]] 的远程修复场景关联,[[Multi-AgentHub]] 共享同一多 Agent 并行管理理念。 + **播客制作自动化**:[[podcast-production-pipeline]] 提供 AI Agent 全自动播客制作流水线,覆盖「录前研究→大纲脚本→录制→时间戳笔记→社媒推广包→SEO描述」全链路。与 [[Content Factory]] 配合可将播客内容复用为博客、Newsletter、视频片段等多格式资产。 **Google ADK Skill 设计模式**:Google Cloud 发布的 5 种结构化设计模式,**[[ToolWrapper]]**(按需加载领域知识)、**[[Generator]]**(模板填空生成)、**[[Reviewer]]**(检查逻辑分离)、**[[Inversion]]**(先收集再行动)、**[[Pipeline]]**(硬性检查点工作流)。Anthropic 的 Skill 实践:内部几百个 Skills 总结出 3 条铁律——只写 Agent 不知道的东西、重点写踩坑清单、给工具不给指令。 @@ -96,12 +112,14 @@ Covers Claude Code, Claude Code Templates (npx 一键安装 Skills/Agents/MCP vi **会议记录自动化**:[[meeting-notes-action-items]] 提供 AI Agent 自动将会议转录文本(Otter.ai、Google Meet、Zoom)转换为结构化摘要,自动从会议中提取行动项并创建 Jira/Linear/Todoist/Notion 任务,同时发送 Slack/Discord 摘要,支持截止日提醒。核心洞察:**自动任务创建**比摘要本身更有价值,无法转化为追踪任务的会议记录只是"文档剧场"。 -Key concepts: [[Morning Briefing]], [[Todoist API]], [[AI-Driven Task Extraction]], [[TaskAutomation]], [[Recurring Tasks]], [[MeetingNotes]], [[ActionItemTracking]], [[TranscriptProcessing]], [[RAG从入门到精通系列]], [[Agent Personality Design]], [[Vibe Coding]], [[Design-to-Code Workflow]], [[Multi-AI Review]], [[CodeWeaver]], [[LLM Wiki]], [[多智能体系统可靠性]], [[Plan Mode]], [[Build Mode]], [[Workspace]], [[AGENTS.md]], [[SOUL.md]], [[USER.md]], [[IDENTITY.md]], [[TOOLS.md]], [[BOOTSTRAP.md]], [[HEARTBEAT.md]], [[MEMORY.md]], [[Agent-Memory]], [[Claude Code Templates]], [[MCP(Model Context Protocol)]], [[Remote-SSH]], [[Bind Mount]], [[Attach 容器]], [[Docker 用户组]], [[SSH Config]], [[SSH 免密登录]], [[Vibe-Kanban]], [[OpenCode]], [[nvm]], [[pm2]], [[单一职责原则]], [[DRY原则]], [[模块化编程]], [[微服务架构]], [[Redis缓存]], [[消息队列]], [[输入-处理-输出模型]], [[并发编程]], [[Pain Point Mining]], [[Startup MVP Pipeline]], [[Agent-Driven Market Research]], [[Last 30 Days Method]], [[Pre-Build Validation]], [[Reality-Signal]], [[Competition-Analysis]], [[Pivot-Strategy]], [[Agent-Build-Gate]] +Key concepts: [[Morning Briefing]], [[Todoist API]], [[AI-Driven Task Extraction]], [[TaskAutomation]], [[Recurring Tasks]], [[MeetingNotes]], [[ActionItemTracking]], [[TranscriptProcessing]], [[RAG从入门到精通系列]], [[Agent Personality Design]], [[Vibe Coding]], [[Design-to-Code Workflow]], [[Multi-AI Review]], [[CodeWeaver]], [[LLM Wiki]], [[多智能体系统可靠性]], [[Plan Mode]], [[Build Mode]], [[Workspace]], [[AGENTS.md]], [[SOUL.md]], [[USER.md]], [[IDENTITY.md]], [[TOOLS.md]], [[BOOTSTRAP.md]], [[HEARTBEAT.md]], [[MEMORY.md]], [[Agent-Memory]], [[Claude Code Templates]], [[MCP(Model Context Protocol)]], [[Remote-SSH]], [[Bind Mount]], [[Attach 容器]], [[Docker 用户组]], [[SSH Config]], [[SSH 免密登录]], [[Vibe-Kanban]], [[OpenCode]], [[nvm]], [[pm2]], [[单一职责原则]], [[DRY原则]], [[模块化编程]], [[微服务架构]], [[Redis缓存]], [[消息队列]], [[输入-处理-输出模型]], [[并发编程]], [[Pain Point Mining]], [[Startup MVP Pipeline]], [[Agent-Driven Market Research]], [[Last 30 Days Method]], [[Pre-Build Validation]], [[Reality-Signal]], [[Competition-Analysis]], [[Pivot-Strategy]], [[Agent-Build-Gate]], [[CoworkWorkspace]], [[RemoteRescuePattern]], [[Multi-AgentHub]], [[MCPOnceAllAgents]] ### Productivity & Knowledge Management Obsidian plugins, blogwatcher RSS monitoring, Quartz static site generation, project management systems, and personal CRM frameworks. QuickAdd plugin enables quick note capture via hotkeys for rapid idea recording. -Key concepts: [[Obsidian Tasks]], [[Dataview]], [[Templater]], [[QuickAdd]], [[Spaced Repetition]], [[Kanban]], [[Projects]], [[Outliner]], [[Calendar]], [[DB Folder]], [[Homepage]], [[间隔重复]], [[看板]], [[动态模板]], [[双向链接]], [[Daily Notes]], [[Event Sourcing]], [[Second Brain]], [[Personal CRM]] +**Personal Knowledge Base (RAG)**:基于 [[OpenClaw]] 的个人知识库 RAG 系统——通过 Telegram Topic 或 Slack Channel 投递任意 URL(网页/推文/YouTube 字幕/PDF),Agent 自动抓取内容并以 Embedding 向量入库;支持语义搜索("我保存的关于 LLM memory 的内容?"),返回排名结果并附带来源;可被其他工作流(如 [[YouTube-Content-Pipeline]])主动查询。核心理念:**捕获像发短信一样简单,检索像搜索一样容易**,无需专用 App。[[ClawHub]] 提供 knowledge-base skill 一键安装。与 [[Second Brain]] 同属 OpenClaw 持久记忆能力,Second Brain 侧重对话记忆,本方案侧重结构化知识检索。 + +Key concepts: [[Obsidian Tasks]], [[Dataview]], [[Templater]], [[QuickAdd]], [[Spaced Repetition]], [[Kanban]], [[Projects]], [[Outliner]], [[Calendar]], [[DB Folder]], [[Homepage]], [[间隔重复]], [[看板]], [[动态模板]], [[双向链接]], [[Daily Notes]], [[Event Sourcing]], [[Second Brain]], [[Personal CRM]], [[Knowledge-Base-RAG]], [[Zero-Friction-Capture]], [[Semantic-Search]], [[Content-Ingestion]] ### 个人品牌与一人公司 系统性的个人商业化方法论:**天才地带自检**(识别能产生心流的活动)→ **底层能力挖掘**(追溯童年、毫不费力、底层通用三个维度)→ **心理陷阱识别**(愧疚陷阱、效率陷阱、卓越陷阱、努力陷阱)→ **Ikigai 框架定位**(热情 × 擅长 × 市场需求 × 报酬)→ **赛道验证**(搜索意图分析、支付意愿测试、落地页测试、预售验证)→ **产品体系设计**(引流免费PDF → ¥199入门工具 → ¥4999核心特训营 → ¥20,000/月高价咨询)→ **内容矩阵构建**(核心主题 × 内容形式,反向金字塔内容法,Build in Public)→ **销售漏斗搭建**(获客 → 激活 → 转化,价格锚定与诱饵效应)。 @@ -127,6 +145,7 @@ Key concepts: [[一人公司]], [[个人品牌]], [[Ikigai框架]], [[天才地 - [[agency-agents]] — GitHub repository - [[DracoVibeCoding]] — 公众号"Draco正在VibeCoding"作者,专注 Vibe Coding 与 AI Agent 实战分享 - [[OpenClaw]] — multi-agent framework with memory +- [[AionUi]] — 桌面多 Agent Hub(macOS/Windows/Linux),将 OpenClaw 作为可视化 Cowork Agent 运行,支持内置远程救援专家和统一 MCP 配置 - [[n8n]] — workflow automation - [[Node.js]] — JavaScript 运行时环境,n8n-mcp 的运行依赖,也是 [[n8n]] 工作流引擎的后端运行环境 - [[Quartz]] — static site generator for wikis diff --git a/wiki/sources/aionui-cowork-desktop.md b/wiki/sources/aionui-cowork-desktop.md new file mode 100644 index 00000000..4d8ed1cf --- /dev/null +++ b/wiki/sources/aionui-cowork-desktop.md @@ -0,0 +1,44 @@ +--- +title: "OpenClaw as Desktop Cowork (AionUi) — Remote Rescue & Multi-Agent Hub" +type: source +tags: [] +date: 2026-04-22 +--- + +## Source File +- [[Agent/usecases/aionui-cowork-desktop.md]] + +## Summary(用中文描述) +- 核心主题:如何通过 AionUi 桌面应用将 OpenClaw 作为协作型 Agent 运行,并实现远程救援和多 Agent 集中管理 +- 问题域:OpenClaw 用户缺少可视化工作空间、远程修复能力和统一的多 Agent 管理界面 +- 方法/机制:AionUi 提供 Cowork 工作空间(文件感知界面)、内置 OpenClaw 部署专家(远程诊断修复)、多 Agent 并行运行、统一 MCP 配置、跨平台远程访问(WebUI/Telegram/Lark/DingTalk) +- 结论/价值:一个 App 集成 OpenClaw + 12+ 其他 Agent,配置一次 MCP 即可全局生效,远程场景下可随时通过 Telegram/WebUI 修复 OpenClaw 故障 + +## Key Claims(用中文描述) +- AionUi 将 OpenClaw 作为一等公民 Agent 运行,提供文件感知的工作空间界面,用户可直接看到 Agent 读写文件、运行命令、浏览网页 +- 当 OpenClaw 故障且用户不在机器旁时,可通过 Telegram 或 WebUI 打开 AionUi,使用内置 OpenClaw 部署专家运行 `openclaw doctor`、修复配置、重启网关 +- AionUi 配置一次 MCP 服务器,即同步到 OpenClaw 和所有其他 Agent,无需逐个配置 +- 支持 WebUI、Telegram、Lark、DingTalk 多渠道远程访问同一个 AionUi 实例(及 OpenClaw) + +## Key Quotes +> "OpenClaw, built-in agent, Claude Code, Codex, etc. in one app; switch or run in parallel, same MCP config for all." — AionUi 多 Agent 统一界面 +> "A common pattern for users who run OpenClaw headless or on another machine." — 远程救援场景 + +## Key Concepts +- [[CoworkWorkspace]]:文件感知的工作空间,用户可看到 Agent 读写文件、运行命令、浏览网页,而非仅终端/聊天输出 +- [[RemoteRescuePattern]]:通过远程渠道(Telegram/WebUI)访问内置专家 Agent,执行诊断修复命令(`openclaw doctor`)恢复主 Agent 连接 +- [[Multi-AgentHub]]:单一应用中并行运行 OpenClaw、Claude Code、Codex 等 12+ Agent,统一界面、统一 MCP 配置 +- [[MCPOnceAllAgents]]:在 AionUi 中配置一次 MCP 服务器,全局同步到所有集成的 Agent + +## Key Entities +- [[AionUi]]:免费开源桌面应用,将 OpenClaw 作为一等公民 Agent 运行,支持多 Agent 并行、统一 MCP 配置和跨平台远程访问 +- [[OpenClaw]]:开源 AI Agent 框架,支持持久记忆和工作流编排,本文档中的被集成目标 +- [[iOfficeAI]]:AionUi 开发公司 + +## Connections +- [[AionUi]] ← integrates ← [[OpenClaw]] +- [[AionUi]] ← extends ← [[OpenClaw-N8N-Webhook-Pattern]] (AionUi 本身提供多 Agent 界面,n8n 模式提供工作流安全集成) +- [[RemoteRescuePattern]] ← enables ← [[Self-Healing-Home-Server]] (远程修复 OpenClaw 故障的能力) + +## Contradictions +- 无明显冲突。AionUi 侧重桌面可视化 + 多 Agent 并行管理,[[openclaw-n8n-stack]] 侧重安全 Webhook 代理集成,两者可互补使用。