export interface Resource { title: string; desc: string; url: string; source: string; sourceIcon?: string; lang: 'zh' | 'en'; category: ResourceCategory; featured?: boolean; tags?: string[]; } export type ResourceCategory = | 'official' | 'getting-started' | 'channel-integration' | 'skill-dev' | 'video' | 'deep-dive' | 'tools' | 'cloud-deploy' | 'use-cases'; export const categoryMeta: Record< ResourceCategory, { icon: string; label: string; labelEn: string; color: string } > = { official: { icon: '📖', label: '官方资源', labelEn: 'Official', color: 'blue', }, 'getting-started': { icon: '🏁', label: '入门部署', labelEn: 'Getting Started', color: 'green', }, 'channel-integration': { icon: '📱', label: '平台接入', labelEn: 'Channels', color: 'purple', }, 'skill-dev': { icon: '🧩', label: '技能开发', labelEn: 'Skills', color: 'orange', }, video: { icon: '📹', label: '视频教程', labelEn: 'Videos', color: 'red', }, 'deep-dive': { icon: '🔬', label: '深度文章', labelEn: 'Deep Dives', color: 'indigo', }, tools: { icon: '🔧', label: '工具与插件', labelEn: 'Tools', color: 'teal', }, 'cloud-deploy': { icon: '☁️', label: '云平台部署', labelEn: 'Cloud Deploy', color: 'sky', }, 'use-cases': { icon: '💡', label: '玩法与场景', labelEn: 'Use Cases', color: 'amber', }, }; export const resources: Resource[] = [ // ============ Official Resources ============ { title: 'OpenClaw 官方文档', desc: '完整的 API 参考、配置指南和架构说明', url: 'https://docs.openclaw.ai', source: 'OpenClaw', lang: 'en', category: 'official', featured: true, tags: ['文档', '必读'], }, { title: 'GitHub — openclaw/openclaw', desc: '源代码、Issue 跟踪和社区贡献指南 (354k+ ⭐)', url: 'https://github.com/openclaw/openclaw', source: 'GitHub', lang: 'en', category: 'official', featured: true, tags: ['源码', '开源'], }, { title: 'ClawHub 技能市场', desc: '发现、安装和分享 AI 技能插件', url: 'https://clawhub.com', source: 'ClawHub', lang: 'en', category: 'official', featured: true, tags: ['技能', '市场'], }, { title: 'Getting Started — 官方入门指南', desc: '从零到第一次对话的最快路径', url: 'https://docs.openclaw.ai/start/getting-started', source: 'OpenClaw Docs', lang: 'en', category: 'official', tags: ['入门', '必读'], }, { title: 'Discord 社区', desc: '与数万开发者和用户实时交流', url: 'https://discord.com/invite/clawd', source: 'Discord', lang: 'en', category: 'official', tags: ['社区', '讨论'], }, { title: 'OpenClaw — Wikipedia', desc: '维基百科词条,了解 OpenClaw 的历史和影响', url: 'https://en.wikipedia.org/wiki/OpenClaw', source: 'Wikipedia', lang: 'en', category: 'official', tags: ['百科'], }, { title: 'ClawHub Skills 仓库', desc: '所有已发布技能的源码归档', url: 'https://github.com/openclaw/skills', source: 'GitHub', lang: 'en', category: 'official', tags: ['技能', '源码'], }, // ============ Cloud Deploy (云平台) ============ { title: '阿里云 — 部署 OpenClaw 构建钉钉 AI 助理', desc: '轻量应用服务器一键部署,可视化配置面板接入钉钉', url: 'https://help.aliyun.com/zh/simple-application-server/use-cases/quickly-deploy-and-use-openclaw', source: '阿里云', lang: 'zh', category: 'cloud-deploy', featured: true, tags: ['阿里云', '钉钉', '一键部署'], }, { title: '阿里云 — AppFlow 集成企业微信', desc: '通过应用连接器将 OpenClaw 与企业微信集成,群聊直接交互', url: 'https://help.aliyun.com/zh/simple-application-server/use-cases/openclaw-enterprise-wechat-integration', source: '阿里云', lang: 'zh', category: 'cloud-deploy', tags: ['阿里云', '企业微信', 'AppFlow'], }, { title: '腾讯云 — OpenClaw 接入飞书保姆级教程', desc: 'Lighthouse 一键部署 + 飞书机器人全流程配置', url: 'https://cloud.tencent.com/developer/article/2625073', source: '腾讯云', lang: 'zh', category: 'cloud-deploy', featured: true, tags: ['腾讯云', '飞书', 'Lighthouse'], }, { title: '腾讯云 — OpenClaw 接入企业微信完全指南', desc: '可视化配置面板,几步完成企业微信接入', url: 'https://cloud.tencent.com/developer/article/2625147', source: '腾讯云', lang: 'zh', category: 'cloud-deploy', tags: ['腾讯云', '企业微信'], }, { title: 'DigitalOcean — One-Click Deploy OpenClaw', desc: 'Learn how to deploy OpenClaw using DigitalOcean\'s 1-Click solution', url: 'https://www.digitalocean.com/community/tutorials/how-to-run-openclaw', source: 'DigitalOcean', lang: 'en', category: 'cloud-deploy', featured: true, tags: ['DigitalOcean', '一键部署'], }, { title: 'Hostinger — How to Set Up OpenClaw on a Private Server', desc: 'Step-by-step guide for Hostinger VPS deployment', url: 'https://www.hostinger.com/tutorials/how-to-set-up-openclaw', source: 'Hostinger', lang: 'en', category: 'cloud-deploy', tags: ['Hostinger', 'VPS'], }, // ============ Getting Started (入门部署) ============ { title: 'OpenClaw 下载安装使用 — 详细图文教程', desc: '系统要求、多种安装方式对比、常见问题排查、Web/终端两种界面入门', url: 'https://apifox.com/apiskills/openclaw-installation-and-usage-guide/', source: 'Apifox', lang: 'zh', category: 'getting-started', featured: true, tags: ['图文', '新手友好'], }, { title: '小白零基础教程 — 安装 OpenClaw', desc: '零基础也能看懂,Telegram 连接详细步骤', url: 'https://www.cnblogs.com/gyc567/p/19561281', source: '博客园', lang: 'zh', category: 'getting-started', tags: ['零基础', 'Telegram'], }, { title: 'ClawdBot 火爆全网 — 手把手部署 + 钉钉操作', desc: '国内用户部署指南,包含踩坑经验和钉钉接入', url: 'https://www.53ai.com/news/OpenSourceLLM/2026012862704.html', source: '53AI', lang: 'zh', category: 'getting-started', tags: ['部署', '钉钉', '踩坑'], }, { title: '怎么用上一夜爆火的 Clawdbot — 详细配置教程', desc: '实测踩了三个大坑,分享避坑指南', url: 'https://news.qq.com/rain/a/20260127A05EEN00', source: '腾讯新闻', lang: 'zh', category: 'getting-started', tags: ['避坑', '实测'], }, { title: 'Openclaw 安装部署一文详解 + 国产平替方案', desc: '产品介绍、官网资源、本地/云端部署四维度全面解析', url: 'https://www.ai-indeed.com/article/15272.html', source: '实在智能', lang: 'zh', category: 'getting-started', tags: ['全面', '平替'], }, { title: 'Codecademy — OpenClaw Installation to First Chat', desc: 'Structured tutorial from installation to your first conversation', url: 'https://www.codecademy.com/article/open-claw-tutorial-installation-to-first-chat-setup', source: 'Codecademy', lang: 'en', category: 'getting-started', tags: ['Codecademy', '结构化'], }, { title: 'Full Tutorial: Set Up Your 24/7 AI Employee in 20 Minutes', desc: 'From zero to a running AI agent in 20 minutes flat', url: 'https://creatoreconomy.so/p/full-tutorial-set-up-your-247-ai-employee-clawd-molt', source: 'Creator Economy', lang: 'en', category: 'getting-started', tags: ['快速', '20分钟'], }, { title: 'How to Get OpenClaw Set Up in an Afternoon', desc: 'Practical guide from the AI Product Playbook newsletter', url: 'https://amankhan1.substack.com/p/how-to-get-clawdbotmoltbotopenclaw', source: 'Substack', lang: 'en', category: 'getting-started', tags: ['实用'], }, // ============ Channel Integration (平台接入) ============ { title: '保姆级飞书对接教程 — 手把手搭建 AI 助手', desc: 'Linux 下安装 OpenClaw 并对接飞书机器人,打造专属智能助理', url: 'https://www.cnblogs.com/catchadmin/p/19556552', source: '博客园', lang: 'zh', category: 'channel-integration', featured: true, tags: ['飞书', '保姆级'], }, { title: '飞书对接教程 — CSDN 版', desc: '详细的 OpenClaw 飞书机器人配置指南', url: 'https://blog.csdn.net/qq_31470439/article/details/157578441', source: 'CSDN', lang: 'zh', category: 'channel-integration', tags: ['飞书', 'CSDN'], }, { title: 'MiniMax — Build AI Assistant on Telegram', desc: 'Connect MiniMax M2.1 to Telegram via OpenClaw', url: 'https://platform.minimax.io/docs/solutions/moltbot', source: 'MiniMax', lang: 'en', category: 'channel-integration', tags: ['Telegram', 'MiniMax'], }, // ============ Skill Development ============ { title: 'ClawHub 技能开发文档', desc: '如何创建、发布和管理自定义技能', url: 'https://docs.openclaw.ai/tools/clawhub', source: 'OpenClaw Docs', lang: 'en', category: 'skill-dev', featured: true, tags: ['技能', '开发'], }, { title: 'OpenClaw Skills 在 Claude Code 中使用', desc: 'Reddit 社区分享:在 Claude Code 中运行 OpenClaw 的提示词和技能', url: 'https://www.reddit.com/r/ClaudeAI/comments/1qs49hw/', source: 'Reddit', lang: 'en', category: 'skill-dev', tags: ['Claude Code', 'Reddit'], }, { title: 'ClawHub Skill Directory 源码', desc: 'ClawHub 的 GitHub 仓库,了解技能目录结构', url: 'https://github.com/openclaw/clawhub', source: 'GitHub', lang: 'en', category: 'skill-dev', tags: ['源码', '参考'], }, // ============ Video Tutorials ============ { title: 'OpenClaw 海量全玩法攻略 — 国内网络使用 + 本地部署', desc: 'B站详细视频教程,涵盖所有主要功能和配置', url: 'https://www.bilibili.com/video/BV1kH6nBFEPq/', source: 'Bilibili', lang: 'zh', category: 'video', featured: true, tags: ['B站', '全面'], }, // ============ Deep Dive Articles ============ { title: 'IBM Think — OpenClaw: The Viral "Space Lobster" Agent', desc: 'IBM 深度分析 OpenClaw 的架构创新和垂直集成策略', url: 'https://www.ibm.com/think/news/clawdbot-ai-agent-testing-limits-vertical-integration', source: 'IBM', lang: 'en', category: 'deep-dive', featured: true, tags: ['IBM', '深度分析'], }, { title: 'DigitalOcean — What is OpenClaw?', desc: '全面介绍 OpenClaw 的功能、架构和使用场景', url: 'https://www.digitalocean.com/resources/articles/what-is-openclaw', source: 'DigitalOcean', lang: 'en', category: 'deep-dive', tags: ['概览', '入门'], }, { title: 'Reddit — The Ultimate Guide to OpenClaw', desc: '从功能到安全风险的全面指南,不回避争议话题', url: 'https://www.reddit.com/r/ThinkingDeeplyAI/comments/1qsoq4h/', source: 'Reddit', lang: 'en', category: 'deep-dive', tags: ['Reddit', '全面', '安全'], }, { title: 'NxCode — OpenClaw Complete Guide 2026', desc: 'Clawdbot → Moltbot → OpenClaw 完整演进指南', url: 'https://www.nxcode.io/resources/news/openclaw-complete-guide-2026', source: 'NxCode', lang: 'en', category: 'deep-dive', tags: ['历史', '完整'], }, // ============ Tools & Plugins ============ { title: 'ClawdBot 一键部署工具', desc: 'Mac/Linux 一键安装脚本,自动化环境配置', url: 'https://github.com/miaoxworld/ClawdBotInstaller', source: 'GitHub', lang: 'zh', category: 'tools', tags: ['一键', '脚本'], }, { title: 'Clawdbot 中文文档', desc: '社区翻译的中文 README 和使用指南', url: 'https://github.com/bbylw/clawdbot-cn', source: 'GitHub', lang: 'zh', category: 'tools', tags: ['中文', '文档'], }, // ============ New — Week of 2026-02-03 ============ // -- Cloud Deploy -- { title: '阿里云开发者社区 — 2026年 OpenClaw 部署教程及常见问题解答', desc: '百炼模型配置、通义千问接入,含高频问题 FAQ 和完整 JSON 示例', url: 'https://developer.aliyun.com/article/1709761', source: '阿里云开发者社区', lang: 'zh', category: 'cloud-deploy', tags: ['阿里云', '百炼', '通义千问', 'FAQ'], }, // -- Getting Started -- { title: 'DataCamp — OpenClaw Tutorial: Control Your PC from WhatsApp', desc: 'WhatsApp 远程控制电脑实操教程,涵盖 Skill 开发与 AgentSkills 标准', url: 'https://www.datacamp.com/tutorial/moltbot-clawdbot-tutorial', source: 'DataCamp', lang: 'en', category: 'getting-started', featured: true, tags: ['DataCamp', 'WhatsApp', 'Skill'], }, { title: 'OpenClaw + Ollama 本地 AI Agent 搭建指南', desc: '全面的 Ollama 本地模型 + OpenClaw 集成指南,含模型选型对比和性能基准', url: 'https://codersera.com/blog/openclaw-ollama-setup-guide-run-local-ai-agents-2026', source: 'CoderSera', lang: 'en', category: 'getting-started', tags: ['Ollama', '本地模型', '性能对比'], }, { title: '掘金 — OpenClaw 安装教程:从 0 搭建本地 AI 助手完整记录', desc: '掘金社区原创,从零到跑通的详实记录,含架构理解和踩坑笔记', url: 'https://juejin.cn/post/7600752623068102666', source: '掘金', lang: 'zh', category: 'getting-started', tags: ['掘金', '实战记录', '本地部署'], }, { title: '至顶AI — OpenClaw 完整部署指南(全网最详细版)', desc: '从环境准备到飞书插件配置、十大经典应用场景推荐,亲测有效', url: 'https://news.qq.com/rain/a/20260202A04NT600', source: '腾讯新闻', lang: 'zh', category: 'getting-started', tags: ['至顶AI', '全面', '飞书插件'], }, { title: 'CSDN — OpenClaw 史上最全保姆级安装配置教程', desc: '多平台接入、Docker 沙箱安全配置、Ollama 本地模型对接', url: 'https://blog.csdn.net/liwang0113/article/details/157579187', source: 'CSDN', lang: 'zh', category: 'getting-started', tags: ['CSDN', '保姆级', '安全配置'], }, // -- Deep Dive -- { title: 'DEV Community — Unleashing OpenClaw: Ultimate Guide for Developers', desc: '开发者视角深度解析:Gateway 架构、Brain 模型层、自定义 Skill 编写', url: 'https://dev.to/mechcloud_academy/unleashing-openclaw-the-ultimate-guide-to-local-ai-agents-for-developers-in-2026-3k0h', source: 'DEV Community', lang: 'en', category: 'deep-dive', featured: true, tags: ['DEV', '架构', 'Skill开发'], }, { title: 'The Hacker News — 341 个恶意 ClawHub 技能窃取用户数据', desc: 'Koi Security 审计发现 ClawHavoc 供应链攻击,OpenClaw 用户必读安全警示', url: 'https://thehackernews.com/2026/02/researchers-find-341-malicious-clawhub.html', source: 'The Hacker News', lang: 'en', category: 'deep-dive', featured: true, tags: ['安全', 'ClawHub', '供应链攻击'], }, { title: 'CNBC — From Clawdbot to OpenClaw: The AI Agent Generating Buzz and Fear', desc: 'CNBC 深度报道 OpenClaw 的崛起、259k+ GitHub Stars 背后的争议与风险', url: 'https://www.cnbc.com/2026/02/02/openclaw-open-source-ai-agent-rise-controversy-clawdbot-moltbot-moltbook.html', source: 'CNBC', lang: 'en', category: 'deep-dive', tags: ['CNBC', '媒体', '争议'], }, { title: 'Medium — Stop Watching Install Tutorials, This Is How You Actually Tame It', desc: '跳过安装,直接讲如何驾驭 OpenClaw:工作流设计、提示词策略和安全边界', url: 'https://medium.com/activated-thinker/stop-watching-openclaw-install-tutorials-this-is-how-you-actually-tame-it-f3416f5d80bc', source: 'Medium', lang: 'en', category: 'deep-dive', tags: ['Medium', '进阶', '工作流'], }, // -- Skill Dev -- { title: 'Apiyi — OpenClaw 扩展生态全解析:50+ 官方集成', desc: '700+ Skills 库、12 大平台集成总览,ClawHub 技能商店使用指南', url: 'https://help.apiyi.com/en/openclaw-extensions-ecosystem-guide-en.html', source: 'Apiyi', lang: 'en', category: 'skill-dev', tags: ['生态', '集成', 'ClawHub'], }, // -- Video -- { title: 'YouTube — OpenClaw Tutorial For Beginners (2026)', desc: '英文入门视频教程,从安装到主要功能和自动化任务演示', url: 'https://www.youtube.com/watch?v=Gc4fyY0_8Rc', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', '入门', '英文'], }, { title: 'B站 — OpenClaw 是什么?Skills/MCP/RAG/Memory/AI Agent 全解析', desc: '架构科普视频:拆解 OpenClaw 与技能系统、MCP 协议、RAG、记忆系统的关系', url: 'https://www.bilibili.com/video/BV1Bm6bB5EJ3/', source: 'Bilibili', lang: 'zh', category: 'video', tags: ['B站', '架构', 'MCP', 'RAG'], }, { title: 'B站 — Clawdbot 为什么能记住你说过的话?AI 记忆系统拆解', desc: '深入分析 OpenClaw 的记忆机制:日记文件、长期记忆、上下文窗口管理', url: 'https://www.bilibili.com/video/BV1fv61B4EQ5/', source: 'Bilibili', lang: 'zh', category: 'video', tags: ['B站', '记忆系统', '深度'], }, { title: 'B站 — OpenClaw 爆火 AI 自动化神器!本地部署教程 | 零度解说', desc: '零度解说出品,本地部署 + 聊天软件对接全流程演示', url: 'https://www.bilibili.com/video/BV1vz6nBmEA3/', source: 'Bilibili', lang: 'zh', category: 'video', tags: ['B站', '零度解说', '部署'], }, // ============ Major Media Coverage (2026-02) ============ { title: 'Scientific American — OpenClaw is an open-source AI agent that runs your computer', desc: 'This open-source agent installs software, makes calls and runs your digital life—redefining what "digital assistants" are supposed to do', url: 'https://www.scientificamerican.com/article/moltbot-is-an-open-source-ai-agent-that-runs-your-computer/', source: 'Scientific American', lang: 'en', category: 'deep-dive', featured: true, tags: ['科普', '主流媒体', '深度'], }, { title: 'Cisco Blogs — Personal AI Agents like OpenClaw Are a Security Nightmare', desc: 'Security analysis of open-source personal AI agents: risks, attack vectors, and enterprise implications', url: 'https://blogs.cisco.com/ai/personal-ai-agents-like-openclaw-are-a-security-nightmare', source: 'Cisco', lang: 'en', category: 'deep-dive', featured: true, tags: ['安全', '企业', '风险分析'], }, { title: 'TechCrunch — OpenClaw\'s AI assistants are now building their own social network', desc: 'The viral personal AI assistant has a new shell — again. Coverage of the Clawdbot → Moltbot → OpenClaw evolution', url: 'https://techcrunch.com/2026/01/30/openclaws-ai-assistants-are-now-building-their-own-social-network/', source: 'TechCrunch', lang: 'en', category: 'deep-dive', tags: ['TechCrunch', 'AI社交', '品牌演变'], }, { title: 'CNET — From Clawdbot to Moltbot to OpenClaw: The Wild Ride', desc: 'How OpenClaw routes messages to AI servers and the LLM selection flexibility (Claude, ChatGPT, Gemini)', url: 'https://www.cnet.com/tech/services-and-software/from-clawdbot-to-moltbot-to-openclaw/', source: 'CNET', lang: 'en', category: 'deep-dive', tags: ['CNET', '架构', 'LLM选择'], }, { title: 'The Verge — OpenClaw: all the news about the trending AI agent', desc: 'Comprehensive news hub tracking the AI agent that "actually does things" — reminders, forms, flight check-ins, and more', url: 'https://www.theverge.com/news/872091/openclaw-moltbot-clawdbot-ai-agent-news', source: 'The Verge', lang: 'en', category: 'official', featured: true, tags: ['新闻聚合', '权威', 'The Verge'], }, { title: 'The Guardian — Viral AI personal assistant seen as step change', desc: 'OpenClaw runs as a layer atop LLMs and can operate autonomously depending on permissions granted', url: 'https://www.theguardian.com/technology/2026/feb/02/openclaw-viral-ai-agent-personal-assistant-artificial-intelligence', source: 'The Guardian', lang: 'en', category: 'deep-dive', tags: ['The Guardian', '英国媒体', '分析'], }, // ============ New — Week of 2026-02-04 ============ // -- Cloud Deploy -- { title: 'AWS 中国博客 — 基于 Mac 实例部署 OpenClaw', desc: '亚马逊云科技 Mac 实例部署指南,深度苹果生态自动化的最佳选择', url: 'https://aws.amazon.com/cn/blogs/china/openclaw-deployment-aws-mac/', source: 'AWS', lang: 'zh', category: 'cloud-deploy', featured: true, tags: ['AWS', 'Mac', '苹果生态'], }, // -- Getting Started -- { title: '菜鸟教程 — OpenClaw (Clawdbot) 完整教程', desc: '从 git clone 到 pnpm build,含 onboard 和 gateway:watch 开发模式', url: 'https://www.runoob.com/ai-agent/openclaw-clawdbot-tutorial.html', source: '菜鸟教程', lang: 'zh', category: 'getting-started', featured: true, tags: ['菜鸟教程', '源码编译', '开发模式'], }, { title: '痴者工良 — 手把手教你部署 OpenClaw', desc: '博客园原创,openclaw configure 配置飞书全流程', url: 'https://www.cnblogs.com/whuanle/p/19558535', source: '博客园', lang: 'zh', category: 'getting-started', tags: ['博客园', '飞书', '配置向导'], }, { title: 'DAMO 开发者矩阵 — Mac mini 接入国产大模型与飞书', desc: '命令行安装 + DeepSeek 配置 + 飞书插件全流程', url: 'https://damodev.csdn.net/697dff7b7c1d88441d90f0e4.html', source: 'CSDN DAMO', lang: 'zh', category: 'getting-started', tags: ['Mac mini', 'DeepSeek', '飞书插件'], }, { title: 'Adven Boost — OpenClaw: 10 Steps to Set Up Your Personal AI Agent', desc: 'Structured 10-step playbook from installation to optimization', url: 'https://advenboost.com/en/openclaw-setup-10-steps-guide/', source: 'Adven Boost', lang: 'en', category: 'getting-started', tags: ['10步', '结构化', 'ROI分析'], }, // -- Deep Dive -- { title: '知乎 — 一文读懂 OpenClaw 分析与教程', desc: '完整目录结构解析:AGENTS.md / SOUL.md / MEMORY.md / Skills 全拆解', url: 'https://zhuanlan.zhihu.com/p/2000850539936765122', source: '知乎', lang: 'zh', category: 'deep-dive', featured: true, tags: ['知乎', '架构', '目录结构'], }, { title: 'Turing College — The AI Assistant That Actually Does Things', desc: '深度解析 OpenClaw 三大核心能力:电脑控制、持久记忆、心跳机制', url: 'https://www.turingcollege.com/blog/openclaw', source: 'Turing College', lang: 'en', category: 'deep-dive', featured: true, tags: ['深度', '心跳机制', '记忆系统'], }, // ============ Our Own ============ { title: 'OpenClaw 7天入门指南 — 飞书知识库', desc: '从认识到进阶,每天一个主题的系统化学习路径', url: 'https://my.feishu.cn/wiki/YkWgwqSchi9xW3kEuZscAm0lnFf', source: 'OpenClaw 101', lang: 'zh', category: 'getting-started', featured: true, tags: ['7天', '系统化', '飞书'], }, // ============ New — Week of 2026-02-05 ============ // -- Tools (Chinese Localization) -- { title: 'OpenClaw 汉化版 — CLI + Dashboard 全中文', desc: '每小时自动同步官方仓库,含完整中文 README、全流程搭建教程和排错指南', url: 'https://github.com/1186258278/OpenClawChineseTranslation', source: 'GitHub', lang: 'zh', category: 'tools', featured: true, tags: ['汉化', '中文', '同步'], }, // -- Getting Started (Chinese) -- { title: '搬主题 — 一键安装部署超详细图文教程', desc: '含钉钉/飞书/微信/Web 四种集成方法,国内用户首选参考', url: 'https://www.banzhuti.com/openclaw-moltbot-clawdbot-tutorial.html', source: '搬主题', lang: 'zh', category: 'getting-started', featured: true, tags: ['钉钉', '飞书', '微信', 'Web'], }, // -- Deep Dive (Chinese - Official Feishu) -- { title: '飞书官方 — 一文完全搞懂 Clawd Bot 附飞书对接指南', desc: '来自飞书安全团队,Gateway-Node 架构深度解析、Canvas 画布、部署方案与成本分析', url: 'https://www.feishu.cn/content/article/7602519239445974205', source: '飞书官网', lang: 'zh', category: 'deep-dive', featured: true, tags: ['飞书官方', '架构', '安全'], }, // -- Getting Started (English) -- { title: 'PromptLayer — How to Install OpenClaw: Step-by-Step Guide', desc: 'From the agentic AI tracking team, covers installation, configuration, and first chat', url: 'https://blog.promptlayer.com/how-to-install-openclaw-step-by-step-guide-formerly-clawdbot-moltbot/', source: 'PromptLayer', lang: 'en', category: 'getting-started', tags: ['PromptLayer', 'Agent追踪', '最新'], }, { title: 'Medium — What is OpenClaw: Open-Source AI Agent in 2026', desc: 'Covers Home Assistant integration, agent social networks, and privacy-first local deployment', url: 'https://medium.com/@gemQueenx/what-is-openclaw-open-source-ai-agent-in-2026-setup-features-8e020db20e5e', source: 'Medium', lang: 'en', category: 'getting-started', tags: ['Medium', 'Home Assistant', '隐私'], }, // -- Getting Started -- { title: 'AIML API — OpenClaw Tutorial: Installation to First Chat Setup', desc: 'Step-by-step guide: installation, model setup, Telegram connection, skills, web search, and safety tips', url: 'https://aimlapi.com/blog/openclaw-tutorial-installation-to-first-chat-setup', source: 'AIML API', lang: 'en', category: 'getting-started', tags: ['Telegram', 'Skills', '安全'], }, { title: 'BoostedHost — How to Install OpenClaw (For Beginner)', desc: 'Plain language guide explaining gateways, tokens, VPS setup, and common errors from zero', url: 'https://boostedhost.com/blog/en/how-to-install-openclaw-get-started-guide/', source: 'BoostedHost', lang: 'en', category: 'getting-started', tags: ['新手友好', 'VPS', '排错'], }, // -- Deep Dive -- { title: 'AIML API — OpenClaw Tutorial: Real Automation Use (Step by Step)', desc: 'Practical guide on connecting email, files, websites, and APIs for real task execution on VPS', url: 'https://aimlapi.com/blog/openclaw-full-tutorial-installation-setup-real-automation-use-step-by-step', source: 'AIML API', lang: 'en', category: 'deep-dive', tags: ['自动化', 'API集成', 'VPS'], }, // -- Video -- { title: 'YouTube — Full OpenClaw Setup Tutorial: Step-by-Step Walkthrough', desc: 'Complete video walkthrough for installing and configuring OpenClaw AI assistant', url: 'https://www.youtube.com/watch?v=fcZMmP5dsl4', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['YouTube', '完整教程', '最新'], }, { title: 'YouTube — OpenClaw Tutorial: How to Run a Local AI Agent (2026)', desc: 'Self-hosted, local-first AI assistant setup guide with practical demonstrations', url: 'https://www.youtube.com/watch?v=StKBpXSf08E', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', '本地部署', '2026'], }, // ============ New — Week of 2026-02-08 ============ // -- Getting Started (Major) -- { title: 'freeCodeCamp — OpenClaw Full Tutorial for Beginners', desc: '从被动聊天到主动 Agent 的转变,freeCodeCamp 出品的全面入门教程', url: 'https://www.freecodecamp.org/news/openclaw-full-tutorial-for-beginners/', source: 'freeCodeCamp', lang: 'en', category: 'getting-started', featured: true, tags: ['freeCodeCamp', '入门', '权威'], }, { title: 'AI Free API — OpenClaw 安装与集成完全指南 2026', desc: '一条命令安装 + onboard 向导 + WhatsApp/Telegram/Discord/Browser Relay 全平台集成', url: 'https://www.aifreeapi.com/en/posts/openclaw-installation-guide', source: 'AI Free API', lang: 'en', category: 'getting-started', tags: ['多平台', 'Browser Relay', '排错'], }, { title: 'Marc0.dev — OpenClaw Mac Mini M4 Pro 完全指南', desc: 'M4 Pro 64GB Mac Mini 零云端部署,本地 Ollama 集成实测', url: 'https://www.marc0.dev/en/blog/openclaw-mac-mini-the-complete-guide-to-running-your-own-ai-agent-in-2026-1770057455419', source: 'Marc0.dev', lang: 'en', category: 'getting-started', tags: ['Mac Mini', 'M4 Pro', '本地部署', 'Ollama'], }, // -- Cloud Deploy -- { title: 'AMD Developer Cloud — OpenClaw + vLLM 免费运行指南', desc: '使用 MI300X 192GB 企业级 GPU 免费运行本地大模型,连接 OpenClaw', url: 'https://www.amd.com/en/developer/resources/technical-articles/2026/openclaw-with-vllm-running-for-free-on-amd-developer-cloud-.html', source: 'AMD', lang: 'en', category: 'cloud-deploy', featured: true, tags: ['AMD', 'vLLM', '免费GPU', 'MI300X'], }, // -- Deep Dive -- { title: 'Clawctl Blog — OpenClaw + 本地 LLM 完全指南', desc: '零 API 费用,Ollama/vLLM/LM Studio 三种本地方案全覆盖', url: 'https://clawctl.com/blog/openclaw-local-llm-complete-guide', source: 'Clawctl', lang: 'en', category: 'deep-dive', featured: true, tags: ['本地LLM', 'Ollama', 'vLLM', 'LM Studio'], }, { title: 'ZDNet — From Clawdbot to OpenClaw: Nightmare Fuel for Security Pros', desc: '34 个安全相关 commit,一键 RCE 修复,安全加固进展深度报道', url: 'https://www.zdnet.com/article/clawdbot-moltbot-openclaw-security-nightmare/', source: 'ZDNet', lang: 'en', category: 'deep-dive', featured: true, tags: ['ZDNet', '安全', 'RCE修复'], }, { title: 'CyberSecurity News — OpenClaw v2026.2.6 发布:Safety Scanner + Opus 4.6', desc: '新版本支持 Opus 4.6/GPT-5.3-Codex,内置代码安全扫描器', url: 'https://cybersecuritynews.com/openclaw-v2026-2-6-released/', source: 'CyberSecurity News', lang: 'en', category: 'deep-dive', tags: ['版本更新', '安全扫描', 'v2026.2.6'], }, { title: 'Yahoo Finance — OpenClaw: What Is Clawdbot and Why It\'s Taking Over', desc: 'WhatsApp 集成吸引非技术用户,从聊天到执行真实任务的范式转变', url: 'https://finance.yahoo.com/news/openclaw-clawdbot-why-taking-over-130000159.html', source: 'Yahoo Finance', lang: 'en', category: 'deep-dive', tags: ['Yahoo', '主流媒体', 'WhatsApp'], }, { title: 'Medium — From Moltbot to OpenClaw: Multi-Agent AI with Qwen3 and Matrix', desc: '私有多 Agent 架构:vLLM + Qwen3 + Matrix 协议,跨平台统一会话', url: 'https://medium.com/@dorangao/from-moltbot-to-openclaw-upgrading-your-private-multi-agent-ai-with-qwen3-and-matrix-91a814833ae5', source: 'Medium', lang: 'en', category: 'deep-dive', tags: ['Multi-Agent', 'Qwen3', 'Matrix', 'vLLM'], }, // -- Video -- { title: 'YouTube — OpenClaw Tutorial for Beginners: Full VPS + Docker Setup', desc: 'VPS Docker 部署全流程视频,从零到运行', url: 'https://www.youtube.com/watch?v=Zo7Putdga_4', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', 'VPS', 'Docker', '最新'], }, { title: 'B站 — 超详细的最强AI部署教程,小白友好', desc: '2026 年最新版部署教程,面向零基础用户的保姆级讲解', url: 'https://www.bilibili.com/video/BV1fMfZBuEMj/', source: 'Bilibili', lang: 'zh', category: 'video', featured: true, tags: ['B站', '小白友好', '最新'], }, // ============ New — Week of 2026-02-07 ============ // -- Getting Started (English) -- { title: 'Medium — How to Install & Secure Your Personal AI Bot', desc: 'Security-focused setup guide: installation plus hardening to prevent strangers accessing your machine', url: 'https://medium.com/@proflead/openclaw-tutorial-how-to-install-secure-your-personal-ai-bot-0dde8dc71624', source: 'Medium', lang: 'en', category: 'getting-started', tags: ['Medium', '安全', '加固'], }, { title: 'Habr — Don\'t Launch Your Bot Before Reading This', desc: 'Russian tech community\'s security-first setup guide, covers securing OpenClaw before exposing it', url: 'https://habr.com/en/articles/992720/', source: 'Habr', lang: 'en', category: 'getting-started', tags: ['Habr', '安全', '俄罗斯社区'], }, { title: 'Contabo — What is OpenClaw: Self-Hosted AI Agent Guide', desc: 'VPS hosting provider guide: OpenClaw vs n8n comparison, setup tips for self-hosted deployment', url: 'https://contabo.com/blog/what-is-openclaw-self-hosted-ai-agent-guide/', source: 'Contabo', lang: 'en', category: 'getting-started', tags: ['Contabo', 'VPS', 'n8n对比'], }, { title: 'Hostinger — How to Install OpenClaw on Hostinger VPS', desc: 'One-click Docker template deployment on Hostinger VPS, official help center guide', url: 'https://www.hostinger.com/support/how-to-install-openclaw-on-hostinger-vps/', source: 'Hostinger', lang: 'en', category: 'getting-started', tags: ['Hostinger', 'Docker', '一键部署'], }, // -- Getting Started (Chinese) -- { title: '阿里云 — 2026年 OpenClaw 极速部署教程(更新版)', desc: '预置镜像一键部署全流程、多渠道集成方法、高频问题解决方案,适配最新版本', url: 'https://developer.aliyun.com/article/1710373', source: '阿里云开发者社区', lang: 'zh', category: 'cloud-deploy', tags: ['阿里云', '一键部署', '最新版'], }, { title: '阿里云 — OpenClaw 一键秒级部署全攻略指南', desc: '轻量应用服务器专属页面直接部署,含实例配置和服务协议说明', url: 'https://developer.aliyun.com/article/1710471', source: '阿里云开发者社区', lang: 'zh', category: 'cloud-deploy', tags: ['阿里云', '秒级部署', '轻量服务器'], }, { title: '阿里云 — OpenClaw 部署保姆级教程:接入微信/飞书/钉钉/QQ', desc: '四大通讯平台全覆盖,App Key/Token 获取全流程详解', url: 'https://developer.aliyun.com/article/1710679', source: '阿里云开发者社区', lang: 'zh', category: 'cloud-deploy', tags: ['阿里云', '微信', '飞书', '钉钉', 'QQ'], }, // -- Deep Dive (Security) -- { title: 'Adversa AI — OpenClaw Security 101: CVEs, Moltbook Breach & Hardening', desc: 'Comprehensive security analysis: known CVEs, supply chain risks, and hardening recommendations', url: 'https://adversa.ai/blog/openclaw-security-101-vulnerabilities-hardening-2026/', source: 'Adversa AI', lang: 'en', category: 'deep-dive', featured: true, tags: ['安全', 'CVE', '加固指南'], }, { title: 'Snyk — From SKILL.md to Shell Access in Three Lines of Markdown', desc: 'Snyk threat modeling of agent skills: how malicious SKILL.md files can gain shell access', url: 'https://snyk.io/articles/skill-md-shell-access/', source: 'Snyk', lang: 'en', category: 'deep-dive', featured: true, tags: ['Snyk', '安全', '供应链', '威胁建模'], }, { title: 'Snyk — ToxicSkills: 1467 Malicious Payloads in ClawHub Study', desc: '36% of skills contain prompt injection, comprehensive supply chain compromise analysis', url: 'https://snyk.io/blog/toxicskills-malicious-ai-agent-skills-clawhub/', source: 'Snyk', lang: 'en', category: 'deep-dive', tags: ['Snyk', '安全研究', '恶意Skill'], }, { title: 'AuthMind — OpenClaw\'s 230 Malicious Skills: Agentic AI Supply Chains', desc: 'Identity security perspective on agent supply chain threats and credential exposure risks', url: 'https://www.authmind.com/post/openclaw-malicious-skills-agentic-ai-supply-chain', source: 'AuthMind', lang: 'en', category: 'deep-dive', tags: ['身份安全', '供应链', '凭证风险'], }, // -- Deep Dive (Reviews & Analysis) -- { title: 'Substack — Is OpenClaw Worth the Hype? I Spent 10 Days Finding Out', desc: 'Honest 10-day review with real cost analysis, VPS setup guide, and practical verdict', url: 'https://aimaker.substack.com/p/openclaw-review-setup-guide', source: 'Substack', lang: 'en', category: 'deep-dive', tags: ['评测', '成本分析', '10天实测'], }, { title: 'Bright Data — Build a WhatsApp AI Assistant with OpenClaw', desc: 'Integration guide: OpenClaw + Bright Data for web scraping enabled WhatsApp assistant', url: 'https://brightdata.com/blog/ai/openclaw-with-bright-data', source: 'Bright Data', lang: 'en', category: 'channel-integration', tags: ['WhatsApp', 'Web Scraping', 'Bright Data'], }, // -- Video (New) -- { title: 'YouTube — OpenClaw Full Tutorial for Beginners (Comprehensive Course)', desc: 'Comprehensive beginner course covering installation, configuration, and automation tasks', url: 'https://www.youtube.com/watch?v=n1sfrc-RjyM', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['YouTube', '完整课程', '入门'], }, { title: 'YouTube — OpenClaw Skills Tutorial: Build Local AI Agent Skills + MoltBook', desc: 'Step-by-step skill development with Ollama and MoltBook integration', url: 'https://www.youtube.com/watch?v=CENnPXxVUAc', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', 'Skill开发', 'Ollama', 'MoltBook'], }, { title: 'YouTube — How to Set Up OpenClaw on a Budget VPS (Hetzner)', desc: 'Budget-friendly setup: fresh Ubuntu Hetzner VPS with firewall rules and full walkthrough', url: 'https://www.youtube.com/watch?v=j9Xp5_VNYc8', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', 'Hetzner', '低成本', 'VPS'], }, { title: 'B站 — 本地部署接入微信/飞书/钉钉/QQ 10分钟保姆级教程', desc: '10分钟手把手教会,附完整操作文档,四大平台全覆盖', url: 'https://www.bilibili.com/video/BV1MfFAz6EnR/', source: 'Bilibili', lang: 'zh', category: 'video', featured: true, tags: ['B站', '微信', '飞书', '钉钉', 'QQ'], }, { title: 'B站 — 实测 Clawdbot 彻底改变工作方式!WhatsApp 远程控制电脑', desc: '一条命令部署,自动编程开发,自我进化+无限记忆实测演示', url: 'https://www.bilibili.com/video/BV14z6GB1EAr/', source: 'Bilibili', lang: 'zh', category: 'video', tags: ['B站', 'WhatsApp', '远程控制', '自动化'], }, // -- Skill Dev -- { title: 'Substack — Cheapest + Most Secure OpenClaw Setup (Hetzner)', desc: 'Cost-optimized and security-hardened setup guide on cheap Hetzner VPS, 24/7 operation', url: 'https://www.learnwithmeai.com/p/clawdbotopenclaw-cheapest-most-secure', source: 'Substack', lang: 'en', category: 'getting-started', tags: ['Hetzner', '低成本', '安全加固', '24/7'], }, { title: 'Creator Economy — Master OpenClaw in 30 Minutes', desc: '5 real use cases: calendar, documents, personalized briefings, and memory management', url: 'https://creatoreconomy.so/p/master-openclaw-in-30-minutes-full-tutorial', source: 'Creator Economy', lang: 'en', category: 'getting-started', tags: ['30分钟', '实用场景', '付费'], }, // -- Cloud Deploy -- { title: '阿里云 — OpenClaw 常见问题文档', desc: '官方 FAQ:版本更新(2026.2.3)、镜像升级、常见错误排查', url: 'https://help.aliyun.com/zh/simple-application-server/use-cases/openclaw-faq', source: '阿里云', lang: 'zh', category: 'cloud-deploy', tags: ['阿里云', 'FAQ', '排错', '版本更新'], }, // ============ New — Week of 2026-02-09 ============ // -- Official / Tools -- { title: 'Awesome OpenClaw Skills — 社区精选技能合集', desc: 'VoltAgent 维护的 OpenClaw Skills 精选列表,分类清晰,持续更新', url: 'https://github.com/VoltAgent/awesome-openclaw-skills', source: 'GitHub', lang: 'en', category: 'tools', featured: true, tags: ['Awesome', '技能合集', '社区'], }, // -- Deep Dive (Security - Major) -- { title: 'The Hacker News — OpenClaw 集成 VirusTotal 扫描恶意 ClawHub 技能', desc: 'OpenClaw 与 Google VirusTotal 合作,对 ClawHub 所有上传技能进行自动安全扫描', url: 'https://thehackernews.com/2026/02/openclaw-integrates-virustotal-scanning.html', source: 'The Hacker News', lang: 'en', category: 'deep-dive', featured: true, tags: ['VirusTotal', '安全', 'ClawHub', '里程碑'], }, { title: 'CyberSecurity News — OpenClaw 与 VirusTotal 合作保障 AI Agent 市场安全', desc: 'ClawHub 技能市场安全升级:自动扫描、威胁情报、安全路线图', url: 'https://cybersecuritynews.com/openclaw-and-virustotal/', source: 'CyberSecurity News', lang: 'en', category: 'deep-dive', tags: ['VirusTotal', '安全', '市场安全'], }, { title: 'CrowdStrike — 安全团队需要了解的 OpenClaw AI 超级代理', desc: 'CrowdStrike 安全视角分析 OpenClaw 的风险面与防护建议,附 2/10 红队直播预告', url: 'https://www.crowdstrike.com/en-us/blog/what-security-teams-need-to-know-about-openclaw-ai-super-agent/', source: 'CrowdStrike', lang: 'en', category: 'deep-dive', featured: true, tags: ['CrowdStrike', '安全', '红队', '企业'], }, { title: 'eSecurity Planet — ClawHub 审计发现数百个恶意技能', desc: 'Koi Security 审计 2,857 个技能发现 341 个恶意条目,ClawHavoc 攻击详解', url: 'https://www.esecurityplanet.com/threats/hundreds-of-malicious-skills-found-in-openclaws-clawhub/', source: 'eSecurity Planet', lang: 'en', category: 'deep-dive', tags: ['安全审计', 'ClawHavoc', '供应链'], }, { title: 'Android Headlines — OpenClaw 解析:优势、风险与争议', desc: '全面评估 OpenClaw 的功能、ClawHub 生态问题和安全隐患', url: 'https://www.androidheadlines.com/2026/02/openclaw-explained-ai-agent-security-risks-moltbot-clawdbot-features.html', source: 'Android Headlines', lang: 'en', category: 'deep-dive', tags: ['评测', '安全', '争议'], }, // ============ New — Week of 2026-02-11 ============ // -- Getting Started -- { title: 'Robo Rhythms — OpenClaw 101 Beginner Friendly Guide', desc: 'From first install to advanced workflows, covers common pitfalls like context loss and memory issues', url: 'https://www.roborhythms.com/openclaw-beginner-friendly-guide/', source: 'Robo Rhythms', lang: 'en', category: 'getting-started', tags: ['入门', '踩坑', '进阶工作流'], }, // -- Video -- { title: 'YouTube — Master OpenClaw in 30 Minutes (Peter Yang)', desc: 'Calendar, documents, personalized briefings, voice reply, and memory management — 5 real use cases in 30 min', url: 'https://www.youtube.com/watch?v=ji_Sd4si7jo', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['YouTube', '30分钟', '实用场景', 'Peter Yang'], }, // -- Deep Dive (Security) -- { title: 'Snyk — Inside the clawdhub Malicious Campaign: Reverse Shells on OpenClaw', desc: '深入分析 ClawHub 恶意技能投放反向 Shell 的完整攻击链,含时间线和 IoC', url: 'https://snyk.io/articles/clawdhub-malicious-campaign-ai-agent-skills/', source: 'Snyk', lang: 'en', category: 'deep-dive', featured: true, tags: ['Snyk', '安全', '反向Shell', '攻击链'], }, // -- Tools -- { title: 'DeepWiki — OpenClaw 源码解析:Tools & Skills 架构', desc: 'AI 自动索引的 OpenClaw 源码 Wiki,深入解析工具和技能系统架构', url: 'https://deepwiki.com/openclaw/openclaw/6-tools-and-skills', source: 'DeepWiki', lang: 'en', category: 'tools', tags: ['源码', '架构', 'Wiki', '自动索引'], }, // ============ New — Week of 2026-02-12 ============ // -- Tools -- { title: 'Molt Founders — OpenClaw Mega Cheatsheet 2026', desc: '150+ CLI 命令速查、工作区文件、记忆系统、模型配置、多 Agent 设置全覆盖,附可打印 A4 PDF', url: 'https://moltfounders.com/openclaw-mega-cheatsheet', source: 'Molt Founders', lang: 'en', category: 'tools', featured: true, tags: ['速查表', 'CLI', 'PDF', '开发者'], }, // -- Deep Dive (Security / Academic) -- { title: 'Northeastern University — Why OpenClaw AI Assistant is a "Privacy Nightmare"', desc: '东北大学网络安全教授深度分析 OpenClaw 隐私风险,学术视角审视 Agent 权限与数据流向', url: 'https://news.northeastern.edu/2026/02/10/open-claw-ai-assistant/', source: 'Northeastern University', lang: 'en', category: 'deep-dive', featured: true, tags: ['学术', '隐私', '安全', '大学'], }, // -- Getting Started -- { title: 'Gadget Pilipinas — OpenClaw on MacBook Pro M5 虚拟环境部署', desc: 'M5 Mac 虚拟化部署指南,含 Zapier MCP 集成和 MCPorter 沙箱安全配置', url: 'https://www.gadgetpilipinas.net/2026/02/openclaw-on-macbook-pro-m5/', source: 'Gadget Pilipinas', lang: 'en', category: 'getting-started', tags: ['Mac', 'M5', 'Zapier', 'MCP', '虚拟化'], }, // ============ New — Week of 2026-02-13 ============ // -- Video -- { title: 'YouTube — Install OpenClaw in 30 Seconds & Start Building (Wes Roth)', desc: 'Local install and VPS full tutorial, from one-liner install to first automation', url: 'https://www.youtube.com/watch?v=ZcIqiLLT7Fg', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', 'Wes Roth', '快速安装', 'VPS'], }, // -- Deep Dive -- { title: 'Substack — OpenClaw/Moltbot/ClawdBot 101: The Complete Guide', desc: 'Markdown 配置文件全解析,从 SOUL.md 到 Skills 的系统化入门', url: 'https://sidsaladi.substack.com/p/openclawmoltbotclawdbot-101-the-complete', source: 'Substack', lang: 'en', category: 'deep-dive', tags: ['Substack', '配置文件', '系统化'], }, // -- Getting Started -- { title: 'Adven Boost — OpenClaw Setup: Zero to First Chat in 10 Minutes', desc: '2026 最新精简版部署指南,砍掉冗余步骤直奔 10 分钟跑通', url: 'https://advenboost.com/en/openclaw-setup-fast-tutorial/', source: 'Adven Boost', lang: 'en', category: 'getting-started', tags: ['10分钟', '精简', '2026'], }, { title: 'O-mega — OpenClaw: AI Agent Workforce 终极指南 2026', desc: '多 Agent 协作架构深度解析,从单体 AI 到 Agent 编排的趋势分析', url: 'https://o-mega.ai/articles/openclaw-creating-the-ai-agent-workforce-ultimate-guide-2026', source: 'O-mega', lang: 'en', category: 'deep-dive', tags: ['Multi-Agent', '编排', '趋势'], }, // ============ New — Week of 2026-02-15 ============ // -- Getting Started (Latest) -- { title: 'Zilliz — How to Install and Run OpenClaw on Mac', desc: '最新 macOS 部署指南:从 Node.js 安装到 onboard 向导全流程,含守护进程配置', url: 'https://medium.com/@zilliz_learn/how-to-install-and-run-openclaw-previously-clawdbot-moltbot-on-mac-9cb6adb64eef', source: 'Medium', lang: 'en', category: 'getting-started', featured: true, tags: ['Mac', '最新', 'Zilliz', '守护进程'], }, // ============ New — Week of 2026-02-18 ============ // -- Video -- { title: 'YouTube — Install OpenClaw in 10 Minutes (Feb 2026)', desc: 'VPS 快速部署教程,修复所有常见错误的完整指南', url: 'https://www.youtube.com/watch?v=khTA_AfJ01Y', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['YouTube', '10分钟', 'VPS', '最新'], }, { title: 'YouTube — How To Setup Clawdbot - Step by Step Guide to Openclaw on a VPS (2026)', desc: 'Linux VPS 上完整的 OpenClaw 部署指南,支持 Opus 4.6', url: 'https://www.youtube.com/watch?v=NjchJr1zmvk', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', 'VPS', 'Linux', 'Opus 4.6'], }, // -- Deep Dive -- { title: 'Skywork AI — Clawdbot (OpenClaw): 2026 Guide to AI Workflows & Risks', desc: '2026 年 OpenClaw 崛起分析,安全风险评估和最佳实践清单', url: 'https://skywork.ai/blog/ai-agent/clawdbot-openclaw-ai-workflows/', source: 'Skywork AI', lang: 'en', category: 'deep-dive', tags: ['风险评估', '最佳实践', 'Skywork'], }, { title: 'Skywork AI — OpenClaw (Clawdbot): Agent Communities Guide — 2026', desc: 'Agent 社区指南,温和的可视化引导教程和 DataCamp 推荐', url: 'https://skywork.ai/blog/ai-agent/openclaw-clawdbot-agent-communities/', source: 'Skywork AI', lang: 'en', category: 'deep-dive', tags: ['社区', '可视化教程', 'DataCamp'], }, { title: 'Substack — The Ultimate Guide to OpenClaw', desc: 'MidJourney 和 NanoBanana 视角的 OpenClaw 机器人自动化完整指南', url: 'https://corpwaters.substack.com/p/the-ultimate-guide-to-openclaw', source: 'Substack', lang: 'en', category: 'deep-dive', tags: ['自动化', 'MidJourney', 'NanoBanana'], }, { title: 'WIRED — I Loved My OpenClaw AI Agent—Until It Turned on Me', desc: '《连线》杂志深度报道:OpenClaw 的魅力与潜在风险', url: 'https://www.wired.com/story/malevolent-ai-agent-openclaw-clawdbot/', source: 'WIRED', lang: 'en', category: 'deep-dive', featured: true, tags: ['WIRED', '主流媒体', '风险'], }, // -- Getting Started -- { title: 'dougvos.com — Configuring OpenClaw', desc: '最新版本 2026.2.13 安装配置指南,解决安全问题和 100+ 小时研究精华', url: 'https://dougvos.com/configuring-openclaw/', source: 'dougvos.com', lang: 'en', category: 'getting-started', tags: ['配置', '安全', 'v2026.2.13'], }, { title: 'SitePoint — How to Set Up OpenClaw (formerly Clawdbot/Moltbot) on a Mac Mini', desc: 'Mac Mini 本地部署,连接消息平台,作为后台服务运行', url: 'https://www.sitepoint.com/how-to-set-up-openclaw-on-a-mac-mini/', source: 'SitePoint', lang: 'en', category: 'getting-started', tags: ['Mac Mini', 'SitePoint', '后台服务'], }, // -- Tools -- { title: 'Apidog — How to update OpenClaw (Moltbot/Clawdbot) to the latest version', desc: 'OpenClaw 版本升级完整指南,Docker/源码/systemd 三种部署方式的升级策略', url: 'https://apidog.com/blog/update-openclaw/', source: 'Apidog', lang: 'en', category: 'tools', tags: ['升级', 'Docker', 'systemd', '版本管理'], }, { title: 'DEV.to — OpenClaw Setup Guide: From Zero to AI Assistant in 10 Minutes', desc: 'Jetson/Mac Mini/Raspberry Pi/Linux 通用部署指南,面向硬件爱好者', url: 'https://dev.to/yankoaleksandrov/openclaw-setup-guide-from-zero-to-ai-assistant-in-10-minutes-1md', source: 'DEV Community', lang: 'en', category: 'getting-started', tags: ['硬件', 'Jetson', 'Raspberry Pi'], }, // -- Getting Started (Chinese - Latest) -- { title: 'CSDN — OpenClaw开源汉化发行版:介绍、下载、安装、配置教程', desc: '完全汉化版 OpenClaw 部署指南,含阿里云/腾讯云/天翼云一键部署方法', url: 'https://blog.csdn.net/qq_44866828/article/details/157876493', source: 'CSDN', lang: 'zh', category: 'getting-started', featured: true, tags: ['汉化', '阿里云', '腾讯云', '天翼云'], }, { title: '知乎 — 2026年OpenClaw(Clawdbot)新手部署并使用超详细教程', desc: '阿里云生态下的超详细部署教程,含私有化配置和高安全管控场景', url: 'https://zhuanlan.zhihu.com/p/2004189250392974456', source: '知乎', lang: 'zh', category: 'getting-started', tags: ['阿里云', '私有化', '安全'], }, { title: 'CSDN — 【保姆级教程】手把手教你安装OpenClaw并接入飞书', desc: 'Windows 系统保姆级教程,从零开始到飞书机器人完整配置流程', url: 'https://damodev.csdn.net/697deb97a16c6648a9866d36.html', source: 'CSDN', lang: 'zh', category: 'getting-started', tags: ['Windows', '飞书', '保姆级'], }, // -- Video (Latest) -- { title: 'YouTube — Install OpenClaw in 10 Minutes (Feb 2026) - VPS Setup', desc: 'VPS 部署 + 常见问题全解决,2026年2月最新版本适配', url: 'https://www.youtube.com/watch?v=khTA_AfJ01Y', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['YouTube', 'VPS', '常见问题', '最新'], }, { title: 'YouTube — Full OpenClaw Tutorial for Beginners', desc: '完整入门课程:从安装到配置再到自动化任务演示', url: 'https://www.youtube.com/watch?v=ZQOIlQg4CkA', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', '完整课程', '自动化'], }, { title: 'YouTube — Tutorial OpenClaw Lengkap 2026 (Indonesia)', desc: '印尼语教程:36K VPS 部署 + Telegram Bot + 自动黄金价格查询', url: 'https://www.youtube.com/watch?v=qgShz6HGZjI', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', '印尼语', 'Telegram', '实用案例'], }, // -- Deep Dive (Latest) -- { title: 'DEV.to — OpenClaw Guide Ch8: Monitoring and Debugging', desc: 'ELK Stack 日志分析、性能监控、调试技巧的完整指南', url: 'https://dev.to/linou518/openclaw-guide-ch8-monitoring-and-debugging-18f1', source: 'DEV Community', lang: 'en', category: 'deep-dive', featured: true, tags: ['监控', 'ELK', '调试', '运维'], }, { title: 'DEV.to — OpenClaw Guide Ch6: Multi-Agent Collaboration', desc: '多 Agent 协作架构深度指南,Agent 编排和任务分发策略', url: 'https://dev.to/linou518/openclaw-guide-ch6-multi-agent-collaboration-architecture-1hki', source: 'DEV Community', lang: 'en', category: 'deep-dive', tags: ['Multi-Agent', '协作', '编排'], }, // -- Tools -- { title: 'GitHub Gist — Running OpenClaw Without Burning Money', desc: '预算优化指南:配额管理、成本控制、理智部署的实战技巧', url: 'https://gist.github.com/digitalknk/ec360aab27ca47cb4106a183b2c25a98', source: 'GitHub', lang: 'en', category: 'tools', tags: ['成本优化', '配额管理', 'Gist'], }, // ============ Use Cases & Workflows (玩法与场景) ============ { title: '25+ Real OpenClaw Use Cases — From Morning Briefings to Business Automation', desc: '41 页免费 PDF,社区真实部署案例集:CEO 仪表盘、多 Agent 编排、视频制作流水线、智能家居控制', url: 'https://www.forwardfuture.ai/p/what-people-are-actually-doing-with-openclaw-25-use-cases', source: 'Forward Future', lang: 'en', category: 'use-cases', featured: true, tags: ['用例大全', '自动化', '多场景'], }, { title: 'OpenClaw Is Going Viral — #1 Use Case and 35 Ways to Automate Work and Life', desc: 'TechStartups 深度报道:最热门的 35 种自动化玩法,从晨间简报到 DevOps 流水线、浏览器自动化', url: 'https://techstartups.com/2026/02/12/openclaw-is-going-viral-the-1-use-case-and-35-ways-people-automate-work-and-life-with-it/', source: 'TechStartups', lang: 'en', category: 'use-cases', featured: true, tags: ['35种玩法', '自动化', '热门'], }, { title: 'Hostinger — 25 Ways to Automate Work and Life with OpenClaw', desc: '主机商视角的实用指南:晨间简报、日历管理、多邮箱管理、智能家居、开发自动化等 25 个场景', url: 'https://www.hostinger.com/tutorials/openclaw-use-cases', source: 'Hostinger', lang: 'en', category: 'use-cases', tags: ['25场景', '生活自动化', '实用'], }, { title: '5 OpenClaw Automations That Actually Make Money in 2026', desc: '赚钱导向的自动化方案:PR 自动审查、CI/CD 监控、Heartbeat 后台任务、主动式 AI 助手', url: 'https://markaicode.com/openclaw-money-making-automations-2026/', source: 'MarkAICode', lang: 'en', category: 'use-cases', tags: ['赚钱', 'DevOps', 'Heartbeat'], }, { title: 'Running 10 AI Agents to Automate My Life — A Practical Guide', desc: 'DEV.to 实战:8GB 内存跑 10 个 Agent,每天早上一句"Good morning"获取完整日报', url: 'https://dev.to/linou518/running-10-ai-agents-to-automate-my-life-a-practical-guide-with-openclaw-ki7', source: 'DEV.to', lang: 'en', category: 'use-cases', featured: true, tags: ['10 Agent', '多Agent', '日报'], }, { title: 'Supercharge OpenClaw — 8 Advanced Real-World Use Cases', desc: '进阶玩法:晨间简报 cron 配置、GitHub 自动化、Telegram 集成、多 Agent 编排实操', url: 'https://jangwook.net/en/blog/en/openclaw-advanced-usage/', source: 'JangWook', lang: 'en', category: 'use-cases', tags: ['进阶', 'Cron', '多Agent'], }, { title: 'OpenClaw Cron Jobs — Building Proactive AI Automation', desc: '从 Zapier 替代到晨间简报,深入 Cron 定时任务配置,让 AI 主动工作而非被动响应', url: 'https://zenvanriel.nl/ai-engineer-blog/openclaw-cron-jobs-proactive-ai-guide/', source: 'Zen van Riel', lang: 'en', category: 'use-cases', tags: ['Cron', '主动式', 'Zapier替代'], }, { title: 'How I Automated My Morning Routine with OpenClaw Cron Jobs', desc: '手把手教你配置晨间自动化:天气 + 日历 + 邮件一条消息搞定,附完整 cron 配置', url: 'https://openclawready.com/blog/openclaw-cron-jobs-daily-automation/', source: 'OpenClaw Ready', lang: 'en', category: 'use-cases', tags: ['晨间简报', 'Cron', '入门'], }, { title: 'OpenClaw for Creative & Design Agencies — 10 AI Workflows', desc: '创意团队玩法:项目收件自动化、修订跟踪、交付物协调,设计机构场景定制', url: 'https://www.serif.ai/openclaw/creative-design-agencies', source: 'Serif', lang: 'en', category: 'use-cases', tags: ['设计', '创意团队', '工作流'], }, { title: 'OpenClaw for Marketing Agencies — 10 AI-Powered Use Cases', desc: '营销团队玩法:广告监控、客户报告、创意工作流自动化', url: 'https://www.serif.ai/openclaw/marketing-agencies', source: 'Serif', lang: 'en', category: 'use-cases', tags: ['营销', '广告', '报告'], }, { title: 'Build Your AI Agent Army in 60 Minutes', desc: '60 分钟搭建多 Agent 团队:从单 Agent 到团队协作,含每日摘要 cron 配置', url: 'https://atalupadhyay.wordpress.com/2026/02/08/openclaw-build-your-ai-agent-army-in-60-minutes/', source: 'Atal Upadhyay', lang: 'en', category: 'use-cases', tags: ['60分钟', '多Agent', '团队'], }, { title: 'OpenClaw Use Cases: 15+ Powerful Workflows and Safety Guide', desc: '15+ 工作流 + 安全指南:路由分发、三方集成、权限管控的实战经验', url: 'https://quantumbyte.ai/articles/openclaw-use-cases', source: 'QuantumByte', lang: 'en', category: 'use-cases', tags: ['安全', '工作流', '权限'], }, { title: '12 Practical OpenClaw Use Cases (2026)', desc: '12 个实用场景:从代码 Q&A、文档生成到浏览器自动化,含本地模型(Ollama)方案', url: 'https://skywork.ai/blog/ai-agent/openclaw-use-cases/', source: 'Skywork', lang: 'en', category: 'use-cases', tags: ['12场景', 'Ollama', '本地模型'], }, { title: 'Proposal for a Multimodal Multi-Agent System Using OpenClaw', desc: '多模态多 Agent 架构提案:对比 Auto-GPT/LangChain,分析 OpenClaw 在编排层的优势', url: 'https://medium.com/@gwrx2005/proposal-for-a-multimodal-multi-agent-system-using-openclaw-81f5e4488233', source: 'Medium', lang: 'en', category: 'deep-dive', tags: ['架构', '多Agent', '对比'], }, { title: 'Contabo — What is OpenClaw: Self-Hosted AI Agent Guide', desc: 'VPS 提供商出品:OpenClaw vs n8n 对比,有状态记忆 vs 无状态工作流的差异分析', url: 'https://contabo.com/blog/what-is-openclaw-self-hosted-ai-agent-guide/', source: 'Contabo', lang: 'en', category: 'deep-dive', tags: ['vs n8n', '自部署', '对比'], }, // ============ New — Week of 2026-02-15 ============ // -- Video (Very Recent) -- { title: 'YouTube — Install OpenClaw in 10 Minutes (Feb 2026 Guide)', desc: 'VPS 部署速成指南,修复所有常见错误,2026 年 2 月最新版教程', url: 'https://www.youtube.com/watch?v=khTA_AfJ01Y', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['YouTube', '10分钟', '2026', 'VPS', '最新'], }, { title: 'YouTube — Don\'t Install OpenClaw Until You Watch This (Secure Setup)', desc: '安全优先的部署指南:如何安全安装和配置 OpenClaw,避免系统和 API Key 泄露', url: 'https://www.youtube.com/watch?v=J8sBdV4kwU8', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['YouTube', '安全', '部署指南', '最新'], }, { title: 'YouTube — I Built OpenClaw Cloud in 3 Hours (Magic Patterns + Railway)', desc: '云端 OpenClaw 搭建教程:Magic Patterns + Lovable + Railway 一键云部署', url: 'https://www.youtube.com/watch?v=24kae9iWBlc', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', '云部署', 'Railway', '3小时'], }, { title: 'YouTube — How to Install OpenClaw on Azure VM (Secure Guide 2026)', desc: '13 分钟 Azure 虚拟机安全部署教程,含防火墙配置和安全最佳实践', url: 'https://www.youtube.com/watch?v=1Jjt3DojHtw', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', 'Azure', '安全', '13分钟'], }, { title: 'YouTube — The Easiest Way to Install OpenClaw for Beginners', desc: 'Hostinger VPS 新手友好安装教程,逐步演示配置过程', url: 'https://www.youtube.com/watch?v=HFVImm-D1C4', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', 'Hostinger', '新手友好', '逐步演示'], }, // -- Getting Started (Recent) -- { title: 'WiTechPedia — How to Install OpenClaw: Complete Step-by-Step Guide (2026)', desc: 'Windows/macOS/Linux 全平台安装指南,含 npm 配置、API 设置、消息平台集成和故障排除', url: 'https://www.witechpedia.com/guide/how-to-install-openclaw/', source: 'WiTechPedia', lang: 'en', category: 'getting-started', featured: true, tags: ['全平台', 'npm', '故障排除', '2026'], }, { title: 'Betelgeuse.work — OpenClaw Install Guide (Ubuntu SSH)', desc: 'Ubuntu SSH 安装指南,修复 Token 不匹配、端口冲突和 UI 资源错误', url: 'https://betelgeuse.work/openclaw/', source: 'Betelgeuse', lang: 'en', category: 'getting-started', tags: ['Ubuntu', 'SSH', '故障排除', '端口冲突'], }, { title: 'Open-Claw.org — Ultimate Guide to Deploying OpenClaw (2026 Edition)', desc: 'Docker 和 Node.js 部署指南,含 Telegram 集成和安全最佳实践', url: 'https://open-claw.org/posts/openclaw-deploy', source: 'Open-Claw.org', lang: 'en', category: 'getting-started', tags: ['Docker', 'Telegram', '安全最佳实践', '2026'], }, { title: 'Medium — How to Install OpenClaw on Mac (Zilliz)', desc: 'macOS 完整安装教程:从前置条件到首次对话的全流程指南', url: 'https://medium.com/@zilliz_learn/how-to-install-and-run-openclaw-previously-clawdbot-moltbot-on-mac-9cb6adb64eef', source: 'Medium', lang: 'en', category: 'getting-started', tags: ['macOS', 'Medium', 'Mac安装', '完整流程'], }, // -- Deep Dive (Security - Critical Recent Updates) -- { title: 'Kaspersky — New OpenClaw AI Agent Found Unsafe for Use', desc: '卡巴斯基安全分析:近千个无认证的公开 OpenClaw 实例,漏洞数量超出预期', url: 'https://www.kaspersky.com/blog/openclaw-vulnerabilities-exposed/55263/', source: 'Kaspersky', lang: 'en', category: 'deep-dive', featured: true, tags: ['安全', '漏洞分析', 'Kaspersky', '无认证实例'], }, { title: 'xCloud — 7 OpenClaw Security Best Practices in 2026', desc: '2026 年 7 大安全最佳实践:CVE 防护、恶意软件防范、数据泄露防护完整指南', url: 'https://xcloud.host/openclaw-security-best-practices', source: 'xCloud', lang: 'en', category: 'deep-dive', featured: true, tags: ['安全最佳实践', 'CVE', '恶意软件', '数据保护'], }, { title: 'Bitsight — OpenClaw Security: Risks of Exposed AI Agents', desc: 'Bitsight 安全风险分析:暴露的 AI Agent 实例风险评估和缓解策略', url: 'https://www.bitsight.com/blog/openclaw-ai-security-risks-exposed-instances', source: 'Bitsight', lang: 'en', category: 'deep-dive', tags: ['安全风险', '暴露实例', '风险评估', 'Bitsight'], }, { title: 'AIMaker — How to Harden OpenClaw Security (3-Tier Guide)', desc: '三层安全加固指南:基础防护、标准加固、高级纵深防御,适用于自托管 AI Agent', url: 'https://aimaker.substack.com/p/openclaw-security-hardening-guide', source: 'AIMaker', lang: 'en', category: 'deep-dive', featured: true, tags: ['安全加固', '三层防御', '纵深防御', 'Substack'], }, { title: 'VPN Central — OpenClaw 2026.2.12 Release Patches 40+ Vulnerabilities', desc: '2026.2.12 版本发布说明:修复 40+ 安全漏洞,SSRF 防护升级,提示注入风险降低', url: 'https://vpncentral.com/openclaw-2026-2-12-release-patches-40-vulnerabilities-in-ai-agents/', source: 'VPN Central', lang: 'en', category: 'deep-dive', tags: ['版本更新', '40漏洞修复', 'SSRF', '提示注入'], }, // ============ New — Week of 2026-02-15 (Latest Batch) ============ // -- Getting Started (Recent Updates) -- { title: 'Clawbots.com — Setup Guides & Directory', desc: '社区维护的 OpenClaw 教程目录和设置检查表,实用的集成指南', url: 'https://clawbots.com/', source: 'Clawbots', lang: 'en', category: 'getting-started', tags: ['社区', '目录', '检查表'], }, // -- Deep Dive (Recent Analysis) -- { title: 'Skywork AI — Clawdbot (OpenClaw): 2026 Guide to AI Workflows & Risks', desc: '2026 年 AI 工作流和风险指南:安全优先的蓝图、可靠性保障和可重复工作流', url: 'https://skywork.ai/blog/ai-agent/clawdbot-openclaw-ai-workflows/', source: 'Skywork AI', lang: 'en', category: 'deep-dive', featured: true, tags: ['工作流', '风险', '2026', '安全'], }, { title: 'WIRED — I Loved My OpenClaw AI Agent—Until It Turned on Me', desc: 'WIRED 深度报道:OpenClaw 配置复杂性和潜在风险,真实用户体验分析', url: 'https://www.wired.com/story/malevolent-ai-agent-openclaw-clawdbot/', source: 'WIRED', lang: 'en', category: 'deep-dive', featured: true, tags: ['WIRED', '用户体验', '风险分析'], }, { title: 'Substack — The Swarm Doctrine: How OpenClaw Shattered the Bandwidth Ceiling', desc: '群体智能理论:OpenClaw 和 Orgo 如何突破主权带宽天花板的深度分析', url: 'https://mxtm.substack.com/p/the-swarm-doctrine-how-openclaw-and', source: 'Substack', lang: 'en', category: 'deep-dive', tags: ['群体智能', '理论', 'Orgo'], }, // -- Tools (Community Projects) -- { title: 'OpenClaw Skills 审计工具(ClawHub 安全检查)', desc: '社区开发的技能安全审计工具,2026 年 2 月审计认证的 ClawHub 技能推荐', url: 'https://mxtm.substack.com/p/the-swarm-doctrine-how-openclaw-and', source: 'Community', lang: 'en', category: 'tools', tags: ['安全审计', '2026审计', 'ClawHub'], }, // -- Use Cases (Latest Trends) -- { title: 'Reddit — Everyone talks about Clawdbot, but not many explain how it works', desc: 'Reddit 社区讨论:OpenClaw 工作原理解析和实际使用经验分享', url: 'https://www.reddit.com/r/AI_Agents/comments/1r15ji4/everyone_talks_about_clawdbot_openclaw_but_not/', source: 'Reddit', lang: 'en', category: 'use-cases', tags: ['Reddit', '工作原理', '社区讨论'], }, { title: 'Reddit — OpenClaw Security: Best Thing to Happen to AI Security This Year', desc: 'AI 安全视角分析 OpenClaw:从设置到管理关键安全风险的终极指南', url: 'https://www.reddit.com/r/ArtificialInteligence/comments/1r0qhq1/openclaw_or_moltbot_or_clawdbot_whatever_its/', source: 'Reddit', lang: 'en', category: 'deep-dive', tags: ['Reddit', 'AI安全', '风险管理'], }, // -- Official (Recent Updates) -- { title: 'GitHub Issues — Claude Opus 4.6 Support', desc: 'OpenClaw GitHub:Claude Opus 4.6 支持请求和默认上下文令牌更新', url: 'https://github.com/openclaw/openclaw/issues/12621', source: 'GitHub Issues', lang: 'en', category: 'official', tags: ['GitHub', 'Opus 4.6', '版本更新'], }, { title: 'GitHub Issues — Composable Skills Architecture RFC', desc: 'OpenClaw 技能架构 RFC:技能依赖、接口和组合的向后兼容扩展提案', url: 'https://github.com/openclaw/openclaw/issues/11919', source: 'GitHub Issues', lang: 'en', category: 'skill-dev', tags: ['架构', 'RFC', '技能组合'], }, // ============ New — Week of 2026-02-15 ============ // -- Official / Tools (Community) -- { title: 'Clawbot/OpenClaw Setup Guides & Directory', desc: '独立 OpenClaw 设置中心,实用教程、更新链接和故障排除资源', url: 'https://clawbots.com/', source: 'Clawbots', lang: 'en', category: 'tools', tags: ['社区', '设置中心', '故障排除'], }, // ============ New — Week of 2026-02-16 ============ // -- Deep Dive (Security) -- { title: 'Reddit — Best Openclaw Skills You Should Install (From ClawHub\'s 500+ Skills)', desc: 'Reddit 社区精选:500+ ClawHub 技能中的最佳推荐,含 Linear 集成、GraphQL 管理等实用技能', url: 'https://www.reddit.com/r/AI_Agents/comments/1r2u356/best_openclaw_skills_you_should_install_from/', source: 'Reddit', lang: 'en', category: 'skill-dev', featured: true, tags: ['Reddit', '技能推荐', 'Linear', 'GraphQL'], }, { title: 'Gainsight Community — Best OpenClaw Skills 2026: Site Builder\'s Standard', desc: '站点建设者标准:如何判断 OpenClaw 技能的质量,关注维护信号和版本历史', url: 'https://communities.gainsight.com/ideas/best-openclaw-skills-2026-a-site-builder-s-standard-for-what-actually-deserves-the-label-30298', source: 'Gainsight', lang: 'en', category: 'skill-dev', tags: ['标准', '质量评估', '维护信号'], }, { title: 'CyberSecurity News — OpenClaw v2026.2.6 发布:支持 Opus 4.6、GPT-5.3-Codex 和安全扫描器', desc: 'OpenClaw v2026.2.6 版本更新:增强安全性,响应 ClawHub 生态中的恶意技能威胁,内置代码安全扫描器和新模型支持', url: 'https://cybersecuritynews.com/openclaw-v2026-2-6-released/', source: 'CyberSecurity News', lang: 'en', category: 'deep-dive', featured: true, tags: ['版本更新', '安全扫描', 'Opus 4.6', 'GPT-5.3'], }, { title: 'Reddit — I Scanned Popular OpenClaw Skills - Here\'s What I Found', desc: 'Reddit 安全研究:扫描热门 OpenClaw 技能发现的安全问题,NPM/PyPI 供应链攻击的相同套路', url: 'https://www.reddit.com/r/hacking/comments/1r30t25/i_scanned_popular_openclaw_skills_heres_what_i/', source: 'Reddit', lang: 'en', category: 'deep-dive', tags: ['安全研究', '供应链攻击', 'NPM', 'PyPI'], }, // -- Official (Recent Issues) -- { title: 'GitHub Issue — 2026.2.14 更新后权限错误:missing scope operator.read', desc: 'OpenClaw 2026.2.14 版本更新后出现权限范围错误的解决方案和讨论', url: 'https://github.com/openclaw/openclaw/issues/16820', source: 'GitHub', lang: 'en', category: 'official', tags: ['版本问题', '权限错误', '2026.2.14'], }, { title: 'GitHub Issue — Copilot 提供商模型列表更新:Claude Opus 4.6-fast、GPT-5.3-codex', desc: '请求更新 Copilot 提供商支持最新模型,保持与 Copilot CLI 和 Proxy 功能同步', url: 'https://github.com/openclaw/openclaw/issues/15014', source: 'GitHub', lang: 'en', category: 'official', tags: ['Copilot', 'Claude Opus 4.6', 'GPT-5.3'], }, { title: 'GitHub Issue — Claude Opus 4.6 支持请求', desc: '2026年2月5日发布的 Claude Opus 4.6 模型支持请求,需要 SDK 版本升级到 0.73.0+', url: 'https://github.com/openclaw/openclaw/issues/12621', source: 'GitHub', lang: 'en', category: 'official', tags: ['Claude Opus 4.6', 'SDK升级', '模型支持'], }, // -- Getting Started (Fresh Guides) -- { title: 'Latenode — What is OpenClaw? Your Open-Source AI Assistant for 2026', desc: '2026年 OpenClaw 完整介绍:100+ 技能可用,单 CLI 命令安装,支持自然语言生成新技能', url: 'https://latenode.com/blog/ai/ai-agents/what-is-openclaw', source: 'Latenode', lang: 'en', category: 'getting-started', tags: ['2026介绍', '100+技能', 'CLI安装'], }, { title: 'WiTechPedia — OpenClaw AI Wiki: 架构、技能和实现', desc: 'OpenClaw AI 深度解析:ClawHub 市场、MCP 协议、与其他自主 Agent 的对比分析', url: 'https://www.witechpedia.com/wiki/openclaw-ai/', source: 'WiTechPedia', lang: 'en', category: 'deep-dive', tags: ['架构解析', 'MCP协议', 'Agent对比'], }, // -- Cloud Deploy -- { title: 'Vercel — OpenClaw (Clawdbot) 官方集成指南', desc: 'Vercel AI Gateway 集成 OpenClaw:API 密钥创建、安装向导和使用监控', url: 'https://vercel.com/docs/ai-gateway/chat-platforms/openclaw', source: 'Vercel', lang: 'en', category: 'cloud-deploy', featured: true, tags: ['Vercel', 'AI Gateway', '官方集成'], }, // -- Getting Started (Latest) -- { title: 'Apidog — How to Update OpenClaw to Latest Version', desc: '工程导向的 OpenClaw 更新指南:Docker/systemd/compose 安全更新,备份、模式迁移和回滚设计', url: 'https://apidog.com/blog/update-openclaw/', source: 'Apidog', lang: 'en', category: 'getting-started', featured: true, tags: ['Apidog', '更新指南', '备份回滚'], }, { title: 'Substack — OpenClaw/Moltbot/ClawdBot 101: 完整指南', desc: '全面的 OpenClaw 指南:从基础概念到高级用法,涵盖 24/7 运行和消息平台集成', url: 'https://sidsaladi.substack.com/p/openclawmoltbotclawdbot-101-the-complete', source: 'Substack', lang: 'en', category: 'getting-started', tags: ['完整指南', '24/7', '消息平台'], }, // -- Video (Latest) -- { title: 'YouTube — Ultimate Clawdbot Tutorial: Beginners Setup & Use (OpenClaw)', desc: 'PAIO by PureVPN 赞助的完整初学者教程,从安装到基本使用全流程', url: 'https://www.youtube.com/watch?v=NA8C8jIQNeM', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['初学者', '完整教程', 'PureVPN'], }, { title: 'YouTube — The Easiest Way To Install and Use OpenClaw For Beginners', desc: 'Hostinger VPS 逐步安装教程,专为初学者设计的易懂指南', url: 'https://www.youtube.com/watch?v=HFVImm-D1C4', source: 'YouTube', lang: 'en', category: 'video', tags: ['Hostinger', 'VPS', '初学者友好'], }, // ============ New — Week of 2026-02-17 ============ // -- Official (BREAKING NEWS) -- { title: 'TechCrunch — OpenClaw 创始人 Peter Steinberger 加入 OpenAI', desc: '重磅新闻:OpenClaw 创始人正式加入 OpenAI,负责"下一代个人代理"开发,OpenClaw 将作为开源项目继续由 OpenAI 支持', url: 'https://techcrunch.com/2026/02/15/openclaw-creator-peter-steinberger-joins-openai/', source: 'TechCrunch', lang: 'en', category: 'official', featured: true, tags: ['重磅新闻', 'OpenAI', '创始人', '里程碑'], }, { title: 'CNBC — OpenClaw 创始人 Peter Steinberger 加入 OpenAI,Sam Altman 确认', desc: 'CNBC 确认报道:Sam Altman 发推确认 OpenClaw 创始人加入 OpenAI,开源项目将由 OpenAI 基金会继续支持', url: 'https://www.cnbc.com/2026/02/15/openclaw-creator-peter-steinberger-joining-openai-altman-says.html', source: 'CNBC', lang: 'en', category: 'official', featured: true, tags: ['CNBC', 'Sam Altman', '官方确认', '里程碑'], }, // -- Deep Dive (Latest Version) -- { title: 'Archive.is — OpenClaw 2026.2.12 发布:修复 40+ 安全问题', desc: 'OpenClaw 2026.2.12 重大安全更新:修复 40+ 漏洞,加强 AI Agent 平台保护', url: 'https://archive.is/YqEtG', source: 'Archive.is', lang: 'en', category: 'deep-dive', featured: true, tags: ['版本更新', '安全修复', '40漏洞', '2026.2.12'], }, // -- Use Cases (Latest Workflows) -- { title: 'Julian Goldie — OpenClaw 工作流自动化:消除 80% 日常繁琐工作', desc: '实战案例:OpenClaw 2026.2.6 版本新功能深度体验,从晨间简报到 AI 利润社区自动化的完整工作流', url: 'https://juliangoldie.com/openclaw-workflow-automation/', source: 'Julian Goldie', lang: 'en', category: 'use-cases', featured: true, tags: ['工作流', '自动化', '实战案例', 'v2026.2.6'], }, // -- Cloud Deploy (Community Platforms) -- { title: 'Unraid 论坛 — OpenClaw AI 个人助手支持页面', desc: 'Unraid 社区官方支持:自托管 AI 助手,Docker 容器部署,直接在 Unraid 服务器运行', url: 'https://forums.unraid.net/topic/196865-support-openclaw-ai-personal-assistant/', source: 'Unraid Forum', lang: 'en', category: 'cloud-deploy', tags: ['Unraid', 'Docker', '自托管', '社区支持'], }, // ============ New — Week of 2026-02-19 ============ // -- Official (Mega News: Steinberger → OpenAI + Foundation) -- { title: 'Peter Steinberger — OpenClaw, OpenAI and the future(创始人公告)', desc: 'tl;dr: 我加入 OpenAI 负责个人 Agent,OpenClaw 将移交基金会保持开源独立。创始人第一视角全文声明', url: 'https://steipete.me/posts/2026/openclaw', source: 'steipete.me', lang: 'en', category: 'official', featured: true, tags: ['里程碑', '创始人声明', 'OpenAI', '基金会'], }, { title: 'Reuters — OpenClaw 创始人加入 OpenAI,项目转为基金会', desc: 'Sam Altman 确认 Peter Steinberger 加入 OpenAI,OpenClaw 将"生活在基金会中"保持开源', url: 'https://www.reuters.com/business/openclaw-founder-steinberger-joins-openai-open-source-bot-becomes-foundation-2026-02-15/', source: 'Reuters', lang: 'en', category: 'official', featured: true, tags: ['Reuters', '里程碑', 'OpenAI', '基金会'], }, { title: 'CNET — The Year of the Agent: OpenAI Strikes Deal With OpenClaw Founder', desc: 'Lex Fridman 播客后 Zuckerberg 与 Altman 均抛出 offer,Steinberger 最终选择 OpenAI 全过程报道', url: 'https://www.cnet.com/tech/services-and-software/openai-strikes-deal-with-openclaw-founder/', source: 'CNET', lang: 'en', category: 'official', featured: true, tags: ['CNET', 'OpenAI', 'Meta', '里程碑'], }, { title: 'Fast Company — 6 quotes from Peter Steinberger on the future of personal computing', desc: 'Lex Fridman 3 小时播客精华提炼:Steinberger 对个人计算和 AI Agent 未来的洞见', url: 'https://www.fastcompany.com/91494326/openclaw-peter-steinberger-openai-meta-lex-fridman', source: 'Fast Company', lang: 'en', category: 'deep-dive', featured: true, tags: ['Fast Company', 'Lex Fridman', '播客精华', '未来展望'], }, { title: 'Business Insider — OpenAI Hires OpenClaw Creator: Praise, Memes & Rivalry', desc: '科技圈的反应:Steinberger 加入 OpenAI 后的赞誉、梗图和竞争话题报道', url: 'https://www.businessinsider.com/openais-openclaw-hire-sparks-praise-memes-rivalry-chatter-2026-2', source: 'Business Insider', lang: 'en', category: 'official', tags: ['Business Insider', '行业动态', 'OpenAI'], }, { title: 'Parameter.io — OpenClaw Developer Picks OpenAI After Rejecting Meta', desc: 'Meta vs OpenAI 争夺战报道,+ Moonshot AI 于同日发布 Kimi Claw(浏览器版 OpenClaw)分析', url: 'https://parameter.io/openclaw-developer-picks-openai-after-rejecting-meta-acquisition-deal/', source: 'Parameter.io', lang: 'en', category: 'official', tags: ['Meta', 'OpenAI', 'Kimi Claw', '行业分析'], }, // -- Video (Major: Lex Fridman Podcast) -- { title: 'Lex Fridman Podcast #491 — OpenClaw: The Viral AI Agent that Broke the Internet', desc: 'GitHub 历史上增长最快的项目创始人 Peter Steinberger 接受 Lex Fridman 3 小时深度专访,必听', url: 'https://www.youtube.com/watch?v=YFjfBk8HI5o', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['Lex Fridman', '播客', '创始人', '必听'], }, { title: 'Lex Fridman Podcast — 文字版 + 章节索引(#491)', desc: 'Lex Fridman 官网版:含完整章节列表和时间戳,方便跳读关键话题', url: 'https://lexfridman.com/peter-steinberger/', source: 'Lex Fridman', lang: 'en', category: 'video', tags: ['Lex Fridman', '播客', '文字版', '创始人'], }, // -- Video (New Products & Tutorials) -- { title: 'YouTube — Kimi Claw: 浏览器内运行 OpenClaw(教程 + 演示)', desc: 'Moonshot AI 推出 Kimi Claw:无需本地部署或 VPS,在浏览器云端运行 OpenClaw Agent 全教程', url: 'https://www.youtube.com/watch?v=72voj6uefLY', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['Kimi Claw', 'Moonshot AI', '浏览器版', '无需部署'], }, { title: 'YouTube — Tech With Tim: OpenClaw Full Course (Setup, Skills, Voice, Memory)', desc: 'Tech With Tim 出品:涵盖安装、技能、语音回复、记忆系统的完整系统课程,Hostinger 赞助', url: 'https://www.youtube.com/watch?v=vte-fDoZczE', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['Tech With Tim', '完整课程', 'Skills', 'Voice', 'Memory'], }, { title: 'YouTube — OpenClaw Tutorial for Beginners: Crash Course', desc: 'OpenClaw(前 MoltBot/Clawdbot)速成课程:本地自主运行 + MCP + Zapier 集成演示', url: 'https://www.youtube.com/watch?v=u4ydH-QvPeg', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', '速成课', 'MCP', 'Zapier'], }, { title: 'YouTube — OpenClaw Tutorial 2026: Everything You Need to Know', desc: '2026 全面入门视频:账户配置、平台导航、主要功能和第一个自动化任务演示', url: 'https://www.youtube.com/watch?v=znaJgKDo-oI', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', '2026', '全面入门'], }, { title: 'YouTube — OpenClaw Use Cases that Actually Work (mberman84)', desc: 'Matt Berman 演示真正实用的 OpenClaw 场景,配 Greptile 集成和完整提示词 Gist', url: 'https://www.youtube.com/watch?v=Q7r--i9lLck', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['YouTube', '用例演示', 'Greptile', '实用'], }, { title: 'YouTube — OpenClaw Use Cases that are Actually Helpful (Skool 社区版)', desc: '结合 Skool 社区平台的 OpenClaw 正确玩法:从安装到真实工作流的完整演示', url: 'https://www.youtube.com/watch?v=LV6Juz0xcrY', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', '用例演示', 'Skool', '工作流'], }, // -- Getting Started (New Guides) -- { title: 'Towards Data Science — Use OpenClaw to Make a Personal AI Assistant', desc: '权威数据科学媒体出品:OpenClaw 个人 AI 助手搭建完整指南,从安装到个性化配置', url: 'https://towardsdatascience.com/use-openclaw-to-make-a-personal-ai-assistant/', source: 'Towards Data Science', lang: 'en', category: 'getting-started', featured: true, tags: ['TDS', '权威', '个性化', '数据科学'], }, { title: 'Medium — OpenClaw Tutorial 2026: Setting Up Your 24/7 AI Employee', desc: 'Travis Nicholson 出品:从 AI 软件到 AI Agent 的认知转变,全流程 24/7 部署配置指南', url: 'https://travisnicholson.medium.com/openclaw-tutorial-2026-setting-up-your-24-7-ai-employee-step-by-step-guide-39f52a81707a', source: 'Medium', lang: 'en', category: 'getting-started', tags: ['Medium', '24/7', '认知转变', '2026'], }, { title: 'The Educationist Hub — How to Install Clawdbot (OpenClaw) on Windows 2026', desc: 'Windows 平台完整安装指南:含自动化 SEO 和消息任务配置,适合 Windows 用户', url: 'https://www.theeducationisthub.com/install-clawdbot-windows/', source: 'The Educationist Hub', lang: 'en', category: 'getting-started', tags: ['Windows', '2026', '自动化SEO'], }, // -- Deep Dive (Security - Critical New Reports) -- { title: 'Fortune — Why OpenClaw Has Security Experts on Edge', desc: 'Fortune 科技版深度报道:OpenClaw 赋予 AI 真实自主权带来的新型安全风险,Eye on AI 专栏', url: 'https://fortune.com/2026/02/12/openclaw-ai-agents-security-risks-beware/', source: 'Fortune', lang: 'en', category: 'deep-dive', featured: true, tags: ['Fortune', '安全', '主流媒体', '自主权风险'], }, { title: 'Sophos — The OpenClaw Experiment Is a Warning Shot for Enterprise AI Security', desc: 'Sophos 研究:3 万+ 暴露实例,威胁者已在讨论如何武器化 Skills,企业必读安全警告', url: 'https://www.sophos.com/en-us/blog/the-openclaw-experiment-is-a-warning-shot-for-enterprise-ai-security', source: 'Sophos', lang: 'en', category: 'deep-dive', featured: true, tags: ['Sophos', '安全', '暴露实例', '企业'], }, { title: 'Conscia — The OpenClaw Security Crisis: ClawHavoc 824 恶意技能', desc: '2026-02-16 最新统计:ClawHavoc 行动将恶意技能扩展至 824 个,覆盖 10,700+ 技能库的深度分析', url: 'https://conscia.com/blog/the-openclaw-security-crisis/', source: 'Conscia', lang: 'en', category: 'deep-dive', featured: true, tags: ['安全危机', 'ClawHavoc', '824恶意技能', '最新统计'], }, { title: 'Barrack.ai — OpenClaw Is a Security Nightmare: Here\'s the Safe Way to Run It', desc: 'Zenity Labs 研究:Google Docs 间接提示注入演示 + 安全运行 OpenClaw 的实用指南', url: 'https://blog.barrack.ai/openclaw-security-vulnerabilities-2026/', source: 'Barrack.ai', lang: 'en', category: 'deep-dive', tags: ['Zenity Labs', '提示注入', '安全指南'], }, { title: 'Aikido.dev — Why Trying to Secure OpenClaw Is Ridiculous', desc: 'Aikido 安全团队:ClawHub 恶意软件、暴露实例、加固指南为何治标不治本的犀利分析', url: 'https://www.aikido.dev/blog/why-trying-to-secure-openclaw-is-ridiculous', source: 'Aikido', lang: 'en', category: 'deep-dive', tags: ['Aikido', '安全批判', 'ClawHub', '深度分析'], }, { title: 'Security Boulevard — Securing OpenClaw Against ClawHavoc', desc: '12% ClawHub 技能被确认恶意,ClawHavoc 供应链攻击完整分析和防护方案', url: 'https://securityboulevard.com/2026/02/securing-openclaw-againstclawhavoc/', source: 'Security Boulevard', lang: 'en', category: 'deep-dive', tags: ['Security Boulevard', 'ClawHavoc', '供应链', '防护'], }, { title: 'RNWY Blog — The OpenClaw Ecosystem Is Growing Fast: Who\'s Verifying These Agents?', desc: '生态图谱报告:OpenClaw Agent 持有钱包、执行支付时,谁在验证其身份?身份安全的深层问题', url: 'https://rnwy.com/blog/openclaw-ecosystem-agent-verification', source: 'RNWY', lang: 'en', category: 'deep-dive', tags: ['生态图谱', 'Agent身份', '支付安全', '验证机制'], }, // -- Deep Dive (Production & Advanced Analysis) -- { title: 'SitePoint — OpenClaw Production Guide: 4 Weeks of Hard Lessons', desc: '30 天自托管 AI Agent 的真实记录:可扩展性、监控、成本与运营指标综合报告', url: 'https://www.sitepoint.com/openclaw-production-lessons-4-weeks-self-hosted-ai/', source: 'SitePoint', lang: 'en', category: 'deep-dive', featured: true, tags: ['SitePoint', '生产环境', '4周实测', '运营指标'], }, { title: 'Medium — OpenClaw for Product Managers: Building Products in the AI Agent Era 2026', desc: '产品经理视角:OpenClaw 如何重新定义"AI 驱动产品",Gateway 架构与产品决策关系分析', url: 'https://medium.com/@mohit15856/openclaw-for-product-managers-building-products-in-the-ai-agent-era-2026-guide-71d18641200f', source: 'Medium', lang: 'en', category: 'deep-dive', tags: ['产品经理', 'PM视角', 'AI产品', '2026'], }, { title: 'Archive.ph — Run OpenClaw Safely with Docker: Production-Grade Deep Dive', desc: '生产级 Ollama + OpenClaw 安全配置:本地 AI 基础设施作为攻击面的深度剖析,附完整 Docker 方案', url: 'https://archive.ph/zv0wm', source: 'Towards Dev', lang: 'en', category: 'deep-dive', tags: ['Docker', 'Ollama', '生产级', '安全配置'], }, // ============ New — Week of 2026-02-20 ============ // -- Official (Foundation Transition) -- { title: 'The Register — OpenAI Grabs OpenClaw Creator Peter Steinberger', desc: 'The Register 报道 Altman 确认 Steinberger 加入 OpenAI,OpenClaw 将"作为开源项目在基金会中继续生存"', url: 'https://www.theregister.com/2026/02/16/open_ai_grabs_openclaw', source: 'The Register', lang: 'en', category: 'official', featured: true, tags: ['The Register', 'OpenAI', '里程碑', '基金会'], }, { title: 'Tech.eu — Austrian Creator of Viral OpenClaw Joins OpenAI', desc: 'Steinberger:"我加入 OpenAI 为所有人带来 Agent。OpenClaw 正在成为基金会:开放、独立、刚刚起步。"', url: 'https://tech.eu/2026/02/16/austrian-creator-of-viral-openclaw-joins-openai/', source: 'Tech.eu', lang: 'en', category: 'official', tags: ['Tech.eu', '欧洲科技媒体', 'OpenAI', '基金会'], }, { title: 'OpenClaw Newsletter — 2026-02-15(v2026.2.14:50+ 安全修复)', desc: '官方周刊:v2026.2.14 情人节发布,50+ 安全修复,Telegram Polls、Slack/Discord DM 策略、Matrix 语音消息改进', url: 'https://buttondown.com/openclaw-newsletter/archive/openclaw-newsletter-2026-02-15/', source: 'OpenClaw Newsletter', lang: 'en', category: 'official', featured: true, tags: ['官方周刊', '版本更新', 'v2026.2.14', '安全修复'], }, { title: 'gradually.ai — OpenClaw Changelog(2026 年 2 月)', desc: 'v2026.2.14 ~ v2026.2.17 完整更新日志:Telegram Polls、Slack/Discord DM 策略、新权限系统等功能一览', url: 'https://www.gradually.ai/en/changelogs/openclaw/', source: 'gradually.ai', lang: 'en', category: 'official', tags: ['更新日志', 'v2026.2.17', 'Telegram Polls', '版本追踪'], }, { title: 'Reddit — OpenClaw 2026.2.15 更新:重大功能与改进', desc: 'Reddit 社区 r/aicuriosity 精华帖:2026 年 2 月 16 日新版本发布,AI Agent 平台核心功能升级详解', url: 'https://www.reddit.com/r/aicuriosity/comments/1r6536z/openclaw_2026215_update_major_features_and/', source: 'Reddit', lang: 'en', category: 'official', tags: ['Reddit', 'v2026.2.15', '版本更新', '社区讨论'], }, { title: 'Hacker News — OpenClaw (ClawdBot) joins OpenAI(讨论帖)', desc: 'HN 社区讨论:OpenClaw 加入 OpenAI 事件,n8n 类比、设置摩擦、小企业自动化的真实用户视角', url: 'https://news.ycombinator.com/item?id=47027907', source: 'Hacker News', lang: 'en', category: 'official', featured: true, tags: ['Hacker News', 'OpenAI', '社区讨论', 'HN'], }, // -- Deep Dive (Analysis & Security) -- { title: 'Om.co — Sam "Claws" Attention Back: Om Malik 分析 OpenAI 收购 Steinberger', desc: '知名科技作家 Om Malik 分析:Steinberger 加入 OpenAI 对个人 AI Agent 赛道的深层意义', url: 'https://om.co/2026/02/16/sam-claws-attention-back-openai/', source: 'Om.co', lang: 'en', category: 'deep-dive', featured: true, tags: ['Om Malik', 'OpenAI', '深度分析', '行业影响'], }, { title: 'Medium — OpenClaw Just Dropped a Massive Update: Making Paid AI Look Like a Joke', desc: '2026 年 2 月多版本连续更新深度体验:DevOps 自动化、智能家居控制、跨平台实时任务执行', url: 'https://medium.com/@krupeshraut/openclaw-just-dropped-a-massive-update-and-its-making-paid-ai-assistants-look-like-a-joke-86e12f931dd8', source: 'Medium', lang: 'en', category: 'deep-dive', tags: ['Medium', '版本更新', 'DevOps', '自动化'], }, { title: 'Medium — OpenClaw: 190K GitHub Stars in 14 Days and Changed How We Think About Digital Labor', desc: '从 190K Stars 到 OpenAI 收购:OpenClaw 如何重新定义数字劳动,并改变个人计算范式的深度分析', url: 'https://archive.ph/YSnks', source: 'Medium (archive)', lang: 'en', category: 'deep-dive', featured: true, tags: ['190K Stars', '数字劳动', '范式转变', '里程碑'], }, { title: 'Prime Rogue Inc — OpenClaw 安全危机:2026 年 2 月天真部署者须知', desc: 'CVSS 8.8 漏洞披露、Hudson Rock 发现 Vidar 变体窃取 openclaw.json tokens,项目移交基金会期间仍在活跃利用', url: 'https://primerogueinc.com/blog/openclaw-security-crisis-structurally-broken-in-february-2026-what-naive-deployers-need-to-know-before-its-too-late/', source: 'Prime Rogue Inc', lang: 'en', category: 'deep-dive', featured: true, tags: ['安全危机', 'CVSS 8.8', 'Vidar', 'Token窃取'], }, // -- Use Cases -- { title: 'DataCamp — 9 OpenClaw Projects to Build in 2026', desc: '9 个实战项目:从 Reddit 摘要机器人到自愈服务器,每个项目附配置文件、提示词和社区 Setup 指南', url: 'https://www.datacamp.com/blog/openclaw-projects', source: 'DataCamp', lang: 'en', category: 'use-cases', featured: true, tags: ['DataCamp', '9个项目', '实战', 'Reddit Bot'], }, // -- Video (This Week) -- { title: 'YouTube — OpenClaw Full Setup Tutorial: EASIEST Way! (Duncan × Hostinger)', desc: 'Duncan 出品:Hostinger VPS 最简部署指南,从零到运行的完整演示,附 10% 优惠码', url: 'https://www.youtube.com/watch?v=HCgHJf9YVAw', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['YouTube', 'Hostinger', '最简部署', 'Duncan'], }, { title: 'YouTube — OpenClaw Setup on Coolify with VPS(无需 Mac Mini)', desc: 'Coolify 容器化部署 OpenClaw,适合已有 VPS 用户,无需购买昂贵 Mac Mini 硬件', url: 'https://www.youtube.com/watch?v=48fjZWNjwtU', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', 'Coolify', 'VPS', '无需Mac Mini'], }, { title: 'YouTube — Full OpenClaw/ClawdBot Setup Guide for Beginners(Grey Matter AI)', desc: 'Grey Matter AI 社区出品:完整入门课程,从安装到配置,Skool 社区免费加入', url: 'https://www.youtube.com/watch?v=lRQk5jabSH4', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', 'Grey Matter AI', '社区', '入门'], }, { title: 'YouTube — One-Click OpenClaw on VPS — No Mac Mini Needed ($4/month)', desc: '一键云端部署 OpenClaw,每月仅需 $4,彻底告别 Mac Mini 依赖,24/7 稳定运行', url: 'https://www.youtube.com/watch?v=-xAFJfvg6FI', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['YouTube', '一键部署', '$4/月', '无需Mac Mini'], }, // ============ New — Week of 2026-02-21 ============ // -- Official (Changelog & Newsletter) -- { title: 'OpenClaw Newsletter — 2026-02-19(安全争议 + v2026.2.17 上游同步)', desc: '官方周刊:HN 252 评论安全分析引发热议,Fork 维护者同步 55 个安全补丁,Telegram/Slack 新功能播报', url: 'https://buttondown.com/openclaw-newsletter/archive/openclaw-newsletter-2026-02-19/', source: 'OpenClaw Newsletter', lang: 'en', category: 'official', featured: true, tags: ['官方周刊', 'v2026.2.17', 'v2026.2.19', '安全争议'], }, { title: 'GitHub Issue — Claude Sonnet 4.6 支持请求(#19529)', desc: '2026-02-17 Anthropic 发布 Sonnet 4.6,OpenClaw 同日提 Issue 并快速在 v2026.2.17 修复', url: 'https://github.com/openclaw/openclaw/issues/19529', source: 'GitHub Issues', lang: 'en', category: 'official', tags: ['Claude Sonnet 4.6', '版本修复', 'v2026.2.17'], }, { title: 'NewReleases.io — OpenClaw v2026.2.19 发布说明', desc: 'v2026.2.19 新功能:设备配对卫生流程(device.pair.remove)、openclaw devices remove / clear 命令', url: 'https://newreleases.io/project/github/openclaw/openclaw/release/v2026.2.19', source: 'NewReleases.io', lang: 'en', category: 'official', tags: ['v2026.2.19', '设备管理', '版本追踪'], }, // -- Deep Dive (v2026.2.17 + v2026.2.19 Coverage) -- { title: 'GBHackers — OpenClaw v2026.2.17:Anthropic 模型支持 + 凭证盗窃漏洞披露', desc: 'v2026.2.17 新增 Claude Sonnet 4.6 支持,同时披露正在被利用的凭证盗窃漏洞(openclaw.json token)', url: 'https://gbhackers.com/openclaw-ai-framework-v2026-2-17/', source: 'GBHackers', lang: 'en', category: 'deep-dive', featured: true, tags: ['v2026.2.17', 'Sonnet 4.6', '凭证盗窃', '漏洞'], }, { title: 'CyberSecurity News — OpenClaw v2026.2.17 发布:Sonnet 4.6、1M 上下文 Beta 与子 Agent', desc: 'v2026.2.17 全功能报道:Claude Sonnet 4.6、100 万 token 上下文 Beta、子 Agent 生成、iOS 分享扩展、Slack 流式输出', url: 'https://cybersecuritynews.com/openclaw-ai-framework-v2026-2-17/', source: 'CyberSecurity News', lang: 'en', category: 'deep-dive', featured: true, tags: ['v2026.2.17', 'Sonnet 4.6', '1M上下文', '子Agent', 'iOS'], }, { title: 'Infosecurity Magazine — 研究人员发现 6 个 OpenClaw 新漏洞', desc: 'Endor Labs 披露 6 个已修复漏洞:SSRF、缺失认证、路径遍历,OpenClaw 安全修复进展追踪', url: 'https://www.infosecurity-magazine.com/news/researchers-six-new-openclaw/', source: 'Infosecurity Magazine', lang: 'en', category: 'deep-dive', featured: true, tags: ['安全漏洞', 'SSRF', '路径遍历', 'Endor Labs'], }, { title: 'Cloudflare Blog — Moltworker:自托管个人 AI Agent 无需 "迷你机"', desc: 'Cloudflare 官方介绍 Moltworker(OpenClaw 前身)架构,含 Workers + R2 全 CF 方案集成指南', url: 'https://blog.cloudflare.com/moltworker-self-hosted-ai-agent/', source: 'Cloudflare', lang: 'en', category: 'deep-dive', featured: true, tags: ['Cloudflare', 'Workers', 'R2', '架构'], }, { title: 'ChatBench — OpenClaw Unleashed:2026 年 14 个必知洞见', desc: '深度指南:openclaw doctor 安全诊断、ClawHub 技能筛选原则、Docker 加固和 Token 配额控制', url: 'https://www.chatbench.org/openclaw/', source: 'ChatBench', lang: 'en', category: 'deep-dive', tags: ['14洞见', '安全诊断', 'Docker加固', '2026'], }, { title: 'Medium — OpenClaw/MoltBot/ClawdBot 本地系统架构深度解析', desc: '背景服务 + 消息适配器 + 纯文本记忆:OpenClaw 作为新型 AI Trend 的架构本质分析', url: 'https://medium.com/@tahirbalarabe2/clawdbot-moltbot-openclaw-local-system-architecture-52acc37f1213', source: 'Medium', lang: 'en', category: 'deep-dive', tags: ['架构', '本地系统', '记忆', 'Medium'], }, { title: 'Medium — OpenClaw 记忆架构拆解:BM25 + 向量搜索混合检索', desc: 'Markdown 纯文本记忆 vs 向量数据库,OpenClaw 混合 BM25 + 向量检索底层机制深度解析', url: 'https://shivamagarwal7.medium.com/agentic-ai-openclaw-moltbot-clawdbots-memory-architecture-explained-61c3b9697488', source: 'Medium', lang: 'en', category: 'deep-dive', featured: true, tags: ['记忆架构', 'BM25', '向量搜索', 'Markdown'], }, { title: 'Medium — How OpenClaw Works:从真实架构理解 AI Agent', desc: '100K+ Stars 背后的架构解析:Gateway、Brain、Channel Adapter 三层如何协同工作', url: 'https://bibek-poudel.medium.com/how-openclaw-works-understanding-ai-agents-through-a-real-architecture-5d59cc7a4764', source: 'Medium', lang: 'en', category: 'deep-dive', tags: ['架构解析', 'Gateway', 'Brain', '100K Stars'], }, // -- Getting Started (User Reviews) -- { title: 'Medium — 我测试了 OpenClaw:爆火之后的真实体验', desc: 'Ubuntu Server + OpenRouter Gemini 2.0 Flash 免费运行 OpenClaw 的完整折腾记录,含优缺点评价', url: 'https://medium.com/@ammarcader15/%EF%B8%8F-%EF%B8%8F-testing-clawdbot-openclaw-my-experience-after-the-hype-b897e6f35289', source: 'Medium', lang: 'en', category: 'getting-started', tags: ['用户体验', 'OpenRouter', 'Gemini', 'Ubuntu'], }, // -- Video (This Week) -- { title: 'YouTube — OpenClaw BIGGEST Update Yet:v2026.2.17 + v2026.2.19 全解析', desc: '三天内连发两个重大版本,Sonnet 4.6、1M 上下文 Beta、子 Agent 生成、iOS 分享扩展全面解读', url: 'https://www.youtube.com/watch?v=WXzkDDAwW1Y', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['YouTube', 'v2026.2.17', 'v2026.2.19', '最新', '必看'], }, { title: 'YouTube — My OpenClaw Dashboard Setup:初学者必备配置技巧(2026)', desc: 'OpenClaw Control UI 可视化仪表盘全攻略,新手友好的 Dashboard 配置和常用设置演示', url: 'https://www.youtube.com/watch?v=2pn0zIEa41E', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', 'Dashboard', 'Control UI', '新手'], }, { title: 'YouTube — OpenClaw NEW FREE Upgrades Are INSANE(Zapier 8000+ 应用集成)', desc: '最新免费升级演示:通过 Zapier 免费接入 8000+ 应用,OpenClaw 新版玩法和用例展示', url: 'https://www.youtube.com/watch?v=wDL0zevEwDc', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['YouTube', 'Zapier', '8000+应用', '免费升级', '最新'], }, { title: 'YouTube — Beginner\'s Guide to OpenClaw:快速安装配置入门', desc: '完整初学者指南:手把手安装配置 OpenClaw,适合从未接触过自托管 AI Agent 的新手', url: 'https://www.youtube.com/watch?v=IbdiJqP4VRQ', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', '初学者', '安装配置', '入门'], }, { title: 'YouTube — My Multi Agent Setup on OpenClaw(Mac Mini M4 实测)', desc: '$1000 Mac Mini M4 搭建多 Agent 系统的完整实测,含 Agent 团队架构和任务分发配置', url: 'https://www.youtube.com/watch?v=LKjkYbT2M0Y', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['YouTube', 'Multi-Agent', 'Mac Mini M4', '多Agent架构'], }, { title: 'YouTube — OpenClaw Discord Integration:AWS 上完整 Discord Bot 部署', desc: 'Discord Bot 创建 + OpenClaw 接入 AWS EC2 全流程,100% 免费方案演示', url: 'https://www.youtube.com/watch?v=Z5aoaHQh26Q', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', 'Discord', 'AWS', 'Bot部署'], }, { title: 'YouTube — How to Run OpenClaw for Free with Kimi 2.5(完整部署教程)', desc: 'VPS 部署 OpenClaw + 接入 NVIDIA Moonshot 免费 API(Kimi 2.5),零成本运行完整演示', url: 'https://www.youtube.com/watch?v=bQuZgPc6PtQ', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', 'Kimi 2.5', 'NVIDIA', '免费方案', 'VPS'], }, { title: 'YouTube — Claude Sonnet 4.6 发布:OpenClaw 最强模型评测', desc: 'Anthropic 发布 Sonnet 4.6,评测其在 OpenClaw 中的表现和 2 个突破性用例演示', url: 'https://www.youtube.com/watch?v=HjQ5ty3_X_0', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['YouTube', 'Claude Sonnet 4.6', '模型评测', '最新'], }, // -- Social / Community Discussion -- { title: 'Reddit r/AI_Agents — OpenAI just hired the OpenClaw creator(社区反应)', desc: 'Clawdbot 创始人(以 Claude 命名)被 OpenAI 而非 Anthropic 雇用,Reddit 科技圈热议讨论', url: 'https://www.reddit.com/r/AI_Agents/comments/1r6xksq/openai_just_hired_the_openclaw_creator/', source: 'Reddit', lang: 'en', category: 'official', tags: ['Reddit', 'OpenAI', '社区讨论', '创始人'], }, { title: 'Reddit r/OpenAI — OpenClaw is about to be ClosedClaw?社区争议', desc: 'Reddit 热门讨论:OpenAI 收购 OpenClaw 是否会关闭开源?基金会模式能否保持独立性的辩论', url: 'https://www.reddit.com/r/OpenAI/comments/1r5ptks/openclaw_is_about_to_be_closedclawopenai_in/', source: 'Reddit', lang: 'en', category: 'deep-dive', tags: ['Reddit', 'OpenAI', '开源争议', '基金会'], }, // ============ New — Week of 2026-02-22 ============ // -- Official -- { title: 'OpenClaw Newsletter — 2026-02-17(NanoClaw 安全修复 + v2026.2.17 发布)', desc: '官方周刊:NanoClaw 安全修复重磅发布,Adversa AI 推出 SecureClaw,v2026.2.17 完整功能播报', url: 'https://buttondown.com/openclaw-newsletter/archive/openclaw-newsletter-2026-02-17/', source: 'OpenClaw Newsletter', lang: 'en', category: 'official', featured: true, tags: ['官方周刊', 'v2026.2.17', 'NanoClaw', 'SecureClaw'], }, { title: 'OpenClawd — 托管 Clawdbot 平台发布(基金会过渡后抢先上线)', desc: 'OpenClawd AI 发布托管部署平台,无需自己运维 VPS,借势 Steinberger 加入 OpenAI 热点推出', url: 'https://finance.yahoo.com/news/openclawd-releases-managed-clawdbot-platform-171500717.html', source: 'Yahoo Finance', lang: 'en', category: 'cloud-deploy', tags: ['托管平台', 'OpenClawd', '无需VPS', '商业化'], }, // -- Tools (New Ecosystem Players) -- { title: 'SecureClaw — OWASP 对齐的 OpenClaw 开源安全插件', desc: 'Adversa AI 发布 SecureClaw:基于 OWASP 规范的开源安全审计插件 + Skill,对 OpenClaw 部署进行行为控制', url: 'https://www.helpnetsecurity.com/2026/02/18/secureclaw-open-source-security-plugin-skill-openclaw/', source: 'Help Net Security', lang: 'en', category: 'tools', featured: true, tags: ['SecureClaw', 'OWASP', '安全插件', 'Adversa AI'], }, { title: 'NanoClaw — 最小权限、最大隔离的安全版 OpenClaw 替代品', desc: 'Gavriel Cohen 用一个周末构建 NanoClaw:面向安全意识用户的极简 AI Agent,代码少到可以完整审计', url: 'https://www.scriptbyai.com/nanoclaw-openclaw-alternative/', source: 'ScriptByAI', lang: 'en', category: 'tools', featured: true, tags: ['NanoClaw', '安全替代', '极简', '隔离'], }, { title: 'The Claw Wars — 11 个 OpenClaw 生态衍生项目全景图', desc: 'Blocmates 梳理 OpenClaw 生态中 11 个主要分支:NanoClaw、SecureClaw、KimiClaw 等,含代码审计视角', url: 'https://www.blocmates.com/articles/the-claw-wars', source: 'Blocmates', lang: 'en', category: 'tools', featured: true, tags: ['生态图谱', 'NanoClaw', 'SecureClaw', 'Kimi Claw'], }, // -- Deep Dive (Security) -- { title: 'Microsoft Security Blog — 安全运行 OpenClaw:身份、隔离与运行时风险', desc: 'Microsoft 安全团队深度分析 OpenClaw 企业部署风险:内置安全控制不足、不受信任文本注入、Skill 执行威胁模型', url: 'https://www.microsoft.com/en-us/security/blog/2026/02/19/running-openclaw-safely-identity-isolation-runtime-risk/', source: 'Microsoft Security', lang: 'en', category: 'deep-dive', featured: true, tags: ['Microsoft', '安全', '企业', '威胁模型'], }, { title: 'SecurityWeek — SecureClaw 发布:OpenClaw 安全问题持续存在', desc: 'CVE-2026-25593 / 25475 已修复,Adversa AI 开发 SecureClaw 应对更系统性的安全隐患分析', url: 'https://www.securityweek.com/openclaw-security-issues-continue-as-secureclaw-open-source-tool-debuts/', source: 'SecurityWeek', lang: 'en', category: 'deep-dive', featured: true, tags: ['SecurityWeek', '安全', 'CVE', 'SecureClaw'], }, { title: 'The New Stack — NanoClaw:用极简代码回答 OpenClaw 的安全问题', desc: 'NanoClaw 设计哲学:OpenClaw 35 万行代码 vs NanoClaw 百行内核,最小代码面即最小攻击面', url: 'https://thenewstack.io/nanoclaw-minimalist-ai-agents/', source: 'The New Stack', lang: 'en', category: 'deep-dive', tags: ['NanoClaw', '极简主义', '安全架构', 'The New Stack'], }, { title: 'The New Stack — Anthropic:Claude 账号仍可运行 OpenClaw、NanoClaw 等', desc: 'Anthropic 澄清:Steinberger 加入 OpenAI 不影响现有 API 用户,NanoClaw 等分支同样受支持', url: 'https://thenewstack.io/anthropic-agent-sdk-confusion/', source: 'The New Stack', lang: 'en', category: 'deep-dive', tags: ['Anthropic', 'Claude', 'NanoClaw', 'API兼容'], }, // -- Deep Dive (Analysis) -- { title: 'Monday Morning — OpenClaw 的 Acqui-Hire:解读 AI 去向', desc: 'OpenAI 雇用 Steinberger 的深层逻辑:个人 AI Agent 作为平台入口,全文解读这次"非收购的收购"', url: 'https://mondaymorning.substack.com/p/openclaw-and-the-acqui-hire-that', source: 'Substack', lang: 'en', category: 'deep-dive', featured: true, tags: ['Acqui-hire', 'OpenAI', 'Substack', '行业分析'], }, { title: 'OpenClaw:从病毒式原型到 Agentic 基础设施', desc: 'Catalaize 深度解析:OpenClaw 三次品牌重塑(Clawdbot→Moltbot→OpenClaw)背后的战略意图与技术演进', url: 'https://catalaize.substack.com/p/openclaw-from-viral-prototype-to', source: 'Substack', lang: 'en', category: 'deep-dive', tags: ['品牌演变', '战略分析', '技术演进', 'Catalaize'], }, { title: 'GoodAI — OpenAI 收购 OpenClaw:工作流基础设施的价值迁移', desc: '分析 OpenAI 这步棋:OpenClaw 不是产品而是基础设施,Steinberger 加入让 OpenAI 获得下一代 Agent 编排能力', url: 'https://goodai.substack.com/p/openai-acquired-openclaw-why-workflow', source: 'Substack', lang: 'en', category: 'deep-dive', tags: ['工作流', '基础设施', 'OpenAI战略', 'Substack'], }, { title: '36氪 — OpenClaw 的火热与冷思考:重大问题与下一步发展', desc: '36氪深度报道:OpenClaw 的火热背后,国内开发者如何基于它开发职场 AI 助手,以及需要冷静看待的问题', url: 'https://36kr.com/p/3671941309260675', source: '36氪', lang: 'zh', category: 'deep-dive', featured: true, tags: ['36氪', '国内分析', '职场AI', '冷思考'], }, // -- Use Cases -- { title: 'Medium — 10 件人们用 OpenClaw 真实构建的疯狂项目', desc: '真实案例集:AI 驱动商业、自动化代码、生活管理到涉及真实资金的自主决策,OpenClaw 实战边界报告', url: 'https://medium.com/@alexrozdolskiy/10-wild-things-people-actually-built-with-openclaw-e18f487cb3e0', source: 'Medium', lang: 'en', category: 'use-cases', featured: true, tags: ['真实案例', '自主决策', '商业化', 'Medium'], }, { title: 'Medium — 4 分钟部署 OpenClaw:$5 服务器帮我打理一切', desc: '用户真实体验:WhatsApp 一条消息清 200+ 封邮件,Telegram 监控所有 GitHub Repo,cron 任务口述即可配置', url: 'https://medium.com/@rentierdigital/i-deployed-my-own-openclaw-ai-agent-in-4-minutes-it-now-runs-my-life-from-a-5-server-8159e6cb41cc', source: 'Medium', lang: 'en', category: 'use-cases', tags: ['$5服务器', '邮件自动化', '真实体验', 'Medium'], }, // -- Skill Dev -- { title: 'DEV Community — 2026 最佳 OpenClaw Skills:安全可靠高价值精选', desc: '实用指南:如何评估 Skills 的安全性,精选高价值低风险的 2026 年 ClawHub 技能推荐列表', url: 'https://dev.to/curi0us_dev/best-openclaw-skills-for-2026-safe-high-impact-picks-2fjd', source: 'DEV Community', lang: 'en', category: 'skill-dev', featured: true, tags: ['技能推荐', '安全评估', '2026精选', 'DEV'], }, // -- Deep Dive (For Developers) -- { title: 'DEV Community — OpenClaw for Developers:构建 Solo-Dev 公司', desc: 'Steinberger 加入 OpenAI 是范式信号:OpenClaw 自动化 90% 重复性工作,助力一个人开公司', url: 'https://dev.to/shehzan/openclaw-for-developers-building-solo-dev-companies-2o6g', source: 'DEV Community', lang: 'en', category: 'deep-dive', tags: ['Solo-Dev', '自动化', '开发者', 'DEV'], }, { title: 'DEV Community — 2026 年 10 大新兴 OpenClaw 项目与 AI Agent 未来', desc: 'OpenClaw 生态新兴项目盘点:NanoClaw、SecureClaw、KimiClaw 等及 Agent 未来趋势分析', url: 'https://dev.to/chx381/top-10-emerging-openclaw-projects-and-the-future-of-ai-agents-in-2026-3f8d', source: 'DEV Community', lang: 'en', category: 'deep-dive', tags: ['生态项目', '未来趋势', '2026', 'DEV'], }, // -- Getting Started (Security-Aware) -- { title: 'Substack — OpenClaw 安全使用指南 2026:如何在不失控的情况下使用 AI Agent', desc: '面向普通用户的安全指南:"ChatGPT 是透过窗子对话,OpenClaw 是邀请人进家,给他每个抽屉的钥匙"', url: 'https://modernmomplaybook.substack.com/p/openclaw-security-guide-2026-how', source: 'Substack', lang: 'en', category: 'getting-started', tags: ['安全指南', '新手', '风险意识', 'Substack'], }, // -- Video (New Week) -- { title: 'YouTube — OpenClaw Full Course:Set Up & Deploy Your Own AI Agent', desc: '最新全课程:从理解 OpenClaw 作为自主 AI 编排层,到完整部署和功能使用的系统化教学', url: 'https://www.youtube.com/watch?v=sO6NSSOWDO0', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['YouTube', '全课程', '系统化', '最新'], }, { title: 'YouTube — My Multi-Agent Team with OpenClaw(Mac Mini 构建 4 Agent 商业团队)', desc: '订购 Mac Mini 专跑 OpenClaw,搭建 4 个 AI Agent 协作团队运营业务,架构和决策全复盘', url: 'https://www.youtube.com/watch?v=bzWI3Dil9Ig', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['YouTube', 'Mac Mini', '4 Agent', '商业团队'], }, { title: 'YouTube — I Built an AI Agent That Hacks for Me:OpenClaw + Kali Linux', desc: '安全研究向:用 OpenClaw 在 Kali Linux 云服务器上构建全自主 AI 黑客 Rig,演示合法渗透测试场景', url: 'https://www.youtube.com/watch?v=C5ir_rQ4L4g', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', 'Kali Linux', '安全研究', '渗透测试'], }, // -- Bilibili (This Week) -- { title: 'B站 — OpenClaw 多 Agent 高级玩法!Token 消耗减半', desc: '不同任务分配不同模型,独立 Session + 独立记忆 + 独立工作空间,解锁正确多 Agent 使用姿势', url: 'https://www.bilibili.com/video/BV1dqffBMEcg/', source: 'Bilibili', lang: 'zh', category: 'video', featured: true, tags: ['B站', '多Agent', 'Token优化', '进阶'], }, { title: 'B站 — MiniMax M2.5 接入 OpenClaw 深度实测:10B 激活参数全栈开发', desc: '100TPS 推理速度实测:MiniMax M2.5 接入 OpenClaw,几轮对话搞定全栈项目,性价比分析', url: 'https://www.bilibili.com/video/BV1SNcqziEwo/', source: 'Bilibili', lang: 'zh', category: 'video', tags: ['B站', 'MiniMax', 'M2.5', '性价比'], }, { title: 'B站 — Kimi 发布 Kimi Claw,让 AI 在飞书里 7×24 小时替你打工', desc: '零基础上手原生 OpenClaw:Kimi Claw 发布,Moonshot 云端托管,接入飞书实现全天候自动化工作', url: 'https://www.bilibili.com/video/BV119ZtBAEe3/', source: 'Bilibili', lang: 'zh', category: 'video', featured: true, tags: ['B站', 'Kimi Claw', '飞书', '7×24', 'Moonshot'], }, { title: 'B站 — 超简单!5 分钟安装 OpenClaw 中文版', desc: 'OpenClaw 中文版保姆级教程,5 分钟轻松搞定,配合喂饭级操作文档,小白友好', url: 'https://www.bilibili.com/video/BV1SucTzWEiL/', source: 'Bilibili', lang: 'zh', category: 'video', tags: ['B站', '中文版', '5分钟', '小白友好'], }, { title: 'B站 — 上手 OpenClaw 的硬件/软件成本有多高?三种设备实测对比', desc: '实测对比:服务器/Mac Mini/本地 PC 三种运行方案,AI 订阅成本横评,帮你选最性价比方案', url: 'https://www.bilibili.com/video/BV1fJZjBdEov/', source: 'Bilibili', lang: 'zh', category: 'use-cases', featured: true, tags: ['B站', '成本对比', '硬件选型', '性价比'], }, // -- Reddit (Community Discussions) -- { title: 'Reddit r/LocalLLaMA — 有人在真正使用 OpenClaw 吗?', desc: 'r/LocalLLaMA 真实用户讨论:本地 LLM 用户的 OpenClaw 实际使用体验,含 Steinberger 加入 OpenAI 的分析', url: 'https://www.reddit.com/r/LocalLLaMA/comments/1r5v1jb/anyone_actually_using_openclaw/', source: 'Reddit', lang: 'en', category: 'use-cases', tags: ['Reddit', 'LocalLLaMA', '真实体验', '本地LLM'], }, { title: 'Reddit r/SelfHosting — NanoClaw vs OpenClaw:安全意识用户如何选?', desc: 'r/SelfHosting 讨论:从权限处理和安全架构角度对比 NanoClaw 与 OpenClaw,自托管社区真实建议', url: 'https://www.reddit.com/r/SelfHosting/comments/1r7x5u6/nanoclaw_vs_openclaw/', source: 'Reddit', lang: 'en', category: 'deep-dive', tags: ['Reddit', 'NanoClaw', '对比选型', '自托管'], }, // ============ New — Week of 2026-02-24 ============ // -- Official (Changelog & Newsletter) -- { title: 'OpenClaw Newsletter — 2026-02-20(v2026.2.19 Apple Watch + 安全加固)', desc: '官方周刊:v2026.2.19 新增 Apple Watch 伴侣 App(收件箱 UI、通知中继、Gateway 指令)+ 史上最大安全加固补丁,含 openclaw acp --token-file/--password-file 和 exec 沙箱边界修复', url: 'https://buttondown.com/openclaw-newsletter/archive/openclaw-newsletter-2026-02-20/', source: 'OpenClaw Newsletter', lang: 'en', category: 'official', featured: true, tags: ['官方周刊', 'v2026.2.19', 'Apple Watch', '安全加固'], }, { title: 'MeetNeura — OpenClaw 2026.2.21: Gemini 3.1 & GLM-5 Integration', desc: 'v2026.2.21 功能全解析:Gemini 3.1 和 GLM-5 正式接入,Token 计数修复、记忆管理改进、嵌套子 Agent 处理优化', url: 'https://blog.meetneura.ai/openclaw-2026-2-21/', source: 'MeetNeura', lang: 'en', category: 'official', featured: true, tags: ['v2026.2.21', 'Gemini 3.1', 'GLM-5', '版本追踪'], }, { title: 'OpenClaw v2026.2.19 深度解读:Apple Watch 功能 + 大规模安全加固', desc: 'v2026.2.19 深度解读:Apple Watch 伴侣 App 让 AI 自动化延伸到手腕,同时这是项目史上安全补丁最密集的一次发版', url: 'https://openclawlaunch.com/news/openclaw-v2026-2-19-apple-watch-security', source: 'OpenClaw Launch', lang: 'en', category: 'official', tags: ['v2026.2.19', 'Apple Watch', '安全修复', '版本解读'], }, { title: 'NewReleases.io — OpenClaw v2026.2.21 发布说明(Gemini 3.1 + Doubao)', desc: 'v2026.2.21 完整 changelog:Gemini 3.1、GLM-5、Doubao(Volcano Engine/BytePlus)提供商接入,每账户/频道 defaultTo 路由回退机制', url: 'https://www.gradually.ai/en/changelogs/openclaw/', source: 'gradually.ai', lang: 'en', category: 'official', tags: ['v2026.2.21', 'Gemini 3.1', 'Doubao', 'Volcano Engine', '版本追踪'], }, // -- Deep Dive (Version Analysis) -- { title: 'Julian Goldie — OpenClaw 2026.2.19 Update: Power, Security & Speed', desc: '全面解读 v2026.2.19:Apple Watch 功能带来 AI 自动化新入口,安全加固细节分析和对日常工作流的实际影响', url: 'https://juliangoldie.com/openclaw-2026-2-19-update/', source: 'Julian Goldie', lang: 'en', category: 'deep-dive', tags: ['v2026.2.19', 'Apple Watch', '安全加固', '工作流'], }, { title: 'Atal Upadhyay — OpenClaw 2026.2.19 技术深度剖析与安全分析', desc: 'v2026.2.19 全面技术指南:架构哲学、Apple Watch 集成机制、exec 沙箱边界修复、ACP 令牌文件支持的深度解读', url: 'https://atalupadhyay.wordpress.com/2026/02/21/openclaw-2026-2-19-technical-deep-dive-security-analysis/', source: 'Atal Upadhyay', lang: 'en', category: 'deep-dive', featured: true, tags: ['v2026.2.19', '技术分析', 'Apple Watch', 'exec沙箱', 'ACP'], }, // -- Deep Dive (Major Media / Industry Analysis) -- { title: 'VentureBeat — OpenAI 收购 OpenClaw 标志 ChatGPT 时代落幕', desc: 'VentureBeat 深度分析:Steinberger 加入 OpenAI 标志 AI 从"聊天工具"迈向"自主 Agent",重新定义个人计算范式的历史节点', url: 'https://venturebeat.com/technology/openais-acquisition-of-openclaw-signals-the-beginning-of-the-end-of-the', source: 'VentureBeat', lang: 'en', category: 'deep-dive', featured: true, tags: ['VentureBeat', 'OpenAI', 'ChatGPT时代', '行业分析', '里程碑'], }, { title: 'VentureBeat — Runlayer 为大型企业提供安全 OpenClaw Agentic 能力', desc: 'Runlayer 发布企业级 OpenClaw 安全封装方案:权限管控、审计日志、合规部署,面向拒绝公开部署 OpenClaw 的大型企业', url: 'https://venturebeat.com/orchestration/runlayer-is-now-offering-secure-openclaw-agentic-capabilities-for-large', source: 'VentureBeat', lang: 'en', category: 'deep-dive', featured: true, tags: ['VentureBeat', '企业安全', 'Runlayer', '合规部署'], }, { title: 'WIRED — Meta 和科技公司以安全顾虑限制 OpenClaw 使用', desc: 'WIRED 最新报道:Meta 等大型科技公司因安全担忧对内部使用 OpenClaw 设置限制,但"AI 赚钱潜力"让他们不敢完全禁止', url: 'https://www.wired.com/story/openclaw-banned-by-tech-companies-as-security-concerns-mount/', source: 'WIRED', lang: 'en', category: 'deep-dive', featured: true, tags: ['WIRED', '安全限制', 'Meta', '企业', '最新'], }, { title: 'The Hacker News — Cline CLI 2.3.0 供应链攻击:自动安装 OpenClaw 到开发者系统', desc: '2026-02-17 凌晨攻击者利用泄露 npm token 发布恶意 cline@2.3.0,在数千开发者系统悄悄安装 OpenClaw,OpenClaw 社区需警惕非官方安装路径', url: 'https://thehackernews.com/2026/02/cline-cli-230-supply-chain-attack.html', source: 'The Hacker News', lang: 'en', category: 'deep-dive', featured: true, tags: ['安全', '供应链攻击', 'npm', 'Cline CLI', '开发者警告'], }, { title: 'Medium — OpenClaw 安全噩梦:为什么开发者正迁移到 NanoClaw', desc: 'CVE-2026-25253(一键 RCE)+ 数千暴露实例 + 明文凭证泄漏:详述 OpenClaw 安全问题,15 分钟 NanoClaw 迁移完整指南', url: 'https://medium.com/@anilkalm788/openclaw-security-nightmare-nanoclaw-53d6ea843384', source: 'Medium', lang: 'en', category: 'deep-dive', featured: true, tags: ['安全', 'NanoClaw迁移', 'CVE', 'RCE', '开发者'], }, { title: "Medium — OpenClaw's Founder Joined OpenAI: That Changes the Agent Story in 2026", desc: 'Steinberger 加入 OpenAI 的深层影响:Agent 软件正在成熟,编排灵活性与生产可靠性如何结合,2026 年赢家策略分析', url: 'https://medium.com/@ryanshrott/openclaws-founder-joined-openai-that-changes-the-agent-story-in-2026-750dccead766', source: 'Medium', lang: 'en', category: 'deep-dive', tags: ['Medium', 'OpenAI', 'Agent成熟', '行业分析', '2026'], }, // -- Getting Started -- { title: 'AlphaTechFinance — OpenClaw 完整 2026 指南:本地 AI Agent、安装、用例与安全风险', desc: '多维度全面指南:本地优先 AI Agent 安装、macOS/Windows 配置、主动式财务监控等用例,以及安全风险评估清单', url: 'https://alphatechfinance.com/productivity-app/openclaw-ai-agent-2026-guide/', source: 'AlphaTechFinance', lang: 'en', category: 'getting-started', featured: true, tags: ['完整指南', '本地优先', '用例', '安全', '2026'], }, { title: 'The Neuron AI — OpenClaw 设置指南:如何构建你的 AI Agent 团队', desc: 'QMD 记忆后端配置(v2026.2.13+)、多 Agent 团队架构、OpenAI 接管后的最新动态,实用的新手 + 进阶用户指南', url: 'https://www.theneuron.ai/explainer-articles/openclaw-personal-ai-agent-setup-guide-an-use-cases-february-2026/', source: 'The Neuron AI', lang: 'en', category: 'getting-started', featured: true, tags: ['QMD记忆', '多Agent团队', '基金会', '2026最新'], }, { title: 'Foxes Sell Faster — How I Built My Own AI Agent: Complete 2026 Tutorial', desc: '零命令行基础也能看懂:从 OpenClaw 安装到真实商业场景落地的完整图文教程,含步骤截图和踩坑经验', url: 'https://www.foxessellfaster.com/blog/openclaw-setup-guide-how-i-built-my-own-ai-agent-complete-2026-tutorial/', source: 'Foxes Sell Faster', lang: 'en', category: 'getting-started', tags: ['零基础', '商业场景', '图文', '2026'], }, { title: 'Medium — I Built an AI Agent That Works While I Sleep(Moltbook + OpenClaw 教程)', desc: 'Moltbook 社交网络 + OpenClaw 组合玩法:让 AI 拥有自己的人设、建立粉丝群体,7×24 小时代劳工作的完整配置教程', url: 'https://archive.ph/db36o', source: 'Medium', lang: 'en', category: 'use-cases', featured: true, tags: ['Moltbook', 'AI人设', '自主运营', '7×24'], }, // -- Skills / Tools (New Releases) -- { title: 'Genviral 发布 OpenClaw 社交媒体自动化技能(覆盖六大平台)', desc: 'Genviral 发布原生 OpenClaw Skill:支持 X/Twitter、Instagram、LinkedIn、Facebook、TikTok、YouTube 六大平台内容自动化发布,200,000+ Stars 社区首选工具之一', url: 'https://www.manilatimes.net/2026/02/23/tmt-newswire/plentisoft/genviral-releases-openclaw-skill-to-automate-social-media-content-across-six-platforms/2282684', source: 'Manila Times', lang: 'en', category: 'skill-dev', featured: true, tags: ['Genviral', '社交媒体', '六平台', '自动发布', '新技能'], }, // -- Use Cases -- { title: 'Simplified — Top 10 OpenClaw Use Cases in 2026: What People Actually Do With It', desc: '10 个真实使用场景:从个人生产力到业务自动化,涵盖电子邮件处理、日历管理、代码审查、财务监控等,附安全注意事项', url: 'https://simplified.com/blog/automation/top-openclaw-use-cases', source: 'Simplified', lang: 'en', category: 'use-cases', tags: ['10场景', '生产力', '业务自动化', '安全注意'], }, // -- Video (This Week) -- { title: 'YouTube — OpenClaw Setup Tutorial With New Use Cases 2026(TheAIGrid)', desc: 'TheAIGrid 出品:最新版 OpenClaw 安装教程 + 全新用例演示,含 Hostinger 一键部署,Skool 社区学习资源', url: 'https://www.youtube.com/watch?v=1c_9tuQdkLY', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['YouTube', 'TheAIGrid', '用例演示', '最新', '2026'], }, { title: 'YouTube — New FREE OpenClaw Update! What Changed(Feb 2026)', desc: '最新免费更新速览:新功能演示、OpenClaw 基金会过渡后的发展方向,AI 利润社区实战经验分享', url: 'https://www.youtube.com/watch?v=mBwDIYd2Tso', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', '版本更新', '免费功能', '最新'], }, { title: 'YouTube — OpenClaw Tutorial for Beginners 2026(Step-By-Step)', desc: '2026 年最新初学者分步教程:从零开始到自信运行 OpenClaw,语速适中、截图清晰、适合完全新手', url: 'https://www.youtube.com/watch?v=bUjbtuMlFKg', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', '初学者', '分步教程', '2026最新'], }, // ============ New — Week of 2026-02-25 ============ // -- Official (v2026.2.23 Release) -- { title: 'CyberSecurity News — OpenClaw 2026.2.23:安全加固 + Claude Opus 4.6 支持', desc: 'OpenClaw 215K+ Stars 项目发布 v2026.2.23:修复多个安全漏洞,新增 Claude Opus 4.6 支持,SSRF 策略重大变更——浏览器默认切换到 "trusted-network" 模式,升级前须用 `openclaw doctor --fix` 迁移旧配置', url: 'https://cybersecuritynews.com/openclaw-2026-2-23-released/', source: 'CyberSecurity News', lang: 'en', category: 'official', featured: true, tags: ['v2026.2.23', 'Claude Opus 4.6', 'SSRF', '安全修复', '版本追踪'], }, { title: 'NewReleases.io — OpenClaw v2026.2.22-beta.1 发布说明', desc: 'v2026.2.22-beta.1 细节:Gateway 重启循环边界情况修复,bootstrap 检测显式化,`openclaw.mjs -> dist/entry.js` 引导路径锁收紧,重启回归覆盖率提升', url: 'https://newreleases.io/project/github/openclaw/openclaw/release/v2026.2.22-beta.1', source: 'NewReleases.io', lang: 'en', category: 'official', tags: ['v2026.2.22-beta', 'Gateway重启', 'bootstrap', '版本追踪'], }, // -- Deep Dive (Security) -- { title: 'Bitdoze — OpenClaw 安全指南:CVE-2026-25253、恶意技能与 40+ 修复', desc: '2026.2.22 / 2026.2.23 安全修复全集:执行审批系统多个绕过路径披露,ClawHub 恶意技能防护,含最新版本 CHANGELOG 对照安全加固清单', url: 'https://www.bitdoze.com/openclaw-security-guide/', source: 'Bitdoze', lang: 'en', category: 'deep-dive', featured: true, tags: ['安全指南', 'CVE-2026-25253', '执行审批绕过', '40+修复', 'CHANGELOG'], }, { title: 'Valletta Software — OpenClaw 2026:架构、部署与技能安全实践者指南', desc: '196K+ GitHub Stars 背景下的实践者指南:本地优先 Gateway 原理、安装命令对照表、ClawHub 供应链风险(341+ 已确认恶意技能)及团队安全部署加固清单', url: 'https://vallettasoftware.com/blog/post/openclaw-2026-guide', source: 'Valletta Software', lang: 'en', category: 'deep-dive', featured: true, tags: ['架构', '196K Stars', '供应链风险', '安全清单', '实践者'], }, // -- Getting Started -- { title: 'Medium — What is OpenClaw: Open-Source AI Agent in 2026(Setup + Features)', desc: '社区成长视角入门:Skills 注册表爆炸式增长、每日新增集成、OpenClaw 如何成为 2026 年真正的个人自主 AI Agent 平台,含安装路径和主要功能速览', url: 'https://archive.ph/BSrZG', source: 'Medium', lang: 'en', category: 'getting-started', tags: ['2026入门', '社区生态', '自主Agent', '功能概览'], }, // ============ New — Week of 2026-02-26 ============ // -- Deep Dive (Security - Critical) -- { title: 'Trend Micro — 恶意 OpenClaw Skills 传播 Atomic macOS Stealer', desc: 'Trend Micro 威胁研究:39 个恶意 ClawHub 技能伪装成合法 CLI 工具,实为 Atomic macOS Stealer,受害者 SSH 密钥、浏览器密码和加密钱包遭窃', url: 'https://www.trendmicro.com/en_us/research/26/b/openclaw-skills-used-to-distribute-atomic-macos-stealer.html', source: 'Trend Micro', lang: 'en', category: 'deep-dive', featured: true, tags: ['Trend Micro', '安全', 'Atomic Stealer', 'macOS', '恶意技能'], }, { title: 'Awesome Agents — ClawHub #1 技能竟是恶意软件:供应链攻击全内幕', desc: '深度调查:1,184 个恶意技能窃取 SSH Key、加密钱包和浏览器密码,单个攻击者上传 677 个恶意包,ClawHub 供应链攻击完整时间线', url: 'https://awesomeagents.ai/news/openclaw-clawhub-malware-supply-chain/', source: 'Awesome Agents', lang: 'en', category: 'deep-dive', featured: true, tags: ['供应链攻击', '1184恶意包', 'SSH密钥', '加密钱包', '必读'], }, { title: 'OpenClaw Review 2026: Can This Viral AI Agent Actually Make You Money?', desc: '全面综述评测:从 Clawdbot 到 OpenClaw 的混乱历史、386 个恶意技能事件、Trend Micro/Bitsight 安全报告梳理,以及真实商业变现可行性分析', url: 'https://marksinsights.com/openclaw/', source: "Mark's Insights", lang: 'en', category: 'deep-dive', tags: ['评测', '商业变现', '安全历史', '综合分析'], }, { title: 'DEV Community — AI Agents 终极指南 2026:OpenClaw vs Claude Cowork vs Claude Code', desc: '三大 AI Agent 平台深度横评:持续记忆与主动性、技能扩展、MCP 集成,帮助开发者在不同场景下选择正确的 Agent 框架', url: 'https://dev.to/tech_croc_f32fbb6ea8ed4/the-ultimate-guide-to-ai-agents-in-2026-openclaw-vs-claude-cowork-vs-claude-code-395h', source: 'DEV Community', lang: 'en', category: 'deep-dive', featured: true, tags: ['Agent对比', 'Claude Code', '框架选型', '2026', 'DEV'], }, // -- Skill Dev -- { title: 'Apiyi — ClawHub.ai 解码:220K Stars 开源 Agent 的 3000+ 技能注册表深度指南', desc: 'ClawHub.ai 生态全景:技能分类体系、安全安装原则、2026 年热门精选技能推荐,以及 Steinberger 加入 OpenAI 后基金会维护路线图', url: 'https://help.apiyi.com/en/clawhub-ai-openclaw-skills-registry-guide-en.html', source: 'Apiyi', lang: 'en', category: 'skill-dev', featured: true, tags: ['ClawHub', '3000+技能', '安全安装', '生态全景', '220K Stars'], }, // -- Official (Version Tracking) -- { title: 'Releasebot — OpenClaw 发版追踪:2026 年 2 月更新日志', desc: 'v2026.2.23/2026.2.24 自动更新追踪:openclaw update --dry-run 预览命令、内置自动更新器(update.auto. 默认关闭)、多语言停止指令扩展(ZH/JP/AR 等)', url: 'https://releasebot.io/updates/openclaw', source: 'Releasebot', lang: 'en', category: 'official', tags: ['版本追踪', 'v2026.2.24', '自动更新', '多语言'], }, // -- Getting Started -- { title: 'NRI Globe — How to Use OpenClaw as Your Personal AI Assistant: Ultimate 2026 Guide', desc: '2026 全面使用指南:安装配置、功能介绍、自动化使用技巧和真实用例,面向希望打造 24/7 个人 AI 助手的普通用户', url: 'https://nriglobe.com/tech-news/how-to-use-openclaw-personal-ai-assistant-2026/', source: 'NRI Globe', lang: 'en', category: 'getting-started', tags: ['完整指南', '24/7助手', '使用技巧', '2026'], }, { title: 'OpenClaw Index — Claude Opus 4.6 大升级:ClawdBot 与 Claude Code 完整指南', desc: 'Claude Opus 4.6 在 ClawdBot 和 Claude Code 中的增强规划能力、Agentic 编码改进,含完整设置指南和进阶 AI 开发工作流', url: 'https://openclawindex.com/learn/claude-opus-46-is-a-massive-upgrade-for-clawdbot-and-claude-code-full-guide', source: 'OpenClaw Index', lang: 'en', category: 'getting-started', tags: ['Claude Opus 4.6', 'Claude Code', 'Agentic编码', '进阶'], }, // -- Use Cases -- { title: 'Reddit — Full Tutorial: How to Build an OpenClaw Business That Makes $4,000 a Week', desc: 'Reddit r/ArtificialInteligence 热门帖:Nat Eliason 35 分钟完整教程,从 Agent 设置到构建每周 $4000 收入的 OpenClaw 自动化业务,真实可操作', url: 'https://www.reddit.com/r/ArtificialInteligence/comments/1rbp25j/full_tutorial_how_to_build_an_openclaw_business/', source: 'Reddit', lang: 'en', category: 'use-cases', featured: true, tags: ['Reddit', '商业变现', '$4000/周', 'Nat Eliason', '实战'], }, // -- Video (This Week) -- { title: 'YouTube — How to Create Multiple Agents in Clawdbot(2026 Tutorial)', desc: '多 Agent 创建全流程:openclaw agents add、openclaw configure 命令详解,附完整 SOP 文档和 GitHub 模板下载', url: 'https://www.youtube.com/watch?v=EMBNyWVsEXc', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['YouTube', '多Agent', 'SOP文档', '2026最新'], }, { title: 'YouTube — SECURE OpenClaw Setup Guide(ClawdBot Tutorial)', desc: 'Hostinger VPS + Docker 安全部署教程:Gateway 安全配置、API 支出限制、权限控制,这是你安装 OpenClaw 前必看的安全版指南', url: 'https://www.youtube.com/watch?v=YCD2FSvj35I', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['YouTube', '安全部署', 'Docker', 'Hostinger', '必看'], }, { title: 'YouTube — How I Setup My ClawdBot as a Professional Developer(Insanely Powerful)', desc: 'Tech With Tim 专业开发者视角:如何把 OpenClaw 打造成极其强大的开发辅助系统,boot.dev 赞助,含完整配置思路', url: 'https://www.youtube.com/watch?v=NO-bOryZoTE', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', 'Tech With Tim', '专业开发者', '开发配置'], }, { title: 'YouTube — ClawdBot Beginner Guide 2026:完整安装 + Telegram & WhatsApp 集成', desc: '想在自己的笔记本上打造 JARVIS?完整 ClawdBot (OpenClaw) 入门教程:分步安装、Telegram/WhatsApp 双平台接入,适合零基础新手', url: 'https://www.youtube.com/watch?v=Glz-QQOOWXw', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', 'JARVIS', 'Telegram', 'WhatsApp', '零基础'], }, { title: 'YouTube — OpenClaw Full Tutorial for Beginners: How to Setup Your First AI Agent', desc: '全流程入门视频:从零开始完整安装 OpenClaw,涵盖专属设备部署、Telegram Bot 配置、Open Router 模型接入,适合 Agent 新手', url: 'https://www.youtube.com/watch?v=BoC5MY_7aDk', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', '第一个Agent', 'OpenRouter', 'Telegram Bot'], }, // ============ New — Week of 2026-02-27 ============ // -- Official (v2026.2.24 Newsletter) -- { title: 'OpenClaw Newsletter — 2026-02-25(v2026.2.24:多语言停止指令 + 226K Stars)', desc: '官方周刊:v2026.2.24 扩展自动停止短语(支持 ES/FR/ZH/HI/AR/JP/DE/PT/RU 多语言),新增 `do not do that` 作为停止触发词;Homebrew 30 天内 3,284 次安装,仓库突破 226,887 Stars', url: 'https://buttondown.com/openclaw-newsletter/archive/openclaw-newsletter-2026-02-25/', source: 'OpenClaw Newsletter', lang: 'en', category: 'official', featured: true, tags: ['官方周刊', 'v2026.2.24', '多语言', '226K Stars'], }, // -- Getting Started -- { title: 'DEV Community — What is OpenClaw AI in 2026? A Practical Guide for Developers', desc: 'OpenClaw 自托管 AI Agent 实用开发者指南:执行真实操作(文件、API、Telegram 等),全面覆盖安装、技能开发和安全配置', url: 'https://dev.to/laracopilot/what-is-openclaw-ai-in-2026-a-practical-guide-for-developers-25hj', source: 'DEV Community', lang: 'en', category: 'getting-started', tags: ['DEV', '开发者', '自托管', '实用指南', '2026'], }, { title: 'Medium — Understanding OpenClaw: Self-Hosted AI Agents on Cloud Infrastructure', desc: '云基础设施上的 OpenClaw 自托管指南:Ubuntu 22.04 实例部署、Node.js 18+ 安装、API Key 配置,以及安全组和 SSH 密钥管理', url: 'https://medium.com/@alexrozdolskiy/understanding-openclaw-self-hosted-ai-agents-on-cloud-infrastructure-28d28e4078f3', source: 'Medium', lang: 'en', category: 'getting-started', tags: ['Medium', 'Ubuntu', '云部署', 'Node.js', '安全组'], }, // -- Use Cases (Automation / Money-making) -- { title: 'Medium — 33 OpenClaw Automations That Make Money (2026 Guide)', desc: '33 个已测试的 OpenClaw 自动化方案,可在 30 分钟内配置完成并开始创收:收入生成、生产力提升、监控和业务工作流全覆盖', url: 'https://medium.com/@rentierdigital/33-openclaw-automations-you-can-set-up-in-30-minutes-that-start-making-you-money-tonight-f8c3b8a402f1', source: 'Medium', lang: 'en', category: 'use-cases', featured: true, tags: ['Medium', '33自动化', '创收', '30分钟', '实战'], }, { title: 'Medium — 21 Advanced OpenClaw Automations for Developers (2026)', desc: '进阶自动化方案:基础教程不提的 21 个玩法,n8n + Convex + Supabase 集成,在真实 VPS 上实测的时间节省数据', url: 'https://medium.com/@rentierdigital/21-openclaw-automations-nobody-talks-about-because-the-obvious-ones-already-broke-the-internet-3f881b9e0018', source: 'Medium', lang: 'en', category: 'use-cases', tags: ['Medium', '21进阶自动化', 'n8n', 'Convex', 'Supabase', 'VPS'], }, { title: 'Medium — OpenClaw with Free LLM: What Actually Works in 2026', desc: '免费/廉价 LLM 接入 OpenClaw 实测:Ollama、Groq、Mistral、OpenRouter,哪个能用、哪个崩掉,附最佳预算方案建议', url: 'https://medium.com/@rentierdigital/i-tried-running-clawdbot-with-a-free-llm-heres-what-happened-2b5d80cbf7f5', source: 'Medium', lang: 'en', category: 'use-cases', tags: ['Medium', '免费LLM', 'Ollama', 'Groq', 'OpenRouter', '预算方案'], }, // ============ New — Week of 2026-02-28 ============ // -- Official (v2026.2.25 / v2026.2.26) -- { title: 'Reddit r/myclaw — OpenClaw v2026.2.25 正式发布', desc: 'v2026.2.25 关键更新:Heartbeat DM 投递恢复、子 Agent 投递全面重构、Slack 线程会话修复、跨频道 Reaction 认证加固', url: 'https://www.reddit.com/r/myclaw/comments/1rf4zr0/openclaw_just_launched_v2026225/', source: 'Reddit', lang: 'en', category: 'official', featured: true, tags: ['v2026.2.25', 'Heartbeat', '子Agent', 'Slack', 'Reaction', '版本追踪'], }, { title: 'PatchBot — OpenClaw 补丁说明(含 v2026.2.26 External Secrets Management)', desc: 'v2026.2.26 重大新功能:External Secrets Management 完整工作流(audit/configure/apply/reload),运行时快照激活、严格 target-path 验证、安全迁移清洗', url: 'https://patchbot.io/ai/openclaw', source: 'PatchBot', lang: 'en', category: 'official', featured: true, tags: ['v2026.2.26', 'External Secrets', '安全', '版本追踪'], }, { title: 'Software Mirrors — OpenClaw 2026.2.26(版本信息与下载)', desc: '第三方软件镜像站收录最新 OpenClaw 2026.2.26,含版本历史和下载链接,便于追踪版本更新', url: 'https://www.software-mirrors.com/products/openclaw-formerly-moltbot-clawd-bot', source: 'Software Mirrors', lang: 'en', category: 'official', tags: ['v2026.2.26', '版本追踪', '下载镜像'], }, // -- Deep Dive (Security) -- { title: 'Cryptika — OpenClaw 2026.2.23 发布:安全加固与 AI 新特性', desc: 'Cryptika 网络安全媒体报道:215K+ Stars 的 OpenClaw 发布 v2026.2.23,SSRF 防护升级、Claude Opus 4.6 接入,breaking change 详解和升级指南', url: 'https://www.cryptika.com/openclaw-releases-2026-2-23-released-with-security-updates-and-new-ai-features/', source: 'Cryptika', lang: 'en', category: 'deep-dive', tags: ['v2026.2.23', '安全', 'SSRF', 'Cryptika', 'Claude Opus 4.6'], }, // -- Video (Latest) -- { title: 'YouTube — OpenClaw / ClawdBot Tutorial for Beginners | Setup in 10 Minutes', desc: 'Hostinger 一键安装器快速上手教程:从申请 Bot Token 到第一次对话,全程 10 分钟完成 OpenClaw 部署', url: 'https://www.youtube.com/watch?v=OU63DGuEggg', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['YouTube', '10分钟', 'Hostinger', '入门', '最新'], }, { title: 'YouTube — Your Clawdbot Broke? Watch This to Fix It(2026 故障排除)', desc: 'Skool 社区出品:OpenClaw 常见故障全解决,含 Claude Code 配置修复,附终端命令速查和 GitHub 模板,是装完跑不起来时的第一选择', url: 'https://www.youtube.com/watch?v=pmbftRnW4Yc', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['YouTube', '故障排除', '修复', 'Skool', '2026最新'], }, // ============ New — Week of 2026-03-01 ============ // -- Video -- { title: 'YouTube — OpenClaw: Complete Beginners Guide! (2026)', desc: '完整初学者指南,含 AI 提示词模板和商业转化实战配置,适合从零开始搭建 24/7 AI 助手', url: 'https://www.youtube.com/watch?v=BI034QtdmTo', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['YouTube', '初学者', '2026', '完整教程'], }, { title: 'YouTube — The Ultimate Beginners Guide To OpenClaw Setup!', desc: '家庭自动化视角的 OpenClaw 入门:如何用 OpenClaw 实现生活自动化,改变日常生活的完整上手指南', url: 'https://www.youtube.com/watch?v=Qtoum-9SJ9g', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', '家庭自动化', '生活自动化', '入门'], }, { title: 'YouTube — Setup OpenClaw with Ollama on Ubuntu (Zero API Cost 2026)', desc: '完全免费方案:Ubuntu Linux 上接入 Ollama 本地模型运行 OpenClaw,零 API 费用,含完整步骤演示', url: 'https://www.youtube.com/watch?v=_dzz5sJe-Ug', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['YouTube', 'Ollama', 'Ubuntu', '免费', '本地模型', '最新'], }, { title: 'YouTube — The EASIEST & SAFEST Way to Set Up OpenClaw For Beginners (2026)', desc: 'MyClaw.ai 托管方案介绍:史上最简单且安全的 OpenClaw 部署方式,无需 VPS 或技术基础,适合完全新手', url: 'https://www.youtube.com/watch?v=LiyR2C6smjo', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', 'MyClaw', '托管', '最简单', '安全', '新手'], }, // -- Deep Dive -- { title: 'Vectra AI — From Clawdbot to OpenClaw: When Automation Becomes a Digital Backdoor', desc: 'Vectra AI 安全研究:Clawdbot → Moltbot → OpenClaw 演化轨迹深度分析,AI Agent 自动化如何成为潜在攻击面', url: 'https://www.vectra.ai/blog/clawdbot-to-moltbot-to-openclaw-when-automation-becomes-a-digital-backdoor', source: 'Vectra AI', lang: 'en', category: 'deep-dive', featured: true, tags: ['Vectra AI', '安全分析', '攻击面', '演化历史'], }, { title: 'Context Studios — The Complete OpenClaw Guide: Running an AI Agent in Production (2026)', desc: '生产环境实战全记录:从安装配置到多 Agent 工作流、浏览器自动化和 134 个 MCP 工具的完整运营指南', url: 'https://www.contextstudios.ai/blog/the-complete-openclaw-guide-how-we-run-an-ai-agent-in-production-2026', source: 'Context Studios', lang: 'en', category: 'deep-dive', featured: true, tags: ['生产环境', 'MCP', '多Agent', '浏览器自动化', '实战'], }, { title: 'Medium — From Clawdbot to OpenAI: What the OpenClaw Story Actually Tells Us', desc: '亲历者回顾:Clawdbot 爆火、品牌混乱、Steinberger 加入 OpenAI 的全过程,从社区视角理解 OpenClaw 这段历史的深层意义', url: 'https://medium.com/@cdcore/from-clawdbot-to-openai-what-the-openclaw-story-actually-tells-us-79e3d034f227', source: 'Medium', lang: 'en', category: 'deep-dive', tags: ['Medium', '历史回顾', '品牌演变', 'OpenAI', '社区视角'], }, // ============ New — Week of 2026-03-01(本次更新)============ // -- Deep Dive (Security - 0-Day) -- { title: 'The Hacker News — ClawJacked:恶意网站可通过 WebSocket 劫持本地 OpenClaw Agent', desc: 'ClawJacked 漏洞披露:攻击者利用本地 OpenClaw WebSocket(TCP 18789)实施 DNS 重绑定攻击,可搜索 Slack 历史、读私信、窃取文件并执行任意 Shell 命令;升级到 v2026.2.25+ 修复', url: 'https://thehackernews.com/2026/02/clawjacked-flaw-lets-malicious-sites.html', source: 'The Hacker News', lang: 'en', category: 'deep-dive', featured: true, tags: ['ClawJacked', '安全', 'WebSocket', 'DNS重绑定', 'v2026.2.25', '必读'], }, { title: 'CyberSecurity News — OpenClaw 0-Click 漏洞:恶意网站可无感劫持开发者本地 AI Agent', desc: '0-Click 漏洞详细分析:不需用户点击,浏览器访问恶意页面即触发本地 OpenClaw 实例被接管;同期披露日志中毒漏洞(公开实例 TCP 18789),立即升级至 v2026.2.25+', url: 'https://cybersecuritynews.com/openclaw-0-click-vulnerability/', source: 'CyberSecurity News', lang: 'en', category: 'deep-dive', featured: true, tags: ['0-Click漏洞', '安全', '日志中毒', 'v2026.2.25', '紧急升级'], }, // -- Deep Dive (Comparison & Analysis) -- { title: 'ClaudeFa.st — OpenClaw vs Claude Code: Complete Comparison Guide (2026)', desc: 'OpenClaw vs Claude Code 深度横评:持久记忆与主动性 vs 代码专精、技能扩展 vs MCP 生态、安全风险对比。Palo Alto Networks 称 OpenClaw 为"2026 年最大潜在内部威胁";包含适用场景决策树', url: 'https://claudefa.st/blog/tools/extensions/openclaw-vs-claude-code', source: 'ClaudeFa.st', lang: 'en', category: 'deep-dive', featured: true, tags: ['对比选型', 'Claude Code', 'Palo Alto', '安全风险', '决策指南'], }, { title: 'Medium CodeX — The Clawdbot Phenomenon: 为何 Mac Mini 全球断货?', desc: '社会现象深度报道:2026 年初苹果门店 Mac Mini 连续缺货,数万开发者为跑 OpenClaw 而抢购;还原这场"逃离大厂 AI 订阅"的集体行动,以及 OpenAI 收购 ClawdBot 的后续影响', url: 'https://medium.com/codex/why-thousands-are-buying-mac-minis-to-escape-big-tech-ai-subscriptions-forever-clawdbot-10c970c72404', source: 'Medium / CodeX', lang: 'en', category: 'deep-dive', tags: ['Mac Mini断货', '社会现象', '隐私优先', 'OpenAI', '深度报道'], }, // -- Use Cases -- { title: 'QuantoSei — OpenClaw AI 自动化:营销提效与商业变现完整指南', desc: '营销场景落地实战:OpenClaw 自动化内容发布、客户沟通和销售漏斗,含具体配置示例和收益测算,适合中小企业主和独立营销人', url: 'https://news.quantosei.com/2026/02/28/how-to-automate-marketing-with-openclaw-and-make-money/', source: 'QuantoSei', lang: 'en', category: 'use-cases', tags: ['营销自动化', '商业变现', '内容发布', '销售漏斗'], }, // Week of 2026-03-01 { title: 'TechCrunch — Meta 安全研究员发现 OpenClaw 隐患', desc: 'Meta AI 安全研究员分享其 OpenClaw 邮箱集成意外行为的经历', url: 'https://techcrunch.com/2026/02/23/a-meta-ai-security-researcher-said-an-openclaw-agent-ran-amok-on-her-inbox/', source: 'TechCrunch', lang: 'en', category: 'deep-dive', tags: ['安全', '案例'], }, { title: 'Raspberry Pi — 在树莓派上部署 OpenClaw', desc: '官方博客教程:将树莓派变成 AI Agent 硬件', url: 'https://www.raspberrypi.com/news/turn-your-raspberry-pi-into-an-ai-agent-with-openclaw/', source: 'Raspberry Pi', lang: 'en', category: 'getting-started', featured: true, tags: ['树莓派', '硬件', '部署'], }, { title: 'Fast Company — 我让 AI Agent 替我工作', desc: '记者亲身体验 OpenClaw 自动化工作流程,结果既惊喜又有些担忧', url: 'https://www.fastcompany.com/91495511/i-built-an-openclaw-ai-agent-to-do-my-job-for-me-results-were-surprising-scary', source: 'Fast Company', lang: 'en', category: 'use-cases', tags: ['体验', '自动化'], }, { title: 'Malwarebytes — OpenClaw 安全使用指南', desc: '安全厂商视角:OpenClaw 是什么,如何安全使用', url: 'https://www.malwarebytes.com/blog/news/2026/02/openclaw-what-is-it-and-can-you-use-it-safely', source: 'Malwarebytes', lang: 'en', category: 'deep-dive', tags: ['安全', '指南'], }, { title: 'MaxClaw — MiniMax 云托管 OpenClaw 教程', desc: '无需本地部署,一键在云端运行 OpenClaw(视频教程)', url: 'https://www.youtube.com/watch?v=Ka6J6XTHm-c', source: 'YouTube', lang: 'en', category: 'video', tags: ['云托管', 'MiniMax'], }, // Week of 2026-03-02 { title: "YouTube — Installing Skills from ClawHub — OpenClaw's App Store (Series Ep.4)", desc: '实战演示:ClawHub 是拥有 5700+ 社区技能的 OpenClaw「应用商店」,本集讲解如何浏览、安装技能,以及如何避免恶意技能', url: 'https://www.youtube.com/watch?v=2qwfvSmgHJs', source: 'YouTube', lang: 'en', category: 'video', tags: ['ClawHub', '技能安装', '入门系列'], }, { title: 'YouTube — OpenClaw Skills Explained in 1 Minute', desc: '1 分钟速懂 OpenClaw Skills:如何在 ClawHub 和 GitHub 找技能、一句话安装、如何避开恶意代码', url: 'https://www.youtube.com/watch?v=xFRRo9fo7Ko', source: 'YouTube', lang: 'en', category: 'video', tags: ['技能', 'ClawHub', '快速入门'], }, { title: 'YouTube — OpenClaw Tutorial for Beginners: How to Use & Set up OpenClaw (ClawdBot)', desc: '零基础入门教程:从注册 Telegram Bot 到完整部署 OpenClaw,配合 Hostinger VPS 一步步完成安装', url: 'https://www.youtube.com/watch?v=Fw4dTGWtE7M', source: 'YouTube', lang: 'en', category: 'getting-started', tags: ['入门', 'VPS', 'Telegram', 'Hostinger'], }, { title: 'Medium — Mastering OpenClaw: Your Ultimate Guide to Setting Up a Personal AI Assistant in 2026', desc: '手把手指南:自定义 Skills、调优速度、安全加固(VM 隔离 + 安全审计 + 禁止公开 Gateway)的最佳实践', url: 'https://medium.com/@vignarajj/mastering-openclaw-your-ultimate-guide-to-setting-up-a-personal-ai-assistant-in-2026-266d8c8e66fb', source: 'Medium', lang: 'en', category: 'getting-started', tags: ['Skills定制', '安全加固', '性能优化', '实战指南'], }, // Week of 2026-03-03 { title: 'New OpenClaw v2026.2.26: Secrets, Browser Control, Multi-DM & Android', desc: 'Reddit r/LocalLLM 社区对最新版本的详细讨论,涵盖 secrets 改进、浏览器控制优化、多 DM 支持和 Android 适配等核心变化。', url: 'https://www.reddit.com/r/LocalLLM/comments/1rimve1/new_openclaw_release_version_2026226_way_less/', source: 'Reddit r/LocalLLM', lang: 'en', category: 'official', tags: ['v2026.2.26', 'release', 'android', 'browser'], }, { title: 'OpenClaw on Android: Full Phone Setup Guide 2026', desc: '两种方案:通过 Termux 在 Android 本地运行 OpenClaw,或将手机作为远程实例的移动控制端。适合想随身携带 AI Agent 的用户。', url: 'https://vpn07.com/en/blog/2026-openclaw-android-phone-full-setup-guide.html', source: 'vpn07.com', lang: 'en', category: 'getting-started', tags: ['android', 'termux', 'mobile', 'setup'], }, { title: 'How to SetUp OpenClaw in 5 Minutes (Beginners Guide 2026)', desc: '面向初学者的 5 分钟快速上手视频,手把手演示从零开始部署 OpenClaw 的完整流程。', url: 'https://www.youtube.com/watch?v=NszZ2Ynbsxk', source: 'YouTube', lang: 'en', category: 'video', tags: ['beginner', 'setup', 'tutorial'], }, { title: 'How to Run OpenClaw on Android with Termux', desc: '详细的 Termux 安装步骤,10 分钟内让 OpenClaw 跑在 Android 手机上,突破复杂服务器配置的门槛。', url: 'https://medium.com/@monkeyo/how-to-run-openclaw-on-android-with-termux-b25d59402158', source: 'Medium', lang: 'en', category: 'getting-started', tags: ['android', 'termux', 'mobile'], }, // Week of 2026-03-05 { title: 'Adven Boost — OpenClaw Add Agent: 10 Easy Steps to Expand Your AI Workforce', desc: 'Step-by-step guide to adding and configuring multiple agents in OpenClaw, covering multi-agent communication mesh, inter-agent messaging, rate limiting, and performance monitoring with pre-configured blueprints.', url: 'https://advenboost.com/en/openclaw-add-agent-tutorial/', source: 'advenboost.com', lang: 'en', category: 'deep-dive', tags: ['multi-agent', 'agent configuration', 'automation', 'tutorial'], }, // Week of 2026-03-04 { title: 'heyuan110.com — OpenClaw 超详细上手教程:小白友好 + 老鸟技巧', desc: '从零到精通的完整中文教程,覆盖入门部署、多智能体协作、Skills 开发,兼顾小白与进阶用户,包含 Moltbot/Clawdbot/OpenClaw 演进历史梳理。', url: 'https://www.heyuan110.com/posts/ai/2026-02-12-openclaw-usage-tutorial/', source: 'heyuan110.com', lang: 'zh', category: 'getting-started', tags: ['中文教程', '小白入门', '多智能体', '进阶'], }, { title: 'CSDN — OpenClaw 从入门到进阶完整实战教程(2026 最新版)', desc: '251,000 字开源中文教程,16 章正文 + 4 个附录 + 66 个实战案例 + 50 余张配图,优先推荐腾讯云等国内部署方案,覆盖基础到进阶全流程。', url: 'https://blog.csdn.net/2301_81108348/article/details/158356909', source: 'CSDN', lang: 'zh', category: 'getting-started', tags: ['中文教程', '251000字', '实战案例', '腾讯云'], }, { title: 'OpenClaw Complete Tutorial 2026: Setup, Skills, Memory, and Architecture Explained', desc: 'In-depth guide covering OpenClaw architecture, markdown-based memory system, skills installation, and multi-agent workflows. A must-read for developers looking to understand how OpenClaw works under the hood.', url: 'https://pub.towardsai.net/openclaw-complete-guide-setup-tutorial-2026-14dd1ae6d1c2', source: 'Towards AI', lang: 'en', category: 'deep-dive', tags: ['architecture', 'memory', 'skills', '2026'], }, { title: 'OpenClaw On Windows | How to Open & Edit openclaw.json file & Restart Gateway', desc: 'Step-by-step tutorial for Windows users: editing openclaw.json config, restarting the gateway, and common troubleshooting tips for ClawdBot/MoltBot setups.', url: 'https://www.youtube.com/watch?v=xHiTd5ho3BA', source: 'YouTube', lang: 'en', category: 'video', tags: ['windows', 'config', 'gateway', 'setup'], }, { title: 'The Ultimate Guide to Setting Up and Using OpenClaw', desc: 'Comprehensive Substack guide covering multi-agent coordination, deterministic monitoring with cron, and cost-efficient token management strategies for OpenClaw deployments.', url: 'https://techie007.substack.com/p/the-ultimate-guide-to-setting-up', source: 'Substack', lang: 'en', category: 'deep-dive', tags: ['multi-agent', 'monitoring', 'deployment', 'cron'], }, { title: 'The ULTIMATE OpenClaw Setup Guide (Step-By-Step Install + Full Configuration Tutorial)', desc: 'Reddit community guide with step-by-step install instructions and full configuration walkthrough for OpenClaw, linking to a companion YouTube tutorial.', url: 'https://www.reddit.com/r/clawdbot/comments/1rkcwt4/the_ultimate_openclaw_setup_guide_stepbystep/', source: 'Reddit r/clawdbot', lang: 'en', category: 'getting-started', tags: ['setup', 'install', 'configuration', 'tutorial'], }, { title: 'The ULTIMATE OpenClaw Setup Guide 🦞 — r/OpenClawCentral', desc: 'Real-world OpenClaw workflows, VPS deployment, XDR bot configs, multi-agent coordination, and security integration best practices from the OpenClawCentral community.', url: 'https://www.reddit.com/r/OpenClawCentral/comments/1rko3mo/the_ultimate_openclaw_setup_guide/', source: 'Reddit r/OpenClawCentral', lang: 'en', category: 'getting-started', tags: ['VPS', 'multi-agent', 'security', 'deployment'], }, { title: 'Best ClawHub Skills: A Complete Guide', desc: 'DataCamp guide covering the best ClawHub skills for OpenClaw (formerly Clawdbot/Moltbot), with self-hosting setup and Claude integration on Mac via WhatsApp.', url: 'https://www.datacamp.com/blog/best-clawhub-skills', source: 'DataCamp', lang: 'en', category: 'getting-started', tags: ['ClawHub', 'skills', 'WhatsApp', 'Mac'], }, // ============ New — Week of 2026-03-10 ============ { title: "GitHub Releases — OpenClaw v2026.3.8", desc: "最新正式版发布:新增 backup create/verify、Brave web search llm-context、Talk silenceTimeoutMs,并修复 Telegram / Matrix / Feishu / Android 等多项问题。", url: "https://github.com/openclaw/openclaw/releases/tag/v2026.3.8", source: "GitHub Releases", lang: "en", category: "official", featured: true, tags: ["v2026.3.8", "版本更新", "backup", "Brave web search"], }, { title: "OpenClaw Newsletter — 2026-03-07", desc: "官方周刊:openclaw-cli 2026.3.2 上架 Homebrew,30 天 4,751 次安装;同时汇总输入校验、Telegram 重复消息等社区进展。", url: "https://buttondown.com/openclaw-newsletter/archive/openclaw-newsletter-2026-03-07/", source: "OpenClaw Newsletter", lang: "en", category: "official", featured: true, tags: ["官方周刊", "2026-03-07", "Homebrew", "社区动态"], }, { title: "Malwarebytes — Beware of fake OpenClaw installers, even if Bing points you to GitHub", desc: "安全预警:假冒 GitHub 安装仓库正在传播恶意 OpenClaw 安装器,提醒用户只使用官方源与官方安装路径。", url: "https://www.malwarebytes.com/blog/news/2026/03/beware-of-fake-openclaw-installers-even-if-bing-points-you-to-github", source: "Malwarebytes", lang: "en", category: "deep-dive", featured: true, tags: ["安全", "假安装器", "GitHub 仿冒", "必读"], }, { title: "AdvenBoost — OpenClaw Onboarding Quickstart vs. Manual: Easy Guide", desc: "对比 Quickstart 与手动部署两条路径:5 分钟向导式安装 vs 20–30 分钟服务器手动配置,适合新手与 VPS 用户。", url: "https://advenboost.com/openclaw-onboarding-quickstart", source: "AdvenBoost", lang: "en", category: "getting-started", featured: true, tags: ["Quickstart", "手动部署", "新手友好", "VPS"], }, { title: "GitHub — 哈喽!龙虾(Hello Claw)", desc: "DataWhale 出品的体系化中文开源教程:从领养第一只 Claw 到理解架构、Skills、平台接入与部署。", url: "https://github.com/datawhalechina/hello-claw", source: "GitHub", lang: "zh", category: "getting-started", featured: true, tags: ["中文教程", "DataWhale", "体系化", "开源教程"], }, { title: "博客园 — OpenClaw 中级到高级教程", desc: "中文进阶实战:覆盖记忆优化、网络搜索、云部署安全、微信/飞书接入、多 Agent 协作与心跳机制。", url: "https://www.cnblogs.com/Johny-zhao/p/19685861", source: "博客园", lang: "zh", category: "deep-dive", featured: true, tags: ["中文进阶", "多 Agent", "心跳机制", "飞书"], }, { title: "B站 — OpenClaw 从中级到高级完整教程", desc: "近期高热度中文视频教程:系统讲解记忆系统、Skills、多 Agent、服务器部署与微信/飞书接入。", url: "https://www.bilibili.com/video/BV1ZiNwzPEhP", source: "Bilibili", lang: "zh", category: "video", featured: true, tags: ["B站", "中文教程", "多 Agent", "Skills"], }, { title: "YouTube — OpenClaw Tutorial for Beginners (How to Set Up OpenClaw with ClawdBot)", desc: "最新英文入门视频:从安装到首次运行的完整上手流程,适合第一次部署 OpenClaw 的新用户。", url: "https://www.youtube.com/watch?v=GG_2C6Mr1Mw", source: "YouTube", lang: "en", category: "video", tags: ["YouTube", "入门", "安装", "最新"], }, // ============ New — Week of 2026-03-12 ============ { title: 'OpenClaw Newsletter — 2026-03-09', desc: '官方周刊:OpenClaw 超越 React 成为 GitHub Stars 第一的软件项目,并汇总当日社区动态与版本进展。', url: 'https://buttondown.com/openclaw-newsletter/archive/openclaw-newsletter-2026-03-09/', source: 'OpenClaw Newsletter', lang: 'en', category: 'official', featured: true, tags: ['官方周刊', '2026-03-09', '250K Stars', '社区动态'], }, { title: 'OpenClaw for Research and Content: 12 Workflows Shared in Early March 2026', desc: '梳理 12 个适合研究与内容团队复用的 OpenClaw 工作流,包括 AI 新闻室、日报、社区信号扫描与 repo-to-book 等场景。', url: 'https://clawsimple.com/en/blog/openclaw-research-content-workflows-2026', source: 'ClawSimple', lang: 'en', category: 'use-cases', tags: ['研究工作流', '内容生产', '日报', 'repo-to-book'], }, { title: 'OpenClaw 2026.3.8 Adds Backups, Better macOS Setup, and Smarter Web Search Tools', desc: '版本解读:聚焦 v2026.3.8 的 backup create/verify、改进的 macOS 安装体验,以及更强的 Web Search 工具链。', url: 'https://thedroidguy.com/openclaw-2026-3-8-adds-backups-better-macos-setup-and-smarter-web-search-tools-1271324', source: 'The Droid Guy', lang: 'en', category: 'deep-dive', tags: ['v2026.3.8', 'backup', 'macOS', 'web search'], }, { title: 'Meet OpenClaw: The AI assistant that broke every record – and started a security panic', desc: 'CGTN 报道:回顾 OpenClaw 冲上 250,000 GitHub Stars 的爆发式增长,同时总结研究人员对公开暴露实例与安全风险的警告。', url: 'https://news.cgtn.com/news/2026-03-11/OpenClaw-AI-tool-that-broke-every-record-and-caused-a-security-panic-1LpwvrIqQk8/p.html', source: 'CGTN', lang: 'en', category: 'deep-dive', featured: true, tags: ['CGTN', '250K Stars', '安全风险', '主流媒体'], }, // ============ New — Week of 2026-03-13 ============ { title: 'Linux 部署安装 OpenClaw 教程:从环境搭建到生产运行的完整指南', desc: '近期中文部署指南:从 Linux 环境准备、Node.js 安装到 Gateway 运行与飞书 / 钉钉接入,适合第一次在服务器上部署 OpenClaw 的用户。', url: 'https://www.fiveyoboy.com/articles/linux-deploy-openclaw-tutorial/', source: 'FiveYoBoy', lang: 'zh', category: 'getting-started', tags: ['Linux', '部署', '飞书', '钉钉', '2026-03'], }, { title: '部署 OpenClaw:开源 AI 个人助手从安装到 QQ 机器人接入', desc: '中文图文教程:从 npm 安装、onboard 初始化到 QQ 机器人接入,适合希望把 OpenClaw 接到国内聊天平台的用户。', url: 'https://catcat.blog/2026/03/deploy-openclaw-ai-assistant', source: '猫猫博客', lang: 'zh', category: 'channel-integration', tags: ['QQ', '国内平台', '安装', 'onboard', '2026-03'], }, { title: 'OpenClaw 教學:AI Agent 部署平台,1 分鐘上手完整指南(2026 更新)', desc: '繁体中文综述:对比官方桌面版、托管服务、腾讯云 / 阿里云 / GCP 与本地命令行等多种部署路径,适合快速选型。', url: 'https://grenade.tw/blog/openclaw-ai/', source: 'Grenade.tw', lang: 'zh', category: 'cloud-deploy', tags: ['繁中', '部署选型', '腾讯云', '阿里云', 'GCP'], }, { title: 'OpenClawd Releases Cloud-Hosted OpenClaw Platform Update as AI Agent Adoption Hits Record Levels Across Asia and North America', desc: 'OpenClawd 发布云托管平台更新,补充了近期云端托管 OpenClaw 的商业化路径与产品动态,可作为自建之外的部署参考。', url: 'https://finance.yahoo.com/news/openclawd-releases-cloud-hosted-openclaw-171000616.html', source: 'Yahoo Finance', lang: 'en', category: 'cloud-deploy', tags: ['托管平台', '云部署', 'OpenClawd', '2026-03'], }, // ============ New — Week of 2026-03-14 ============ { title: "MYGOM — Securely Setup OpenClaw Clawdbot in Minutes", desc: "安全优先的快速部署指南:覆盖主机选择、Docker 安装、API Key 保护与远程部署前的准备清单,适合想先把风险控住的新手。", url: "https://mygom.tech/articles/securely-setup-openclaw-clawdbot-in-minutes", source: "MYGOM", lang: "en", category: "getting-started", tags: ["安全部署", "Docker", "新手", "2026-03"], }, { title: "Getting Started with OpenClaw: Setup, Core Features, and Your First Practical Workflow", desc: "从第一次安装到第一个实用工作流的长文入门:解释 Gateway、workspace、channels 与安全策略,适合系统理解 OpenClaw 的新手。", url: "https://margabagus.com/openclaw-getting-started/", source: "Margabagus", lang: "en", category: "getting-started", tags: ["入门", "第一条工作流", "安全", "2026-03"], }, { title: "OpenClaw for Product Managers: The Complete Guide to Setup, Security, Costs & Use Cases [2026]", desc: "面向产品经理的全景指南:从架构、安装与 Telegram 接入,到成本、安全和 10 个真实用例,适合业务视角快速理解 OpenClaw。", url: "https://hellopm.co/openclaw-for-product-managers/", source: "HelloPM", lang: "en", category: "use-cases", tags: ["产品经理", "成本", "安全", "用例", "2026-03"], }, { title: "YouTube — The Ultimate Beginner’s Guide to OpenClaw", desc: "近期高热度英文视频教程:从首次部署到模型路由、安全、Telegram、Skills、Memory、cron、语音模式与子 Agent 的全流程讲解。", url: "https://www.youtube.com/watch?v=st534T7-mdE", source: "YouTube", lang: "en", category: "video", featured: true, tags: ["YouTube", "入门", "Skills", "Memory", "2026-03"], }, { title: "YouTube — OpenClaw Setup on Windows 11 | Full Installation Guide (2026)", desc: "Windows 11 专向安装视频:完整演示 OpenClaw 的安装流程,适合希望在本机而非 VPS 上跑通第一套环境的用户。", url: "https://www.youtube.com/watch?v=HlFN4KkH_Hc", source: "YouTube", lang: "en", category: "video", tags: ["YouTube", "Windows 11", "安装", "本地部署", "2026-03"], }, // ============ New — Week of 2026-03-15 ============ { title: "Substack — OpenClaw News for Mar. 11/26", desc: "社区新闻汇总:聚合近一周 OpenClaw 的平台发布、安全预警、硬件集成与市场动态,适合快速补齐最近情报。", url: "https://pau1.substack.com/p/openclaw-news-for-mar-1126", source: "Substack", lang: "en", category: "deep-dive", tags: ["新闻汇总", "社区动态", "安全", "2026-03"], }, { title: "YouTube — Fix OpenClaw Gateway Dashboard Not Working Unauthorized", desc: "针对 Gateway Dashboard 弹出 Unauthorized 的排障视频:聚焦认证与配置问题,适合装完后控制面板打不开的用户。", url: "https://www.youtube.com/watch?v=i71j86dbc5M", source: "YouTube", lang: "en", category: "video", tags: ["YouTube", "排障", "Gateway", "Dashboard", "2026-03"], }, { title: "YouTube — Install OpenClaw With Ollama on Raspberry Pi 5", desc: "树莓派 5 + Ollama 零 API 成本部署视频:在本地离线环境运行 OpenClaw,适合低成本硬件玩家和本地模型爱好者。", url: "https://www.youtube.com/watch?v=IwKCk5ycpV0", source: "YouTube", lang: "en", category: "video", tags: ["YouTube", "Raspberry Pi 5", "Ollama", "本地模型", "2026-03"], }, { title: "YouTube — Top 10 OpenClaw Use Cases You Need To Try", desc: "10 个可直接落地的 OpenClaw 用例视频:覆盖个人效率、自动化与日常工作流,帮助新用户快速找到第一批实用场景。", url: "https://www.youtube.com/watch?v=mTDt_30qAps", source: "YouTube", lang: "en", category: "use-cases", tags: ["用例", "自动化", "工作流", "YouTube", "2026-03"], }, { title: "Medium — OpenClaw Just Beat React’s 10-Year GitHub Record in 60 Days", desc: "以 60 天打破 React Stars 纪录为切口的评论长文:讨论 OpenClaw 的爆发式增长、真实事故案例与持续升温的安全争议。", url: "https://medium.com/@aftab001x/openclaw-just-beat-reacts-10-year-github-record-in-60-days-now-nobody-knows-what-to-do-with-it-937b8f370507", source: "Medium", lang: "en", category: "deep-dive", tags: ["GitHub Stars", "安全争议", "增长", "Medium", "2026-03"], }, { title: 'sanwan.ai — AI 龙虾三万自主运营网站实录', desc: '完全由 OpenClaw AI Agent 自主建站、写作、推广的网站,展示真实的 Agent 长期运营案例,每日更新日记,并附技能清单。', url: 'https://sanwan.ai', source: 'sanwan.ai', lang: 'zh', category: 'deep-dive', featured: true, tags: ['实战案例', '自动化运营', '心跳机制', 'SOUL.md', '多 Agent'], }, { title: 'SOUL.md 设计指南:如何给 AI 一个真正有个性的灵魂', desc: '详解 OpenClaw 中 SOUL.md 的配置方法,包含 3 种真实模板、常见错误与检验标准,适合想把 Agent 角色写清楚的用户。', url: 'https://juejin.cn/post/7616308247709974547', source: '掘金', lang: 'zh', category: 'skill-dev', tags: ['SOUL.md', 'Agent人格', '配置教程'], }, { title: 'OpenClaw 心跳机制实战:让 AI Agent 24 小时不停自主运行', desc: '从 HEARTBEAT.md 配置到三问反思机制,手把手讲解如何让 Agent 全天候自主执行任务,并附可运行示例。', url: 'https://juejin.cn/post/7616209617266835498', source: '掘金', lang: 'zh', category: 'skill-dev', tags: ['心跳机制', 'HEARTBEAT.md', '自动化', '定时任务'], }, { title: 'OpenClaw 香港入門指南 — AI 私人助理粵港澳大灣區版', desc: '面向香港及大灣區商戶的繁體中文 OpenClaw 入門資源,覆蓋粵語、本地業務場景與技能包思路。', url: 'https://openclawhk.io', source: 'openclawhk.io', lang: 'zh', category: 'getting-started', tags: ['香港', '繁體中文', '粵語', '技能包', '大灣區'], }, // ============ New — Week of 2026-03-16 ============ { title: "OpenClaw Newsletter — 2026-03-14", desc: "官方周刊:OpenClaw 超越 React 成为 GitHub Stars 第一项目,并汇总 Android 聊天设置改版、Homebrew 安装量与社区热点。", url: "https://buttondown.com/openclaw-newsletter/archive/openclaw-newsletter-2026-03-14/", source: "OpenClaw Newsletter", lang: "en", category: "official", featured: true, tags: ["官方周刊", "2026-03-14", "GitHub Stars", "社区动态"], }, { title: "How to Install OpenClaw (Moltbot/Clawdbot) on macOS, Windows, Linux, VPS, and Raspberry Pi", desc: "全平台安装指南:覆盖 macOS、Linux、Windows WSL、DigitalOcean/Hetzner VPS 与树莓派,并附 Node.js、API Key、systemd 等前置要求。", url: "https://anakin.ai/blog/how-to-install-openclaw-any-platform/", source: "Anakin AI", lang: "en", category: "getting-started", featured: true, tags: ["全平台", "Windows WSL", "VPS", "Raspberry Pi"], }, { title: "阿里云百炼 — OpenClaw(原 Clawdbot、Moltbot)接入指南", desc: "阿里云官方文档:通过百炼 OpenAI 兼容接口接入 OpenClaw,涵盖 Qwen/DeepSeek/Kimi 等模型、dashboard 配置和地域差异说明。", url: "https://help.aliyun.com/zh/model-studio/openclaw", source: "阿里云百炼", lang: "zh", category: "cloud-deploy", featured: true, tags: ["阿里云", "百炼", "Qwen", "模型配置"], }, { title: "B站 — 【Clawdbot/OpenClaw】超详细Windows下安全(基于WSL)安装指南", desc: "Windows 安全部署视频:基于 WSL 跑通 OpenClaw,附本地 LLM / MiniMax 替换说明,适合想在 Windows 本机长期使用的用户。", url: "https://www.bilibili.com/video/BV1SPFMzQErh/", source: "Bilibili", lang: "zh", category: "video", tags: ["B站", "Windows", "WSL", "安全部署"], }, { title: "B站 — 效率X10!我开源了一个 OpenClaw 的控制中心", desc: "开源 OpenClaw 控制中心:集中查看多 Agent 状态、token 消耗、排队任务,以及每个 Agent 的人设、记忆和任务文档。", url: "https://www.bilibili.com/video/BV1kDckzGEMm/", source: "Bilibili", lang: "zh", category: "tools", tags: ["B站", "控制中心", "多Agent", "可视化"], }, // ============ New — Week of 2026-03-17 ============ { title: 'GitHub Releases — OpenClaw v2026.3.13-1', desc: '恢复版发布:修复 broken v2026.3.13 tag/release 路径,并汇总 live Chrome session attach 后续修复、Android chat settings 改版、OPENCLAW_TZ 时区支持等更新。', url: 'https://github.com/openclaw/openclaw/releases/tag/v2026.3.13-1', source: 'GitHub Releases', lang: 'en', category: 'official', featured: true, tags: ['v2026.3.13-1', '版本更新', 'Chrome attach', 'Android'], }, { title: 'OpenClaw Newsletter — 2026-03-16', desc: '官方周刊:OpenClaw 超越 React 成为 GitHub Stars 第一软件项目;Ollama 成为官方 provider;v2026.3.13 带来 live Chrome session attach 与 Android 聊天设置改版。', url: 'https://buttondown.com/openclaw-newsletter/archive/openclaw-newsletter-2026-03-16/', source: 'OpenClaw Newsletter', lang: 'en', category: 'official', featured: true, tags: ['官方周刊', '2026-03-16', 'Ollama', 'Chrome attach'], }, { title: 'B站 — OpenClaw小龙虾保姆级安装教程!【Mac电脑版】小白10分钟搞定本地部署', desc: '最新中文视频教程:聚焦 Mac 本地部署,适合第一次在个人电脑上跑通 OpenClaw 的新手,配套讲解常见接入场景。', url: 'https://www.bilibili.com/video/BV1t4Psz1EmW/', source: 'Bilibili', lang: 'zh', category: 'video', tags: ['B站', 'Mac', '本地部署', '新手'], }, { title: 'B站 — OpenClaw (龙虾) Windows 本地部署保姆级教程', desc: 'Windows 本机部署完整指南:从环境准备到跑通 OpenClaw 的保姆级演示,适合希望长期在 Windows 环境使用 OpenClaw 的用户。', url: 'https://www.bilibili.com/video/BV1jscdzqEa8/', source: 'Bilibili', lang: 'zh', category: 'video', tags: ['B站', 'Windows', '本地部署', '保姆级'], }, { title: 'B站 —【保姆级】OpenClaw 全网最细教学:安装→Skills实战→多Agent协作,1 小时全精通!', desc: '覆盖安装、Skills 实战与多 Agent 协作的近期中文长视频,适合想一次性建立完整使用心智的进阶新手。', url: 'https://www.bilibili.com/video/BV1TpAZzeEiZ/', source: 'Bilibili', lang: 'zh', category: 'video', tags: ['B站', 'Skills', '多Agent', '长视频'], }, { title: 'Next Platform — OpenClaw 是 agentic AI 的“GPT 时代”类比?', desc: '行业观点文章,讨论 OpenClaw 对 AI-agent 基础设施的影响与发展路径,附带行业讨论与市场观察。', url: 'https://www.nextplatform.com/ai/2026/03/17/nvidia-says-openclaw-is-to-agentic-ai-what-gpt-was-to-chattybots/5209428', source: 'The Next Platform', lang: 'en', category: 'deep-dive', featured: false, tags: ['行业观点', 'agentic AI', '趋势观察'], }, { title: 'Reuters — 百度加入中国 OpenClaw 狂热浪潮', desc: '路透社报道中国企业与厂商围绕 OpenClaw 的最新动态与本土化落地。', url: 'https://www.reuters.com/business/media-telecom/baidu-joins-chinas-openclaw-frenzy-with-new-ai-agents-2026-03-17/', source: 'Reuters', lang: 'en', category: 'deep-dive', featured: false, tags: ['行业资讯', '本土化', '企业动作'], }, // ============ New — Week of 2026-03-20 ============ { title: 'YouTube — The only OpenClaw tutorial you\'ll ever need (March 2026)', desc: '近期英文长视频教程:从搭建第一个 AI 员工到完整工作流配置,适合想一次性补齐安装与使用心智的用户。', url: 'https://www.youtube.com/watch?v=CxErCGVo-oo', source: 'YouTube', lang: 'en', category: 'video', featured: true, tags: ['YouTube', '完整教程', 'March 2026', '最新'], }, { title: 'Substack — OpenClaw News for Mar. 18/26', desc: '最新社区情报汇总:聚合 3 月 18 日前后的 OpenClaw 新闻、版本动态与生态观察,适合快速补齐最近一周信息。', url: 'https://pau1.substack.com/p/openclaw-news-for-mar-1826', source: 'Substack', lang: 'en', category: 'deep-dive', tags: ['新闻汇总', '社区动态', 'March 2026', '最新'], }, { title: 'Substack — I Studied OpenClaw Memory System — Here\'s What I Found', desc: '围绕 OpenClaw 记忆系统的最新分析:从长期记忆归属到上下文连续性,适合想深入理解 Memory 机制的用户。', url: 'https://gaodalie.substack.com/p/i-studied-openclaw-memory-system', source: 'Substack', lang: 'en', category: 'deep-dive', tags: ['记忆系统', 'Memory', 'Substack', 'March 2026'], }, // ============ New — Week of 2026-03-21 ============ { title: "YouTube — Install & Run OpenClaw on Raspberry Pi 5 | Zero Cost Local AI | Offline AI", desc: "最新树莓派 5 视频教程:在本地离线环境部署 OpenClaw,主打零 API 成本和低门槛硬件方案。", url: "https://www.youtube.com/watch?v=P2-ZeB7O0nA", source: "YouTube", lang: 'en', category: 'video', tags: ["YouTube", "Raspberry Pi 5", "离线部署", "零成本", "2026-03"], }, { title: "The OpenClaw Saga: How Two Weeks Changed the Agentic AI World Forever", desc: "长文复盘 OpenClaw 在 2026 年 2 月的爆发式演进:品牌更名、基金会过渡、生态扩张与安全争议。", url: "https://thesingularitypoint.substack.com/p/the-openclaw-saga-how-two-weeks-changed", source: "Substack", lang: 'en', category: 'deep-dive', tags: ["Substack", "历史复盘", "生态演进", "安全争议", "2026-03"], }, { title: "B站 — OpenClaw 接入微信、QQ、飞书等教程!打造 24 小时在线 AI 助手!", desc: "3 月最新中文视频教程:聚焦微信、QQ、飞书等国内平台接入,并演示 OpenClaw 的 24 小时在线助手玩法。", url: "https://www.bilibili.com/video/BV1mcwtzVEnt/", source: "Bilibili", lang: 'zh', category: 'video', tags: ["B站", "微信", "QQ", "飞书", "国内平台", "2026-03"], }, { title: "B站 — OpenClaw 6 大必要配置推荐", desc: "近期中文经验视频:总结安全、记忆、搜索、浏览器、Skills 与 Token 控制等 6 类高频配置建议。", url: "https://www.bilibili.com/video/BV1G7PFz1E7x/", source: "Bilibili", lang: 'zh', category: 'getting-started', tags: ["B站", "配置优化", "安全", "Skills", "Token", "2026-03"], }, // ============ New — Week of 2026-03-22 ============ { title: 'Medium — OpenClaw: The Lobster That Took Over the AI World', desc: '3 月新文回顾 OpenClaw 的爆发式增长,梳理其从 side project 到 GitHub 现象级项目的关键节点。', url: 'https://thamizhelango.medium.com/openclaw-the-lobster-that-took-over-the-ai-world-7d901bc387bb', source: 'Medium', lang: 'en', category: 'deep-dive', tags: ['增长', 'Medium', '现象级', '2026-03'], }, { title: 'Substack — The Sequence Opinion #827: Taming the Agentic Lobster: Learning from OpenClaw', desc: 'The Sequence 最新评论:从 Agent 基础设施视角复盘 OpenClaw 的崛起,并总结可供团队借鉴的产品与安全启示。', url: 'https://thesequence.substack.com/p/the-sequence-opinion-827-taming-the', source: 'The Sequence', lang: 'en', category: 'deep-dive', tags: ['The Sequence', '行业评论', '安全启示', '2026-03'], }, // ============ New — Week of 2026-03-24 ============ { title: 'OpenClaw News for Mar. 22/26', desc: '最新社区情报汇总:聚合最近一周 OpenClaw 新闻、版本动态与生态观察,适合快速补齐 March 下旬的更新。', url: 'https://pau1.substack.com/p/openclaw-news-for-mar-2226', source: 'Substack', lang: 'en', category: 'deep-dive', tags: ['新闻汇总', '社区动态', 'March 2026', '最新'], }, { title: 'Deploy OpenClaw with GLM 5: Self-Hosted AI Agent in 10 Min', desc: '最新英文实操:用 GLM-5 在 10 分钟内跑起自托管 OpenClaw,覆盖安装、模型接入与快速启动。', url: 'https://michielh.medium.com/deploy-openclaw-with-glm-5-self-hosted-ai-agent-in-10-min-7f6a8ed985d4', source: 'Medium', lang: 'en', category: 'getting-started', tags: ['GLM-5', '10分钟', '自托管', '2026-03'], }, { title: 'YouTube — 微信养龙虾:OpenClaw 微信插件 Clawbot 发布', desc: '近期中文视频教程:演示如何把 OpenClaw 接入微信,一条命令完成插件安装与配对,适合想把 AI 助手装进微信的用户。', url: 'https://www.youtube.com/watch?v=KZKT27Gk9lA', source: 'YouTube', lang: 'zh', category: 'channel-integration', tags: ['微信', '插件', '中文教程', 'YouTube', '2026-03'], }, // ============ New — Week of 2026-03-24 ============ { title: 'GitHub Releases — OpenClaw v2026.3.22', desc: '3 月最新正式版发布:ClawHub 安装优先级改为优先技能市场、移除旧版 Chrome extension relay 路径,并带来新的 Matrix 插件、插件 SDK 迁移与多项安全收紧。', url: 'https://github.com/openclaw/openclaw/releases/tag/v2026.3.22', source: 'GitHub Releases', lang: 'en', category: 'official', featured: true, tags: ['v2026.3.22', '版本更新', 'ClawHub', 'Matrix', 'Chrome MCP'], }, { title: 'OpenClaw Newsletter — 2026-03-24', desc: '官方日报:汇总最新改名讨论、微信插件兼容性问题、v2026.3.23 / v2026.3.22 发版动态,以及插件超时保护与 WebChat 性能改进。', url: 'https://buttondown.com/openclaw-newsletter/archive/openclaw-newsletter-2026-03-24/', source: 'OpenClaw Newsletter', lang: 'en', category: 'official', featured: true, tags: ['官方周刊', '2026-03-24', '微信插件', 'v2026.3.23', 'WebChat'], }, { title: 'CNBC — OpenClaw 的“ChatGPT 时刻”引发模型商品化担忧', desc: 'CNBC 3 月 21 日报道:OpenClaw 的爆发式增长让市场重新讨论底层模型是否会进一步商品化,以及 Agent 层的价值正在上移。', url: 'https://www.cnbc.com/2026/03/21/openclaw-chatgpt-moment-sparks-concern-ai-models-becoming-commodities.html', source: 'CNBC', lang: 'en', category: 'deep-dive', featured: true, tags: ['CNBC', '行业分析', '模型商品化', '2026-03'], }, { title: 'YouTube — OpenClaw v2026.3.22:The Biggest Release Yet', desc: '近期英文视频解读:聚焦 v2026.3.22 的 breaking changes、新功能、Bug 修复与安全加固,适合想快速掌握这次大版本变化的用户。', url: 'https://www.youtube.com/watch?v=aAcWV5WcSXg', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', 'v2026.3.22', '版本解读', 'March 2026'], }, { title: 'B站 — [中配] 你唯一需要的 OpenClaw 教程(2026 年 3 月版)', desc: '3 月较新的中文视频教程:从安装到工作流配置的完整 walkthrough,适合想一次补齐 OpenClaw 上手心智的中文用户。', url: 'https://www.bilibili.com/video/BV1W3APzGEx5/', source: 'Bilibili', lang: 'zh', category: 'video', featured: true, tags: ['B站', '中文教程', 'March 2026', '完整教程'], }, // ============ New — Week of 2026-03-26 ============ { title: 'The Biggest OpenClaw Update Just Dropped. Here Is Everything You Need to Know (March 2026)', desc: '聚焦 v2026.3.22 的实战解读:ClawHub 成为默认技能市场、/btw 侧对话、子 Agent 模型与 thinking 调整、会话膨胀治理与 30+ 安全补丁。', url: 'https://www.gauraw.com/openclaw-update-march-2026-clawhub-subagents-session-management/', source: 'Gauraw', lang: 'en', category: 'deep-dive', tags: ['v2026.3.22', 'ClawHub', '子Agent', '会话管理', 'March 2026'], }, { title: 'OpenClaw 2026.3.13 Release: Memory Fix, Chrome DevTools, and Mobile Redesign', desc: '版本解读:回顾 v2026.3.13 的内存回归修复、Chrome DevTools attach、新版 Android 设计、Docker 时区支持与 Windows Gateway 修复。', url: 'https://openclawdc.com/blog/openclaw-3-13-release/', source: 'OpenClaw DC', lang: 'en', category: 'official', tags: ['v2026.3.13', 'memory fix', 'Chrome DevTools', 'Android', 'Windows Gateway'], }, { title: 'What’s New in OpenClaw (March 2026): Reliability Features', desc: '从生产可用性视角解读 3 月更新:增强 cron、allowlist-first 渠道安全、配置校验与 openclaw doctor 诊断路径,更适合长期自动化运行。', url: 'https://atlaslionclaw.com/blog/openclaw-march-2026-updates/', source: 'Atlas Lion Claw', lang: 'en', category: 'deep-dive', tags: ['cron', 'reliability', 'allowlist', 'openclaw doctor', 'March 2026'], }, // ============ New — Week of 2026-03-27 ============ { title: "YouTube — OpenClaw Setup in 2026: The Only Guide You Need", desc: "近一周内出现的英文新视频教程:覆盖安装 OpenClaw、连接模型 API Key、初始化工作区与 Dashboard,上手路径相对完整。", url: "https://www.youtube.com/watch?v=9epvGKyHIek", source: "YouTube", lang: "en", category: "video", tags: ["YouTube", "setup", "March 2026", "完整教程"], }, { title: "Verdent — OpenClaw Setup Guide 2026: Install, Configure & Connect in 15 Min", desc: "15 分钟上手指南:从 Node.js 22、API Key 到 provider 选择与多渠道连接,适合第一次部署 OpenClaw 的新用户。", url: "https://www.verdent.ai/guides/openclaw-setup-guide-from-zero-to-ai-assistant", source: "Verdent", lang: "en", category: "getting-started", tags: ["快速上手", "安装指南", "provider", "2026-03"], }, { title: "Nimo PC — 2026 Guide: How to Install OpenClaw AI on Windows", desc: "Windows 11 向导:聚焦 PowerShell 安装、Node.js / Git 前置依赖与本机环境准备,适合想在 Windows 侧跑通 OpenClaw 的用户。", url: "https://www.nimopc.com/blogs/our-blog/2026-guide-how-to-install-openclaw-ai-on-windows", source: "Nimo PC", lang: "en", category: "getting-started", tags: ["Windows", "PowerShell", "安装指南", "2026-03"], }, // ============ New — Week of 2026-03-28 ============ { title: 'YouTube — Stop Wasting Time & Master OpenClaw in 12 Min', desc: '21 Mar 2026 新视频:用 12 分钟快速讲清 OpenClaw 的安全部署思路、VPS 运行方式,以及如何把它变成可控的自动化工作流。', url: 'https://www.youtube.com/watch?v=iSLruYDGT58', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', '12分钟', '安全部署', 'VPS', '2026-03'], }, { title: 'YouTube — 5 OpenClaw Use Cases You Need to Implement', desc: '22 Mar 2026 新视频:总结 5 个可直接落地的 OpenClaw 场景,包括记忆系统、趋势监控、研发团队协作和夜间自动执行任务。', url: 'https://www.youtube.com/watch?v=qRA0MyPlEPE', source: 'YouTube', lang: 'en', category: 'use-cases', tags: ['YouTube', '5个用例', '记忆系统', '自动化', '2026-03'], }, // ============ New — Week of 2026-03-29 ============ { title: 'Skywork — OpenClaw Explained: The Ultimate 2026 Guide to Your Autonomous AI Assistant', desc: '近期长文综述:从 OpenClaw 的生态、部署路径、成本到安全姿势,适合需要一篇文章快速建立全局认知的用户。', url: 'https://skywork.ai/skypage/en/openclaw-autonomous-ai-guide/2036382738959405056', source: 'Skywork', lang: 'en', category: 'deep-dive', tags: ['全景综述', '部署', '成本', '安全', '2026-03'], }, { title: 'YouTube — Ubuntu OpenClaw Setup: From Zero to Running | 2026 | Full Guide', desc: '面向 Ubuntu 用户的最新视频教程:从零开始安装 OpenClaw,覆盖基础环境准备、启动与首次跑通流程。', url: 'https://www.youtube.com/watch?v=hvMoz3hRybk', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', 'Ubuntu', '安装教程', '2026-03'], }, { title: 'YouTube — OpenClaw\'s new update is MASSIVE', desc: '近期英文版本解读视频:聚焦 OpenClaw 新版功能变化与升级重点,适合快速了解最近一次更新的用户。', url: 'https://www.youtube.com/watch?v=LaHXmRE-_fs', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', '版本解读', '更新', '2026-03'], }, { title: 'OpenClaw Newsletter — 2026-03-29(v2026.3.28:Plugin Approval Hooks + ANI + 339k+ Stars)', desc: '官方日报:汇总 3 月 29 日社区热点,重点包括 v2026.3.28 的 plugin approval hooks、ANI 双向消息支持、动态模型路由,以及仓库来到 339,817 Stars。', url: 'https://buttondown.com/openclaw-newsletter/archive/openclaw-newsletter-2026-03-29/', source: 'OpenClaw Newsletter', lang: 'en', category: 'official', tags: ['官方周刊', 'v2026.3.28', 'approval hooks', 'ANI', '339k Stars'], }, { title: 'YouTube — New FREE OpenClaw 3.24 Upgrades!', desc: '最新视频速览:聚焦 OpenClaw 3.24 版本升级,快速过一遍新版能力和对实际工作流的影响。', url: 'https://www.youtube.com/watch?v=axZvm3fXUm0', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', '3.24 更新', '版本解读', '2026-03'], }, { title: 'Substack — OpenClaw 101 (2026 March 29): The Complete Guide to the AI Agent That Runs Your Life', desc: '3 月 29 日更新的超全指南:整合 OpenClaw 是什么、如何部署、最新功能变化,以及 75+ 来自社区的真实用例。', url: 'https://sidsaladi.substack.com/p/openclaw-101-2026-march-29-the-complete', source: 'Substack', lang: 'en', category: 'deep-dive', tags: ['Substack', '101 指南', '75+ 用例', '2026-03'], }, { title: 'Substack — OpenClaw News for Mar. 30/26', desc: '3 月 30 日资讯汇总:聚焦 OpenClaw 安全治理、递归推理成本、企业采用与相关行业动态,适合追踪最近一周舆情。', url: 'https://pau1.substack.com/p/openclaw-news-for-mar-3026', source: 'Substack', lang: 'en', category: 'official', tags: ['Substack', '新闻简报', '安全', '行业动态', '2026-03'], }, { title: 'Substack — OpenClaw News for Mar. 31/26', desc: '3 月 31 日资讯汇总:覆盖 attested execution、Moltbook 安全教训、AutoClaw 图形化安装工具与百度生态集成等新动态。', url: 'https://pau1.substack.com/p/openclaw-news-for-mar-3126', source: 'Substack', lang: 'en', category: 'official', tags: ['Substack', '新闻简报', 'AutoClaw', '百度', '2026-03'], }, // ============ New — Week of 2026-04-02 ============ { title: 'OpenClaw Newsletter — 2026-03-31', desc: '官方日报:汇总 3 月 31 日社区热点,涵盖 QMD memory 修复、plugin hook 修复、Matrix threading 改进,以及仓库达到 342,368 Stars。', url: 'https://buttondown.com/openclaw-newsletter/archive/openclaw-newsletter-2026-03-31/', source: 'OpenClaw Newsletter', lang: 'en', category: 'official', featured: true, tags: ['官方周刊', '2026-03-31', 'QMD Memory', 'Plugin Hooks', '342k Stars'], }, { title: 'Skywork — The Ultimate Guide to OpenClaw Skills Framework: 2026 Edition', desc: '近期 skills 长文综述:覆盖 OpenClaw Skills 架构、平台对比、常见问题和安全注意事项,适合想系统理解 Skills 生态的读者。', url: 'https://skywork.ai/skypage/en/openclaw-skills-framework-guide/2038589913441320961', source: 'Skywork', lang: 'en', category: 'skill-dev', tags: ['Skills', '生态综述', '安全注意', '2026-03'], }, { title: 'OpenClaw Newsletter — 2026-03-27', desc: '官方日报:汇总 3 月 27 日社区热点,涵盖 Google AI Pro/Ultra 限制讨论、ClawHub 恶意技能事件、Gateway 进程管理修复,以及 v2026.3.24-beta.2 / v2026.3.24 发布动态。', url: 'https://buttondown.com/openclaw-newsletter/archive/openclaw-newsletter-2026-03-27/', source: 'OpenClaw Newsletter', lang: 'en', category: 'official', featured: true, tags: ['官方周刊', '2026-03-27', 'v2026.3.24', '安全事件'], }, { title: 'GitHub Releases — OpenClaw v2026.3.24', desc: '3 月下旬正式版发布:新增 /v1/models 与 /v1/embeddings 兼容层、实时可用工具视图、Teams 交互增强、Skills 一键安装元数据,以及 Control UI 技能状态筛选与详情面板。', url: 'https://github.com/openclaw/openclaw/releases/tag/v2026.3.24', source: 'GitHub Releases', lang: 'en', category: 'official', tags: ['v2026.3.24', '版本更新', 'Skills', 'Control UI', 'Teams'], }, { title: 'OpenClaw Newsletter — 2026-04-01', desc: '官方日报:汇总 4 月 1 日社区热点,涵盖 cloud VM 部署指南、安全讨论、v2026.3.31 发布动态,以及仓库达到 343,792 Stars。', url: 'https://buttondown.com/openclaw-newsletter/archive/openclaw-newsletter-2026-04-01/', source: 'OpenClaw Newsletter', lang: 'en', category: 'official', featured: true, tags: ['官方周刊', '2026-04-01', 'v2026.3.31', 'cloud VM', '343k Stars'], }, { title: 'OpenClaw Newsletter — 2026-04-02', desc: '官方日报:汇总 4 月 2 日社区热点,涵盖 /tasks 背景任务板、ClawKeeper 安全框架、腾讯云直播活动,以及仓库达到 345k+ Stars。', url: 'https://buttondown.com/openclaw-newsletter/archive/openclaw-newsletter-2026-04-02/', source: 'OpenClaw Newsletter', lang: 'en', category: 'official', featured: true, tags: ['官方周刊', '2026-04-02', '/tasks', 'ClawKeeper', '345k Stars'], }, { title: 'GitHub Releases — OpenClaw v2026.4.2', desc: '4 月初正式版发布:恢复 Task Flow 底座与子任务管理,新增 Android assistant 入口,并把 x_search / web_fetch 配置迁移到插件侧。', url: 'https://github.com/openclaw/openclaw/releases/tag/v2026.4.2', source: 'GitHub Releases', lang: 'en', category: 'official', tags: ['v2026.4.2', 'Task Flow', 'Android', 'x_search', 'web_fetch'], }, // ============ New — Week of 2026-04-05 ============ { title: 'GitHub Releases — OpenClaw v2026.4.1', desc: '4 月初正式版发布:新增 /tasks 聊天内后台任务板、SearXNG web_search provider、Bedrock Guardrails、Feishu Drive 评论流,以及更细的 cron tools allowlist 控制。', url: 'https://github.com/openclaw/openclaw/releases/tag/v2026.4.1', source: 'GitHub Releases', lang: 'en', category: 'official', featured: true, tags: ['v2026.4.1', '/tasks', 'SearXNG', 'Bedrock Guardrails', 'Feishu'], }, { title: 'YouTube — I fixed OpenClaw so it actually works (full setup)', desc: '4 月初的新英文视频教程:聚焦把 OpenClaw 真正跑通的完整 setup 路径,适合装过但没完全跑顺的新手回炉。', url: 'https://www.youtube.com/watch?v=fd4k16REDOU', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', 'full setup', 'troubleshooting', 'April 2026'], }, { title: 'YouTube — How to Set Up OpenClaw in 30 Minutes (Step-by-Step)', desc: '近期英文分步视频:用 30 分钟带你从零完成 OpenClaw 安装、基础配置与首次跑通,适合作为 2026 年 4 月的入门补充。', url: 'https://www.youtube.com/watch?v=bKGbDWTM2b0', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', 'step-by-step', '30 minutes', 'April 2026'], }, // ============ New — Week of 2026-04-07 ============ { title: 'GitHub Releases — OpenClaw v2026.4.5', desc: '最新正式版发布:新增内置音乐/视频生成工具、ClawHub 搜索安装面板、多语言 Control UI,以及大量配置迁移与安全修复。', url: 'https://github.com/openclaw/openclaw/releases/tag/v2026.4.5', source: 'GitHub Releases', lang: 'en', category: 'official', featured: true, tags: ['v2026.4.5', 'Release', 'Music Generate', 'Video Generate'], }, { title: 'OpenClaw Newsletter — 2026-04-03', desc: '官方周刊:围绕系统访问权限的安全争议升温,汇总 4 月初社区热点讨论与趋势内容。', url: 'https://buttondown.com/openclaw-newsletter/archive/openclaw-newsletter-2026-04-03/', source: 'OpenClaw Newsletter', lang: 'en', category: 'official', tags: ['Newsletter', 'Security', 'April 2026'], }, { title: 'OpenClaw Newsletter — 2026-04-04', desc: '官方周刊:聚焦 Google 与 Anthropic 对第三方接入的限制,以及 4 月上旬 OpenClaw 生态的最新舆情。', url: 'https://buttondown.com/openclaw-newsletter/archive/openclaw-newsletter-2026-04-04/', source: 'OpenClaw Newsletter', lang: 'en', category: 'official', tags: ['Newsletter', 'Anthropic', 'Google', 'April 2026'], }, { title: 'OpenClaw Newsletter — 2026-04-05', desc: '官方周刊:汇总模型对比、记忆系统、Claude vs GPT 等社区高频讨论,适合追踪最近一周动态。', url: 'https://buttondown.com/openclaw-newsletter/archive/openclaw-newsletter-2026-04-05/', source: 'OpenClaw Newsletter', lang: 'en', category: 'official', tags: ['Newsletter', 'Memory', 'Models', 'April 2026'], }, { title: 'YouTube — OpenClaw 2026.4.2 Update!', desc: '新版视频解读:重点讲 x_search 配置迁移、doctor 修复命令、任务流恢复和 Android 集成。', url: 'https://www.youtube.com/watch?v=3tbglMoBj3Y', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', 'v2026.4.2', 'Update', 'Android'], }, // ============ New — Week of 2026-04-08 ============ { title: 'freeCodeCamp — How to Build and Secure a Personal AI Agent with OpenClaw', desc: '从三层架构和七阶段 Agent 循环讲起,带你搭一个可用的 life admin agent,并补上真正需要的安全加固。', url: 'https://www.freecodecamp.org/news/how-to-build-and-secure-a-personal-ai-agent-with-openclaw/', source: 'freeCodeCamp', lang: 'en', category: 'getting-started', featured: true, tags: ['freeCodeCamp', '安全加固', '架构', '实战'], }, { title: 'Visual Studio Magazine — Hands On with OpenClaw Node for VS Code', desc: '实测 OpenClaw Node for VS Code,真实本地文件工作流可跑通,但 Windows 体验仍偏早期基础设施。', url: 'https://visualstudiomagazine.com/articles/2026/04/03/hands-on-with-openclaw-node-for-vs-code-real-workflow-real-friction.aspx', source: 'Visual Studio Magazine', lang: 'en', category: 'tools', tags: ['VS Code', 'Node', '工作流', 'Windows'], }, { title: 'PCMag — Anthropic: You Can\'t Use OpenClaw With Claude Without Paying Extra', desc: 'PCMag 跟进 Anthropic 对 OpenClaw 使用 Claude 的限制变化,梳理订阅与高阶付费门槛带来的影响。', url: 'https://www.pcmag.com/news/anthropic-you-cant-use-openclaw-with-claude-without-paying-extra', source: 'PCMag', lang: 'en', category: 'official', tags: ['Anthropic', 'Claude', '生态动态', 'PCMag'], }, { title: 'OpenClaw Newsletter — 2026-04-06', desc: '官方日报:围绕 OpenClaw 2026.4.5 发布、品牌讨论、ClawAwake 工具和持续增长的社区热度做了当日汇总。', url: 'https://buttondown.com/openclaw-newsletter/archive/openclaw-newsletter-2026-04-06/', source: 'OpenClaw Newsletter', lang: 'en', category: 'official', tags: ['Newsletter', '2026-04-06', 'v2026.4.5', '社区动态'], }, { title: 'YouTube — OpenClaw 4.5 Massive Update (INSANE)', desc: '4 月上旬新热视频,聚焦 2026.4.5 的核心变化,包括原生视频/音乐生成和新版 Agent 工作流能力。', url: 'https://www.youtube.com/watch?v=MLWHOMjHwak', source: 'YouTube', lang: 'en', category: 'video', tags: ['YouTube', 'v2026.4.5', 'Update', 'Video Generate', 'Music Generate'], }, // ============ New — Week of 2026-04-09 ============ { title: 'GitHub Releases — OpenClaw v2026.4.8', desc: '4 月 8 日最新 release,聚焦 Telegram/setup 修复与打包契约更新,适合跟进 2026.4.x 版本线的实践者。', url: 'https://github.com/openclaw/openclaw/releases/tag/v2026.4.8', source: 'GitHub Releases', lang: 'en', category: 'official', tags: ['v2026.4.8', 'GitHub Releases', 'Telegram', 'setup'], }, { title: 'GitHub Releases — OpenClaw v2026.4.9', desc: '4 月 9 日最新 release,继续推进 2026.4.x 更新,适合需要第一时间跟进官方版本变更与修复项的用户。', url: 'https://github.com/openclaw/openclaw/releases/tag/v2026.4.9', source: 'GitHub Releases', lang: 'en', category: 'official', tags: ['v2026.4.9', 'GitHub Releases', 'April 2026', 'release'], }, { title: 'OpenClaw Newsletter — 2026-04-09', desc: '官方日报:汇总 4 月 9 日社区热点,覆盖最新版本动态、社区热度与当天生态更新,适合快速补齐最近一日情报。', url: 'https://buttondown.com/openclaw-newsletter/archive/openclaw-newsletter-2026-04-09/', source: 'OpenClaw Newsletter', lang: 'en', category: 'official', tags: ['Newsletter', '2026-04-09', '社区动态', 'April 2026'], }, { title: 'GitHub Releases — OpenClaw v2026.4.10', desc: '4 月 11 日最新稳定版 release,带来 Codex provider、Active Memory 插件与多项安全加固,适合追踪 2026.4.x 最新能力。', url: 'https://github.com/openclaw/openclaw/releases/tag/v2026.4.10', source: 'GitHub Releases', lang: 'en', category: 'official', tags: ['v2026.4.10', 'GitHub Releases', 'April 2026', 'release'], }, { title: 'GitHub Releases — OpenClaw v2026.4.11-beta.1', desc: '4 月 11 日预发布版本,继续推进记忆、视频生成、Feishu 与 Teams 能力,适合关注 Beta 新功能的进阶用户。', url: 'https://github.com/openclaw/openclaw/releases/tag/v2026.4.11-beta.1', source: 'GitHub Releases', lang: 'en', category: 'official', tags: ['v2026.4.11-beta.1', 'GitHub Releases', 'Beta', 'April 2026'], }, { title: 'GitHub Releases — OpenClaw v2026.4.7', desc: '4 月 8 日发布的稳定版 release,补齐 2026.4.5 与 2026.4.8 之间的版本链路,适合追踪 2026.4.x 连续修复节奏。', url: 'https://github.com/openclaw/openclaw/releases/tag/v2026.4.7', source: 'GitHub Releases', lang: 'en', category: 'official', tags: ['v2026.4.7', 'GitHub Releases', 'April 2026', 'release'], }, ]; export function getFeaturedResources(): Resource[] { return resources.filter((r) => r.featured); } export function getResourcesByCategory(cat: ResourceCategory): Resource[] { return resources.filter((r) => r.category === cat); } export function getResourcesByLang(lang: 'zh' | 'en'): Resource[] { return resources.filter((r) => r.lang === lang); } export const stats = { totalResources: resources.length, totalCategories: Object.keys(categoryMeta).length, zhResources: resources.filter((r) => r.lang === 'zh').length, enResources: resources.filter((r) => r.lang === 'en').length, };