[{"data":1,"prerenderedAt":4165},["ShallowReactive",2],{"best-practices:browser-automation":3,"content-manifest":1653},{"id":4,"title":5,"body":6,"category":1636,"date":1637,"description":1638,"difficulty":1639,"extension":1640,"meta":1641,"navigation":214,"path":1642,"seo":1643,"source":1637,"sourceName":1637,"sourceType":1644,"stem":1645,"tags":1646,"updatedAt":1651,"__hash__":1652},"bestPractices/best-practices/browser-automation.md","浏览器自动化实战",{"type":7,"value":8,"toc":1573},"minimark",[9,12,16,20,25,41,45,56,60,71,74,78,126,130,160,164,194,197,200,226,229,254,257,326,329,403,406,409,452,455,458,467,470,473,530,534,568,571,620,624,672,675,679,709,713,743,746,777,780,783,818,821,851,854,888,891,895,906,910,921,925,936,939,943,1063,1067,1169,1172,1175,1223,1226,1265,1269,1272,1275,1321,1324,1327,1375,1378,1381,1461,1464,1468,1471,1486,1490,1493,1504,1508,1511,1539,1542,1545,1548,1569],[10,11,5],"h1",{"id":5},[13,14,15],"p",{},"OpenClaw 支持通过专用 Chrome/Chromium 控制实现浏览器自动化。本文将分享如何利用这一能力实现日常工作自动化。",[17,18,19],"h2",{"id":19},"浏览器自动化能做什么",[21,22,24],"h3",{"id":23},"_1-自动化网页操作","1. 自动化网页操作",[26,27,28,32,35,38],"ul",{},[29,30,31],"li",{},"自动填写表单",[29,33,34],{},"点击按钮和链接",[29,36,37],{},"滚动页面",[29,39,40],{},"截图和录屏",[21,42,44],{"id":43},"_2-数据抓取","2. 数据抓取",[26,46,47,50,53],{},[29,48,49],{},"提取网页内容",[29,51,52],{},"批量获取数据",[29,54,55],{},"定期监控信息变化",[21,57,59],{"id":58},"_3-工作流自动化","3. 工作流自动化",[26,61,62,65,68],{},[29,63,64],{},"定时执行网页操作",[29,66,67],{},"批量处理任务",[29,69,70],{},"跨网站数据同步",[17,72,73],{"id":73},"使用场景举例",[21,75,77],{"id":76},"场景一自动填表","场景一：自动填表",[79,80,85],"pre",{"className":81,"code":82,"language":83,"meta":84,"style":84},"language-python shiki shiki-themes github-light github-dark","# 自动填写表单示例\nbrowser.goto(\"https://example.com/form\")\nbrowser.fill(\"#name\", \"张三\")\nbrowser.fill(\"#email\", \"zhangsan@example.com\")\nbrowser.click(\"#submit\")\nbrowser.screenshot()\n","python","",[86,87,88,96,102,108,114,120],"code",{"__ignoreMap":84},[89,90,93],"span",{"class":91,"line":92},"line",1,[89,94,95],{},"# 自动填写表单示例\n",[89,97,99],{"class":91,"line":98},2,[89,100,101],{},"browser.goto(\"https://example.com/form\")\n",[89,103,105],{"class":91,"line":104},3,[89,106,107],{},"browser.fill(\"#name\", \"张三\")\n",[89,109,111],{"class":91,"line":110},4,[89,112,113],{},"browser.fill(\"#email\", \"zhangsan@example.com\")\n",[89,115,117],{"class":91,"line":116},5,[89,118,119],{},"browser.click(\"#submit\")\n",[89,121,123],{"class":91,"line":122},6,[89,124,125],{},"browser.screenshot()\n",[21,127,129],{"id":128},"场景二数据监控","场景二：数据监控",[79,131,133],{"className":81,"code":132,"language":83,"meta":84,"style":84},"# 监控股票价格\nbrowser.goto(\"https://finance.example.com/stock/AAPL\")\nprice = browser.text(\".stock-price\")\nif float(price) > threshold:\n    send_alert(f\"AAPL 突破 {threshold} 美元\")\n",[86,134,135,140,145,150,155],{"__ignoreMap":84},[89,136,137],{"class":91,"line":92},[89,138,139],{},"# 监控股票价格\n",[89,141,142],{"class":91,"line":98},[89,143,144],{},"browser.goto(\"https://finance.example.com/stock/AAPL\")\n",[89,146,147],{"class":91,"line":104},[89,148,149],{},"price = browser.text(\".stock-price\")\n",[89,151,152],{"class":91,"line":110},[89,153,154],{},"if float(price) > threshold:\n",[89,156,157],{"class":91,"line":116},[89,158,159],{},"    send_alert(f\"AAPL 突破 {threshold} 美元\")\n",[21,161,163],{"id":162},"场景三批量处理","场景三：批量处理",[79,165,167],{"className":81,"code":166,"language":83,"meta":84,"style":84},"# 批量发送消息\nfor user in users:\n    browser.goto(f\"https://chat.example.com/user/{user}\")\n    browser.fill(\"#message\", \"Hello!\")\n    browser.click(\"#send\")\n",[86,168,169,174,179,184,189],{"__ignoreMap":84},[89,170,171],{"class":91,"line":92},[89,172,173],{},"# 批量发送消息\n",[89,175,176],{"class":91,"line":98},[89,177,178],{},"for user in users:\n",[89,180,181],{"class":91,"line":104},[89,182,183],{},"    browser.goto(f\"https://chat.example.com/user/{user}\")\n",[89,185,186],{"class":91,"line":110},[89,187,188],{},"    browser.fill(\"#message\", \"Hello!\")\n",[89,190,191],{"class":91,"line":116},[89,192,193],{},"    browser.click(\"#send\")\n",[17,195,196],{"id":196},"基础操作",[21,198,199],{"id":199},"启动浏览器",[79,201,203],{"className":81,"code":202,"language":83,"meta":84,"style":84},"from openclaw import Browser\n\nbrowser = Browser()\nbrowser.launch(headless=False)  # headless=True 隐藏浏览器\n",[86,204,205,210,216,221],{"__ignoreMap":84},[89,206,207],{"class":91,"line":92},[89,208,209],{},"from openclaw import Browser\n",[89,211,212],{"class":91,"line":98},[89,213,215],{"emptyLinePlaceholder":214},true,"\n",[89,217,218],{"class":91,"line":104},[89,219,220],{},"browser = Browser()\n",[89,222,223],{"class":91,"line":110},[89,224,225],{},"browser.launch(headless=False)  # headless=True 隐藏浏览器\n",[21,227,228],{"id":228},"导航",[79,230,232],{"className":81,"code":231,"language":83,"meta":84,"style":84},"browser.goto(\"https://example.com\")\nbrowser.back()\nbrowser.forward()\nbrowser.reload()\n",[86,233,234,239,244,249],{"__ignoreMap":84},[89,235,236],{"class":91,"line":92},[89,237,238],{},"browser.goto(\"https://example.com\")\n",[89,240,241],{"class":91,"line":98},[89,242,243],{},"browser.back()\n",[89,245,246],{"class":91,"line":104},[89,247,248],{},"browser.forward()\n",[89,250,251],{"class":91,"line":110},[89,252,253],{},"browser.reload()\n",[21,255,256],{"id":256},"元素操作",[79,258,260],{"className":81,"code":259,"language":83,"meta":84,"style":84},"# 点击\nbrowser.click(\"#button-id\")\nbrowser.click(\".submit-button\")\n\n# 填写\nbrowser.fill(\"#input-name\", \"value\")\nbrowser.fill(\"#textarea-content\", \"multi-line\\ntext\")\n\n# 选择\nbrowser.select(\"#dropdown\", \"option-value\")\nbrowser.check(\"#checkbox\")\nbrowser.uncheck(\"#checkbox\")\n",[86,261,262,267,272,277,281,286,291,297,302,308,314,320],{"__ignoreMap":84},[89,263,264],{"class":91,"line":92},[89,265,266],{},"# 点击\n",[89,268,269],{"class":91,"line":98},[89,270,271],{},"browser.click(\"#button-id\")\n",[89,273,274],{"class":91,"line":104},[89,275,276],{},"browser.click(\".submit-button\")\n",[89,278,279],{"class":91,"line":110},[89,280,215],{"emptyLinePlaceholder":214},[89,282,283],{"class":91,"line":116},[89,284,285],{},"# 填写\n",[89,287,288],{"class":91,"line":122},[89,289,290],{},"browser.fill(\"#input-name\", \"value\")\n",[89,292,294],{"class":91,"line":293},7,[89,295,296],{},"browser.fill(\"#textarea-content\", \"multi-line\\ntext\")\n",[89,298,300],{"class":91,"line":299},8,[89,301,215],{"emptyLinePlaceholder":214},[89,303,305],{"class":91,"line":304},9,[89,306,307],{},"# 选择\n",[89,309,311],{"class":91,"line":310},10,[89,312,313],{},"browser.select(\"#dropdown\", \"option-value\")\n",[89,315,317],{"class":91,"line":316},11,[89,318,319],{},"browser.check(\"#checkbox\")\n",[89,321,323],{"class":91,"line":322},12,[89,324,325],{},"browser.uncheck(\"#checkbox\")\n",[21,327,328],{"id":328},"获取内容",[79,330,332],{"className":81,"code":331,"language":83,"meta":84,"style":84},"# 文本\ntitle = browser.text(\"h1\")\ncontent = browser.text(\".article-content\")\n\n# 属性\nlink = browser.attr(\"a\", \"href\")\nimage = browser.attr(\"img\", \"src\")\n\n# HTML\nhtml = browser.html(\".container\")\n\n# 截图\nbrowser.screenshot(\"page.png\")\nbrowser.screenshot(\".element.png\", element=True)\n",[86,333,334,339,344,349,353,358,363,368,372,377,382,386,391,397],{"__ignoreMap":84},[89,335,336],{"class":91,"line":92},[89,337,338],{},"# 文本\n",[89,340,341],{"class":91,"line":98},[89,342,343],{},"title = browser.text(\"h1\")\n",[89,345,346],{"class":91,"line":104},[89,347,348],{},"content = browser.text(\".article-content\")\n",[89,350,351],{"class":91,"line":110},[89,352,215],{"emptyLinePlaceholder":214},[89,354,355],{"class":91,"line":116},[89,356,357],{},"# 属性\n",[89,359,360],{"class":91,"line":122},[89,361,362],{},"link = browser.attr(\"a\", \"href\")\n",[89,364,365],{"class":91,"line":293},[89,366,367],{},"image = browser.attr(\"img\", \"src\")\n",[89,369,370],{"class":91,"line":299},[89,371,215],{"emptyLinePlaceholder":214},[89,373,374],{"class":91,"line":304},[89,375,376],{},"# HTML\n",[89,378,379],{"class":91,"line":310},[89,380,381],{},"html = browser.html(\".container\")\n",[89,383,384],{"class":91,"line":316},[89,385,215],{"emptyLinePlaceholder":214},[89,387,388],{"class":91,"line":322},[89,389,390],{},"# 截图\n",[89,392,394],{"class":91,"line":393},13,[89,395,396],{},"browser.screenshot(\"page.png\")\n",[89,398,400],{"class":91,"line":399},14,[89,401,402],{},"browser.screenshot(\".element.png\", element=True)\n",[17,404,405],{"id":405},"等待和同步",[21,407,408],{"id":408},"显式等待",[79,410,412],{"className":81,"code":411,"language":83,"meta":84,"style":84},"# 等待元素出现\nbrowser.wait_for_selector(\"#result\", timeout=10000)\n\n# 等待导航完成\nbrowser.wait_for_navigation()\n\n# 等待 JavaScript 条件\nbrowser.wait_for_function(\"() => document.readyState === 'complete'\")\n",[86,413,414,419,424,428,433,438,442,447],{"__ignoreMap":84},[89,415,416],{"class":91,"line":92},[89,417,418],{},"# 等待元素出现\n",[89,420,421],{"class":91,"line":98},[89,422,423],{},"browser.wait_for_selector(\"#result\", timeout=10000)\n",[89,425,426],{"class":91,"line":104},[89,427,215],{"emptyLinePlaceholder":214},[89,429,430],{"class":91,"line":110},[89,431,432],{},"# 等待导航完成\n",[89,434,435],{"class":91,"line":116},[89,436,437],{},"browser.wait_for_navigation()\n",[89,439,440],{"class":91,"line":122},[89,441,215],{"emptyLinePlaceholder":214},[89,443,444],{"class":91,"line":293},[89,445,446],{},"# 等待 JavaScript 条件\n",[89,448,449],{"class":91,"line":299},[89,450,451],{},"browser.wait_for_function(\"() => document.readyState === 'complete'\")\n",[21,453,454],{"id":454},"自动等待",[13,456,457],{},"OpenClaw 会自动等待元素可操作：",[79,459,461],{"className":81,"code":460,"language":83,"meta":84,"style":84},"browser.click(\"#dynamic-button\")  # 自动等待按钮出现\n",[86,462,463],{"__ignoreMap":84},[89,464,465],{"class":91,"line":92},[89,466,460],{},[17,468,469],{"id":469},"高级技巧",[21,471,472],{"id":472},"滚动操作",[79,474,476],{"className":81,"code":475,"language":83,"meta":84,"style":84},"# 滚动到顶部\nbrowser.scroll_to_top()\n\n# 滚动到底部\nbrowser.scroll_to_bottom()\n\n# 滚动到元素\nbrowser.scroll_to(\"#target-element\")\n\n# 滚动指定像素\nbrowser.scroll_by(0, 500)\n",[86,477,478,483,488,492,497,502,506,511,516,520,525],{"__ignoreMap":84},[89,479,480],{"class":91,"line":92},[89,481,482],{},"# 滚动到顶部\n",[89,484,485],{"class":91,"line":98},[89,486,487],{},"browser.scroll_to_top()\n",[89,489,490],{"class":91,"line":104},[89,491,215],{"emptyLinePlaceholder":214},[89,493,494],{"class":91,"line":110},[89,495,496],{},"# 滚动到底部\n",[89,498,499],{"class":91,"line":116},[89,500,501],{},"browser.scroll_to_bottom()\n",[89,503,504],{"class":91,"line":122},[89,505,215],{"emptyLinePlaceholder":214},[89,507,508],{"class":91,"line":293},[89,509,510],{},"# 滚动到元素\n",[89,512,513],{"class":91,"line":299},[89,514,515],{},"browser.scroll_to(\"#target-element\")\n",[89,517,518],{"class":91,"line":304},[89,519,215],{"emptyLinePlaceholder":214},[89,521,522],{"class":91,"line":310},[89,523,524],{},"# 滚动指定像素\n",[89,526,527],{"class":91,"line":316},[89,528,529],{},"browser.scroll_by(0, 500)\n",[21,531,533],{"id":532},"iframe-处理","iframe 处理",[79,535,537],{"className":81,"code":536,"language":83,"meta":84,"style":84},"# 切换到 iframe\nwith browser.frame(\"#my-iframe\"):\n    browser.fill(\"#input\", \"value\")\n\n# 切回主框架\nbrowser.switch_to_main()\n",[86,538,539,544,549,554,558,563],{"__ignoreMap":84},[89,540,541],{"class":91,"line":92},[89,542,543],{},"# 切换到 iframe\n",[89,545,546],{"class":91,"line":98},[89,547,548],{},"with browser.frame(\"#my-iframe\"):\n",[89,550,551],{"class":91,"line":104},[89,552,553],{},"    browser.fill(\"#input\", \"value\")\n",[89,555,556],{"class":91,"line":110},[89,557,215],{"emptyLinePlaceholder":214},[89,559,560],{"class":91,"line":116},[89,561,562],{},"# 切回主框架\n",[89,564,565],{"class":91,"line":122},[89,566,567],{},"browser.switch_to_main()\n",[21,569,570],{"id":570},"键盘操作",[79,572,574],{"className":81,"code":573,"language":83,"meta":84,"style":84},"# 特殊按键\nbrowser.press(\"Enter\")\nbrowser.press(\"Control+a\")\nbrowser.press(\"Escape\")\n\n# 快捷键\nbrowser.key_down(\"Control\")\nbrowser.click(\"c\")\nbrowser.key_up(\"Control\")\n",[86,575,576,581,586,591,596,600,605,610,615],{"__ignoreMap":84},[89,577,578],{"class":91,"line":92},[89,579,580],{},"# 特殊按键\n",[89,582,583],{"class":91,"line":98},[89,584,585],{},"browser.press(\"Enter\")\n",[89,587,588],{"class":91,"line":104},[89,589,590],{},"browser.press(\"Control+a\")\n",[89,592,593],{"class":91,"line":110},[89,594,595],{},"browser.press(\"Escape\")\n",[89,597,598],{"class":91,"line":116},[89,599,215],{"emptyLinePlaceholder":214},[89,601,602],{"class":91,"line":122},[89,603,604],{},"# 快捷键\n",[89,606,607],{"class":91,"line":293},[89,608,609],{},"browser.key_down(\"Control\")\n",[89,611,612],{"class":91,"line":299},[89,613,614],{},"browser.click(\"c\")\n",[89,616,617],{"class":91,"line":304},[89,618,619],{},"browser.key_up(\"Control\")\n",[21,621,623],{"id":622},"javascript-执行","JavaScript 执行",[79,625,627],{"className":81,"code":626,"language":83,"meta":84,"style":84},"# 执行 JavaScript\nresult = browser.evaluate(\"\"\"\n    return document.title;\n\"\"\")\n\n# 注入脚本\nbrowser.evaluate(\"\"\"\n    window.scrollTo(0, document.body.scrollHeight);\n\"\"\")\n",[86,628,629,634,639,644,649,653,658,663,668],{"__ignoreMap":84},[89,630,631],{"class":91,"line":92},[89,632,633],{},"# 执行 JavaScript\n",[89,635,636],{"class":91,"line":98},[89,637,638],{},"result = browser.evaluate(\"\"\"\n",[89,640,641],{"class":91,"line":104},[89,642,643],{},"    return document.title;\n",[89,645,646],{"class":91,"line":110},[89,647,648],{},"\"\"\")\n",[89,650,651],{"class":91,"line":116},[89,652,215],{"emptyLinePlaceholder":214},[89,654,655],{"class":91,"line":122},[89,656,657],{},"# 注入脚本\n",[89,659,660],{"class":91,"line":293},[89,661,662],{},"browser.evaluate(\"\"\"\n",[89,664,665],{"class":91,"line":299},[89,666,667],{},"    window.scrollTo(0, document.body.scrollHeight);\n",[89,669,670],{"class":91,"line":304},[89,671,648],{},[17,673,674],{"id":674},"反爬虫处理",[21,676,678],{"id":677},"设置-user-agent","设置 User-Agent",[79,680,682],{"className":81,"code":681,"language":83,"meta":84,"style":84},"browser.launch(\n    args=[\n        \"--user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36\"\n    ]\n)\n",[86,683,684,689,694,699,704],{"__ignoreMap":84},[89,685,686],{"class":91,"line":92},[89,687,688],{},"browser.launch(\n",[89,690,691],{"class":91,"line":98},[89,692,693],{},"    args=[\n",[89,695,696],{"class":91,"line":104},[89,697,698],{},"        \"--user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36\"\n",[89,700,701],{"class":91,"line":110},[89,702,703],{},"    ]\n",[89,705,706],{"class":91,"line":116},[89,707,708],{},")\n",[21,710,712],{"id":711},"添加-cookies","添加 cookies",[79,714,716],{"className":81,"code":715,"language":83,"meta":84,"style":84},"browser.set_cookies({\n    \"name\": \"session\",\n    \"value\": \"xxx\",\n    \"domain\": \".example.com\"\n})\n",[86,717,718,723,728,733,738],{"__ignoreMap":84},[89,719,720],{"class":91,"line":92},[89,721,722],{},"browser.set_cookies({\n",[89,724,725],{"class":91,"line":98},[89,726,727],{},"    \"name\": \"session\",\n",[89,729,730],{"class":91,"line":104},[89,731,732],{},"    \"value\": \"xxx\",\n",[89,734,735],{"class":91,"line":110},[89,736,737],{},"    \"domain\": \".example.com\"\n",[89,739,740],{"class":91,"line":116},[89,741,742],{},"})\n",[21,744,745],{"id":745},"绕过检测",[79,747,749],{"className":81,"code":748,"language":83,"meta":84,"style":84},"browser.launch(\n    args=[\n        \"--disable-blink-features=AutomationControlled\",\n        \"--disable-dev-shm-usage\"\n    ]\n)\n",[86,750,751,755,759,764,769,773],{"__ignoreMap":84},[89,752,753],{"class":91,"line":92},[89,754,688],{},[89,756,757],{"class":91,"line":98},[89,758,693],{},[89,760,761],{"class":91,"line":104},[89,762,763],{},"        \"--disable-blink-features=AutomationControlled\",\n",[89,765,766],{"class":91,"line":110},[89,767,768],{},"        \"--disable-dev-shm-usage\"\n",[89,770,771],{"class":91,"line":116},[89,772,703],{},[89,774,775],{"class":91,"line":122},[89,776,708],{},[17,778,779],{"id":779},"错误处理",[21,781,782],{"id":782},"基本错误处理",[79,784,786],{"className":81,"code":785,"language":83,"meta":84,"style":84},"try:\n    browser.goto(\"https://example.com\")\nexcept TimeoutError:\n    print(\"页面加载超时\")\nexcept NavigationError as e:\n    print(f\"导航失败: {e}\")\n",[86,787,788,793,798,803,808,813],{"__ignoreMap":84},[89,789,790],{"class":91,"line":92},[89,791,792],{},"try:\n",[89,794,795],{"class":91,"line":98},[89,796,797],{},"    browser.goto(\"https://example.com\")\n",[89,799,800],{"class":91,"line":104},[89,801,802],{},"except TimeoutError:\n",[89,804,805],{"class":91,"line":110},[89,806,807],{},"    print(\"页面加载超时\")\n",[89,809,810],{"class":91,"line":116},[89,811,812],{},"except NavigationError as e:\n",[89,814,815],{"class":91,"line":122},[89,816,817],{},"    print(f\"导航失败: {e}\")\n",[21,819,820],{"id":820},"元素不存在处理",[79,822,824],{"className":81,"code":823,"language":83,"meta":84,"style":84},"element = browser.wait_for_selector(\"#optional\", timeout=3000)\nif element:\n    print(\"元素存在\")\nelse:\n    print(\"元素不存在，继续其他操作\")\n",[86,825,826,831,836,841,846],{"__ignoreMap":84},[89,827,828],{"class":91,"line":92},[89,829,830],{},"element = browser.wait_for_selector(\"#optional\", timeout=3000)\n",[89,832,833],{"class":91,"line":98},[89,834,835],{},"if element:\n",[89,837,838],{"class":91,"line":104},[89,839,840],{},"    print(\"元素存在\")\n",[89,842,843],{"class":91,"line":110},[89,844,845],{},"else:\n",[89,847,848],{"class":91,"line":116},[89,849,850],{},"    print(\"元素不存在，继续其他操作\")\n",[21,852,853],{"id":853},"重试机制",[79,855,857],{"className":81,"code":856,"language":83,"meta":84,"style":84},"from tenacity import retry, stop_after_attempt, wait_exponential\n\n@retry(stop=stop_after_attempt(3), wait=wait_exponential(multiplier=1, min=2, max=10))\ndef fetch_data():\n    browser.goto(\"https://example.com/data\")\n    return browser.text(\".data-content\")\n",[86,858,859,864,868,873,878,883],{"__ignoreMap":84},[89,860,861],{"class":91,"line":92},[89,862,863],{},"from tenacity import retry, stop_after_attempt, wait_exponential\n",[89,865,866],{"class":91,"line":98},[89,867,215],{"emptyLinePlaceholder":214},[89,869,870],{"class":91,"line":104},[89,871,872],{},"@retry(stop=stop_after_attempt(3), wait=wait_exponential(multiplier=1, min=2, max=10))\n",[89,874,875],{"class":91,"line":110},[89,876,877],{},"def fetch_data():\n",[89,879,880],{"class":91,"line":116},[89,881,882],{},"    browser.goto(\"https://example.com/data\")\n",[89,884,885],{"class":91,"line":122},[89,886,887],{},"    return browser.text(\".data-content\")\n",[17,889,890],{"id":890},"安全注意事项",[21,892,894],{"id":893},"_1-凭证保护","1. 凭证保护",[26,896,897,900,903],{},[29,898,899],{},"不要在代码中硬编码密码",[29,901,902],{},"使用环境变量或密钥管理服务",[29,904,905],{},"完成后清除 cookies 和 storage",[21,907,909],{"id":908},"_2-频率限制","2. 频率限制",[26,911,912,915,918],{},[29,913,914],{},"避免过高频率请求",[29,916,917],{},"添加适当延迟",[29,919,920],{},"遵守网站 robots.txt",[21,922,924],{"id":923},"_3-数据处理","3. 数据处理",[26,926,927,930,933],{},[29,928,929],{},"敏感数据加密存储",[29,931,932],{},"定期清理临时文件",[29,934,935],{},"遵循数据保护法规",[17,937,938],{"id":938},"实际案例",[21,940,942],{"id":941},"案例自动报税","案例：自动报税",[79,944,946],{"className":81,"code":945,"language":83,"meta":84,"style":84},"def monthly_tax_report():\n    # 1. 登录税务系统\n    browser.goto(\"https://tax.example.com/login\")\n    browser.fill(\"#username\", os.getenv(\"TAX_USER\"))\n    browser.fill(\"#password\", os.getenv(\"TAX_PASS\"))\n    browser.click(\"#login\")\n    \n    # 2. 导航到申报页面\n    browser.wait_for_selector(\".dashboard\")\n    browser.click(\"#monthly-declare\")\n    \n    # 3. 填写报表\n    browser.select(\"#month\", str(date.today().month - 1))\n    browser.fill(\"#revenue\", \"100000\")\n    browser.fill(\"#tax\", \"13000\")\n    \n    # 4. 提交\n    browser.click(\"#submit\")\n    browser.screenshot(\"tax-submitted.png\")\n    \n    # 5. 发送通知\n    notify_team(\"月报已提交\")\n",[86,947,948,953,958,963,968,973,978,983,988,993,998,1002,1007,1012,1017,1023,1028,1034,1040,1046,1051,1057],{"__ignoreMap":84},[89,949,950],{"class":91,"line":92},[89,951,952],{},"def monthly_tax_report():\n",[89,954,955],{"class":91,"line":98},[89,956,957],{},"    # 1. 登录税务系统\n",[89,959,960],{"class":91,"line":104},[89,961,962],{},"    browser.goto(\"https://tax.example.com/login\")\n",[89,964,965],{"class":91,"line":110},[89,966,967],{},"    browser.fill(\"#username\", os.getenv(\"TAX_USER\"))\n",[89,969,970],{"class":91,"line":116},[89,971,972],{},"    browser.fill(\"#password\", os.getenv(\"TAX_PASS\"))\n",[89,974,975],{"class":91,"line":122},[89,976,977],{},"    browser.click(\"#login\")\n",[89,979,980],{"class":91,"line":293},[89,981,982],{},"    \n",[89,984,985],{"class":91,"line":299},[89,986,987],{},"    # 2. 导航到申报页面\n",[89,989,990],{"class":91,"line":304},[89,991,992],{},"    browser.wait_for_selector(\".dashboard\")\n",[89,994,995],{"class":91,"line":310},[89,996,997],{},"    browser.click(\"#monthly-declare\")\n",[89,999,1000],{"class":91,"line":316},[89,1001,982],{},[89,1003,1004],{"class":91,"line":322},[89,1005,1006],{},"    # 3. 填写报表\n",[89,1008,1009],{"class":91,"line":393},[89,1010,1011],{},"    browser.select(\"#month\", str(date.today().month - 1))\n",[89,1013,1014],{"class":91,"line":399},[89,1015,1016],{},"    browser.fill(\"#revenue\", \"100000\")\n",[89,1018,1020],{"class":91,"line":1019},15,[89,1021,1022],{},"    browser.fill(\"#tax\", \"13000\")\n",[89,1024,1026],{"class":91,"line":1025},16,[89,1027,982],{},[89,1029,1031],{"class":91,"line":1030},17,[89,1032,1033],{},"    # 4. 提交\n",[89,1035,1037],{"class":91,"line":1036},18,[89,1038,1039],{},"    browser.click(\"#submit\")\n",[89,1041,1043],{"class":91,"line":1042},19,[89,1044,1045],{},"    browser.screenshot(\"tax-submitted.png\")\n",[89,1047,1049],{"class":91,"line":1048},20,[89,1050,982],{},[89,1052,1054],{"class":91,"line":1053},21,[89,1055,1056],{},"    # 5. 发送通知\n",[89,1058,1060],{"class":91,"line":1059},22,[89,1061,1062],{},"    notify_team(\"月报已提交\")\n",[21,1064,1066],{"id":1065},"案例竞品监控","案例：竞品监控",[79,1068,1070],{"className":81,"code":1069,"language":83,"meta":84,"style":84},"def monitor_competitors():\n    competitors = [\"a.com\", \"b.com\", \"c.com\"]\n    results = []\n    \n    for comp in competitors:\n        browser.goto(f\"https://{comp}/pricing\")\n        price = browser.text(\".price\")\n        features = browser.texts(\".feature-item\")\n        \n        results.append({\n            \"competitor\": comp,\n            \"price\": price,\n            \"features\": features\n        })\n    \n    # 保存结果\n    save_to_notion(results)\n    \n    # 检查变化并告警\n    check_and_alert(results)\n",[86,1071,1072,1077,1082,1087,1091,1096,1101,1106,1111,1116,1121,1126,1131,1136,1141,1145,1150,1155,1159,1164],{"__ignoreMap":84},[89,1073,1074],{"class":91,"line":92},[89,1075,1076],{},"def monitor_competitors():\n",[89,1078,1079],{"class":91,"line":98},[89,1080,1081],{},"    competitors = [\"a.com\", \"b.com\", \"c.com\"]\n",[89,1083,1084],{"class":91,"line":104},[89,1085,1086],{},"    results = []\n",[89,1088,1089],{"class":91,"line":110},[89,1090,982],{},[89,1092,1093],{"class":91,"line":116},[89,1094,1095],{},"    for comp in competitors:\n",[89,1097,1098],{"class":91,"line":122},[89,1099,1100],{},"        browser.goto(f\"https://{comp}/pricing\")\n",[89,1102,1103],{"class":91,"line":293},[89,1104,1105],{},"        price = browser.text(\".price\")\n",[89,1107,1108],{"class":91,"line":299},[89,1109,1110],{},"        features = browser.texts(\".feature-item\")\n",[89,1112,1113],{"class":91,"line":304},[89,1114,1115],{},"        \n",[89,1117,1118],{"class":91,"line":310},[89,1119,1120],{},"        results.append({\n",[89,1122,1123],{"class":91,"line":316},[89,1124,1125],{},"            \"competitor\": comp,\n",[89,1127,1128],{"class":91,"line":322},[89,1129,1130],{},"            \"price\": price,\n",[89,1132,1133],{"class":91,"line":393},[89,1134,1135],{},"            \"features\": features\n",[89,1137,1138],{"class":91,"line":399},[89,1139,1140],{},"        })\n",[89,1142,1143],{"class":91,"line":1019},[89,1144,982],{},[89,1146,1147],{"class":91,"line":1025},[89,1148,1149],{},"    # 保存结果\n",[89,1151,1152],{"class":91,"line":1030},[89,1153,1154],{},"    save_to_notion(results)\n",[89,1156,1157],{"class":91,"line":1036},[89,1158,982],{},[89,1160,1161],{"class":91,"line":1042},[89,1162,1163],{},"    # 检查变化并告警\n",[89,1165,1166],{"class":91,"line":1048},[89,1167,1168],{},"    check_and_alert(results)\n",[17,1170,1171],{"id":1171},"性能优化",[21,1173,1174],{"id":1174},"并行浏览器实例",[79,1176,1178],{"className":81,"code":1177,"language":83,"meta":84,"style":84},"from concurrent.futures import ThreadPoolExecutor\n\ndef process_site(site):\n    browser = Browser()\n    # ... 处理逻辑\n    browser.close()\n\nwith ThreadPoolExecutor(max_workers=3) as executor:\n    executor.map(process_site, sites)\n",[86,1179,1180,1185,1189,1194,1199,1204,1209,1213,1218],{"__ignoreMap":84},[89,1181,1182],{"class":91,"line":92},[89,1183,1184],{},"from concurrent.futures import ThreadPoolExecutor\n",[89,1186,1187],{"class":91,"line":98},[89,1188,215],{"emptyLinePlaceholder":214},[89,1190,1191],{"class":91,"line":104},[89,1192,1193],{},"def process_site(site):\n",[89,1195,1196],{"class":91,"line":110},[89,1197,1198],{},"    browser = Browser()\n",[89,1200,1201],{"class":91,"line":116},[89,1202,1203],{},"    # ... 处理逻辑\n",[89,1205,1206],{"class":91,"line":122},[89,1207,1208],{},"    browser.close()\n",[89,1210,1211],{"class":91,"line":293},[89,1212,215],{"emptyLinePlaceholder":214},[89,1214,1215],{"class":91,"line":299},[89,1216,1217],{},"with ThreadPoolExecutor(max_workers=3) as executor:\n",[89,1219,1220],{"class":91,"line":304},[89,1221,1222],{},"    executor.map(process_site, sites)\n",[21,1224,1225],{"id":1225},"资源清理",[79,1227,1229],{"className":81,"code":1228,"language":83,"meta":84,"style":84},"# 确保关闭浏览器\nbrowser.close()\n\n# 或使用上下文管理器\nwith Browser() as browser:\n    # ... 操作\n# 自动清理\n",[86,1230,1231,1236,1241,1245,1250,1255,1260],{"__ignoreMap":84},[89,1232,1233],{"class":91,"line":92},[89,1234,1235],{},"# 确保关闭浏览器\n",[89,1237,1238],{"class":91,"line":98},[89,1239,1240],{},"browser.close()\n",[89,1242,1243],{"class":91,"line":104},[89,1244,215],{"emptyLinePlaceholder":214},[89,1246,1247],{"class":91,"line":110},[89,1248,1249],{},"# 或使用上下文管理器\n",[89,1251,1252],{"class":91,"line":116},[89,1253,1254],{},"with Browser() as browser:\n",[89,1256,1257],{"class":91,"line":122},[89,1258,1259],{},"    # ... 操作\n",[89,1261,1262],{"class":91,"line":293},[89,1263,1264],{},"# 自动清理\n",[17,1266,1268],{"id":1267},"与-ai-结合的高级用法","与 AI 结合的高级用法",[21,1270,1271],{"id":1271},"智能页面分析",[13,1273,1274],{},"结合 AI 模型自动分析页面内容：",[79,1276,1278],{"className":81,"code":1277,"language":83,"meta":84,"style":84},"from openclaw import Browser\nfrom openclaw.ai import analyze_page\n\nbrowser = Browser()\nbrowser.goto(\"https://news.example.com\")\n\n# AI 自动提取关键信息\nsummary = analyze_page(browser.page.content(), \"提取文章标题和主要内容\")\nprint(summary)\n",[86,1279,1280,1284,1289,1293,1297,1302,1306,1311,1316],{"__ignoreMap":84},[89,1281,1282],{"class":91,"line":92},[89,1283,209],{},[89,1285,1286],{"class":91,"line":98},[89,1287,1288],{},"from openclaw.ai import analyze_page\n",[89,1290,1291],{"class":91,"line":104},[89,1292,215],{"emptyLinePlaceholder":214},[89,1294,1295],{"class":91,"line":110},[89,1296,220],{},[89,1298,1299],{"class":91,"line":116},[89,1300,1301],{},"browser.goto(\"https://news.example.com\")\n",[89,1303,1304],{"class":91,"line":122},[89,1305,215],{"emptyLinePlaceholder":214},[89,1307,1308],{"class":91,"line":293},[89,1309,1310],{},"# AI 自动提取关键信息\n",[89,1312,1313],{"class":91,"line":299},[89,1314,1315],{},"summary = analyze_page(browser.page.content(), \"提取文章标题和主要内容\")\n",[89,1317,1318],{"class":91,"line":304},[89,1319,1320],{},"print(summary)\n",[21,1322,1323],{"id":1323},"自动化测试",[13,1325,1326],{},"利用浏览器自动化进行 UI 测试：",[79,1328,1330],{"className":81,"code":1329,"language":83,"meta":84,"style":84},"def test_login_flow():\n    browser.goto(\"https://app.example.com/login\")\n    browser.fill(\"#username\", \"testuser\")\n    browser.fill(\"#password\", \"wrongpassword\")\n    browser.click(\"#login\")\n    \n    # 验证错误提示\n    error = browser.text(\".error-message\")\n    assert \"密码错误\" in error\n",[86,1331,1332,1337,1342,1347,1352,1356,1360,1365,1370],{"__ignoreMap":84},[89,1333,1334],{"class":91,"line":92},[89,1335,1336],{},"def test_login_flow():\n",[89,1338,1339],{"class":91,"line":98},[89,1340,1341],{},"    browser.goto(\"https://app.example.com/login\")\n",[89,1343,1344],{"class":91,"line":104},[89,1345,1346],{},"    browser.fill(\"#username\", \"testuser\")\n",[89,1348,1349],{"class":91,"line":110},[89,1350,1351],{},"    browser.fill(\"#password\", \"wrongpassword\")\n",[89,1353,1354],{"class":91,"line":116},[89,1355,977],{},[89,1357,1358],{"class":91,"line":122},[89,1359,982],{},[89,1361,1362],{"class":91,"line":293},[89,1363,1364],{},"    # 验证错误提示\n",[89,1366,1367],{"class":91,"line":299},[89,1368,1369],{},"    error = browser.text(\".error-message\")\n",[89,1371,1372],{"class":91,"line":304},[89,1373,1374],{},"    assert \"密码错误\" in error\n",[21,1376,1377],{"id":1377},"批量数据采集",[13,1379,1380],{},"定时采集公开数据：",[79,1382,1384],{"className":81,"code":1383,"language":83,"meta":84,"style":84},"import schedule\nfrom datetime import datetime\n\ndef collect_pricing_data():\n    products = get_product_list()\n    data = []\n    \n    for product in products:\n        browser.goto(f\"https://shop.example.com/{product}\")\n        price = browser.text(\".price\")\n        data.append({\"product\": product, \"price\": price, \"time\": datetime.now()})\n    \n    save_to_database(data)\n\n# 每天早上 9 点执行\nschedule.every().day.at(\"09:00\").do(collect_pricing_data)\n",[86,1385,1386,1391,1396,1400,1405,1410,1415,1419,1424,1429,1433,1438,1442,1447,1451,1456],{"__ignoreMap":84},[89,1387,1388],{"class":91,"line":92},[89,1389,1390],{},"import schedule\n",[89,1392,1393],{"class":91,"line":98},[89,1394,1395],{},"from datetime import datetime\n",[89,1397,1398],{"class":91,"line":104},[89,1399,215],{"emptyLinePlaceholder":214},[89,1401,1402],{"class":91,"line":110},[89,1403,1404],{},"def collect_pricing_data():\n",[89,1406,1407],{"class":91,"line":116},[89,1408,1409],{},"    products = get_product_list()\n",[89,1411,1412],{"class":91,"line":122},[89,1413,1414],{},"    data = []\n",[89,1416,1417],{"class":91,"line":293},[89,1418,982],{},[89,1420,1421],{"class":91,"line":299},[89,1422,1423],{},"    for product in products:\n",[89,1425,1426],{"class":91,"line":304},[89,1427,1428],{},"        browser.goto(f\"https://shop.example.com/{product}\")\n",[89,1430,1431],{"class":91,"line":310},[89,1432,1105],{},[89,1434,1435],{"class":91,"line":316},[89,1436,1437],{},"        data.append({\"product\": product, \"price\": price, \"time\": datetime.now()})\n",[89,1439,1440],{"class":91,"line":322},[89,1441,982],{},[89,1443,1444],{"class":91,"line":393},[89,1445,1446],{},"    save_to_database(data)\n",[89,1448,1449],{"class":91,"line":399},[89,1450,215],{"emptyLinePlaceholder":214},[89,1452,1453],{"class":91,"line":1019},[89,1454,1455],{},"# 每天早上 9 点执行\n",[89,1457,1458],{"class":91,"line":1025},[89,1459,1460],{},"schedule.every().day.at(\"09:00\").do(collect_pricing_data)\n",[17,1462,1463],{"id":1463},"常见陷阱",[21,1465,1467],{"id":1466},"_1-动态内容处理","1. 动态内容处理",[13,1469,1470],{},"有些页面内容通过 JavaScript 动态加载：",[79,1472,1474],{"className":81,"code":1473,"language":83,"meta":84,"style":84},"# 等待动态内容加载\nbrowser.wait_for_selector(\".loaded-content\", timeout=15000)\n",[86,1475,1476,1481],{"__ignoreMap":84},[89,1477,1478],{"class":91,"line":92},[89,1479,1480],{},"# 等待动态内容加载\n",[89,1482,1483],{"class":91,"line":98},[89,1484,1485],{},"browser.wait_for_selector(\".loaded-content\", timeout=15000)\n",[21,1487,1489],{"id":1488},"_2-验证码处理","2. 验证码处理",[13,1491,1492],{},"避免自动化访问触发验证码：",[26,1494,1495,1498,1501],{},[29,1496,1497],{},"控制请求频率",[29,1499,1500],{},"使用真实浏览器配置",[29,1502,1503],{},"考虑使用验证码解决服务",[21,1505,1507],{"id":1506},"_3-会话管理","3. 会话管理",[13,1509,1510],{},"避免会话冲突：",[79,1512,1514],{"className":81,"code":1513,"language":83,"meta":84,"style":84},"# 每个实例使用独立配置\nbrowser.launch(\n    user_data_dir=f\"/tmp/browser-{user_id}\",\n    args=[\"--disable-blink-features=AutomationControlled\"]\n)\n",[86,1515,1516,1521,1525,1530,1535],{"__ignoreMap":84},[89,1517,1518],{"class":91,"line":92},[89,1519,1520],{},"# 每个实例使用独立配置\n",[89,1522,1523],{"class":91,"line":98},[89,1524,688],{},[89,1526,1527],{"class":91,"line":104},[89,1528,1529],{},"    user_data_dir=f\"/tmp/browser-{user_id}\",\n",[89,1531,1532],{"class":91,"line":110},[89,1533,1534],{},"    args=[\"--disable-blink-features=AutomationControlled\"]\n",[89,1536,1537],{"class":91,"line":116},[89,1538,708],{},[17,1540,1541],{"id":1541},"小结",[13,1543,1544],{},"浏览器自动化是 OpenClaw 的强大功能，掌握这些技巧可以大幅提升重复性工作的效率。结合 AI 能力，可以实现更智能的数据采集和自动化流程。",[17,1546,1547],{"id":1547},"下一步",[26,1549,1550,1557,1563],{},[29,1551,1552],{},[1553,1554,1556],"a",{"href":1555},"/docs/manual/core-capabilities","核心能力总览",[29,1558,1559],{},[1553,1560,1562],{"href":1561},"/best-practices/skills-development","技能开发指南",[29,1564,1565],{},[1553,1566,1568],{"href":1567},"/docs/operations/safety-basics","安全配置基础",[1570,1571,1572],"style",{},"html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"title":84,"searchDepth":98,"depth":98,"links":1574},[1575,1580,1585,1591,1595,1601,1606,1611,1616,1620,1624,1629,1634,1635],{"id":19,"depth":98,"text":19,"children":1576},[1577,1578,1579],{"id":23,"depth":104,"text":24},{"id":43,"depth":104,"text":44},{"id":58,"depth":104,"text":59},{"id":73,"depth":98,"text":73,"children":1581},[1582,1583,1584],{"id":76,"depth":104,"text":77},{"id":128,"depth":104,"text":129},{"id":162,"depth":104,"text":163},{"id":196,"depth":98,"text":196,"children":1586},[1587,1588,1589,1590],{"id":199,"depth":104,"text":199},{"id":228,"depth":104,"text":228},{"id":256,"depth":104,"text":256},{"id":328,"depth":104,"text":328},{"id":405,"depth":98,"text":405,"children":1592},[1593,1594],{"id":408,"depth":104,"text":408},{"id":454,"depth":104,"text":454},{"id":469,"depth":98,"text":469,"children":1596},[1597,1598,1599,1600],{"id":472,"depth":104,"text":472},{"id":532,"depth":104,"text":533},{"id":570,"depth":104,"text":570},{"id":622,"depth":104,"text":623},{"id":674,"depth":98,"text":674,"children":1602},[1603,1604,1605],{"id":677,"depth":104,"text":678},{"id":711,"depth":104,"text":712},{"id":745,"depth":104,"text":745},{"id":779,"depth":98,"text":779,"children":1607},[1608,1609,1610],{"id":782,"depth":104,"text":782},{"id":820,"depth":104,"text":820},{"id":853,"depth":104,"text":853},{"id":890,"depth":98,"text":890,"children":1612},[1613,1614,1615],{"id":893,"depth":104,"text":894},{"id":908,"depth":104,"text":909},{"id":923,"depth":104,"text":924},{"id":938,"depth":98,"text":938,"children":1617},[1618,1619],{"id":941,"depth":104,"text":942},{"id":1065,"depth":104,"text":1066},{"id":1171,"depth":98,"text":1171,"children":1621},[1622,1623],{"id":1174,"depth":104,"text":1174},{"id":1225,"depth":104,"text":1225},{"id":1267,"depth":98,"text":1268,"children":1625},[1626,1627,1628],{"id":1271,"depth":104,"text":1271},{"id":1323,"depth":104,"text":1323},{"id":1377,"depth":104,"text":1377},{"id":1463,"depth":98,"text":1463,"children":1630},[1631,1632,1633],{"id":1466,"depth":104,"text":1467},{"id":1488,"depth":104,"text":1489},{"id":1506,"depth":104,"text":1507},{"id":1541,"depth":98,"text":1541},{"id":1547,"depth":98,"text":1547},"进阶指南",null,"利用 OpenClaw 的浏览器控制能力实现网页自动化，提升工作效率。","中级","md",{},"/best-practices/browser-automation",{"title":5,"description":1638},"third-party","best-practices/browser-automation",[1647,1648,1649,1650],"browser","automation","chromium","workflows","2026-03-11","_RXXpuHNz5El6Nbp5Qhe7l-cu4jku326wKhVWAoD714",{"generatedAt":1654,"collections":1655,"totals":4163},"2026-04-01T13:45:24.307Z",{"docs":1656,"news":2807,"bestPractices":3546},{"count":1657,"items":1658},161,[1659,1673,1684,1693,1703,1708,1713,1719,1727,1734,1743,1750,1759,1768,1777,1784,1791,1797,1804,1811,1819,1827,1836,1845,1854,1863,1870,1875,1883,1892,1900,1909,1917,1922,1928,1935,1944,1951,1959,1964,1971,1976,1984,1991,1996,2006,2015,2023,2031,2038,2046,2052,2057,2063,2072,2077,2082,2089,2095,2103,2110,2116,2123,2128,2134,2141,2147,2157,2163,2172,2178,2183,2188,2196,2203,2209,2216,2224,2231,2238,2247,2255,2263,2270,2276,2283,2289,2298,2304,2311,2316,2325,2333,2341,2350,2357,2364,2374,2380,2386,2390,2398,2405,2412,2419,2425,2432,2437,2447,2458,2464,2470,2476,2482,2489,2496,2503,2512,2519,2524,2531,2538,2547,2554,2561,2567,2573,2580,2586,2591,2596,2603,2609,2617,2623,2630,2636,2645,2651,2657,2664,2670,2676,2684,2692,2697,2705,2711,2717,2724,2731,2736,2743,2753,2760,2766,2773,2779,2786,2792,2801],{"title":1660,"description":1661,"path":1662,"category":1663,"updatedAt":1664,"sourceType":1665,"tags":1666},"OpenClaw 核心概念","用一页建立 OpenClaw 的核心心智图，分清 Gateway、Agent、Channels、Tools、Skills、Memory 和 Control UI 各自负责什么。","/docs/getting-started/core-concepts","入门","2026-03-16","internal",[1667,1668,1669,1670,1671,1672],"concepts","gateway","agent","channels","tools","memory",{"title":1674,"description":1675,"path":1676,"category":1663,"updatedAt":1677,"sourceType":1665,"tags":1678},"如果你是开发团队，应该先走哪条入口","面向开发团队和独立开发者，帮助判断应该先理解架构、配置、渠道还是扩展能力，避免刚跑通就把 OpenClaw 做成一团难维护的实验场。","/docs/getting-started/developer-team-entry","2026-03-23",[1679,1680,1681,1682,1683],"developers","teams","architecture","configuration","skills",{"title":1685,"description":1686,"path":1687,"category":1663,"updatedAt":1677,"sourceType":1665,"tags":1688},"如果你是企业运维，应该先走哪条入口","面向企业运维和长期维护者，帮助判断应该先看 Gateway、远程访问、安全还是升级治理，避免把 OpenClaw 当成一次性安装项目。","/docs/getting-started/enterprise-ops-entry",[1689,1690,1668,1691,1692],"enterprise","operations","security","upgrades",{"title":1694,"description":1695,"path":1696,"category":1663,"updatedAt":1697,"sourceType":1698,"tags":1699},"创建第一个 Agent","从零开始创建你的第一个 OpenClaw Agent，理解 Agent 的基本概念和配置方式。","/docs/getting-started/first-agent","2026-03-12","official",[1669,1700,1701,1702],"quickstart","tutorial","basics",{"title":1704,"description":1705,"path":1706,"category":1663,"updatedAt":1697,"sourceType":1698,"tags":1707},"接入第一个渠道","学习如何将 OpenClaw Agent 接入消息渠道，实现多平台统一管理。","/docs/getting-started/first-channel",[1670,1700,1701,1702],{"title":1709,"description":1710,"path":1711,"category":1663,"updatedAt":1697,"sourceType":1698,"tags":1712},"添加第一个技能","学习如何为 OpenClaw Agent 添加和配置技能，让助手具备更多能力。","/docs/getting-started/first-skill",[1683,1700,1701,1702],{"title":1714,"description":1715,"path":1716,"category":1663,"updatedAt":1697,"sourceType":1698,"tags":1717},"创建第一个工作流","学习如何使用 OpenClaw 的工作流功能，实现自动化任务处理。","/docs/getting-started/first-workflow",[1718,1648,1700,1701],"workflow",{"title":1720,"description":1721,"path":1722,"category":1663,"updatedAt":1651,"sourceType":1698,"tags":1723},"快速入门","按官方推荐链路，在本机完成 OpenClaw 的安装、初始化、状态检查和第一次进入 Control UI。","/docs/getting-started/getting-started",[1700,1724,1725,1726],"installation","onboarding","dashboard",{"title":1728,"description":1729,"path":1730,"category":1663,"updatedAt":1651,"sourceType":1698,"tags":1731},"Onboarding 引导流程说明","基于官方 Onboarding 思路，说明第一次配置 OpenClaw 时应该先做什么、后做什么，以及哪些事情不要过早展开。","/docs/getting-started/onboarding-guide",[1725,1732,1733,1668],"daemon","setup",{"title":1735,"description":1736,"path":1737,"category":1663,"updatedAt":1738,"sourceType":1698,"tags":1739},"Onboarding 的本地模式和远程模式怎么选","基于最新官方 Onboarding Wizard 文档，整理 openclaw onboard 在 local 与 remote 两种模式下分别会做什么、不会做什么，以及第一次使用更适合走哪条路。","/docs/getting-started/onboarding-local-vs-remote","2026-03-21",[1725,1740,1741,1668,1742],"remote","local","wizard",{"title":1744,"description":1745,"path":1746,"category":1663,"updatedAt":1677,"sourceType":1665,"tags":1747},"如果你是个人用户，应该先走哪条入口","面向个人重度使用者，帮助判断应该先从 Dashboard、WebChat、渠道、模型还是 Skills 开始，而不是一上来就把整套能力全部接齐。","/docs/getting-started/personal-user-entry",[1748,1749,1726,1670,1683],"personal","getting-started",{"title":1751,"description":1752,"path":1753,"category":1754,"updatedAt":1651,"sourceType":1698,"tags":1755},"如何开始系统理解 OpenClaw","给第一次接触 OpenClaw 的中文用户一条更清晰的阅读顺序，先建立整体认知，再进入安装、接入和运维细节。","/docs/getting-started/reading-path","使用指南",[1756,1757,1758,1725],"reading-path","overview","docs",{"title":1760,"description":1761,"path":1762,"category":1763,"updatedAt":1764,"sourceType":1698,"tags":1765},"OpenClaw 是什么","用中文快速理解 OpenClaw 的定位、使用方式和它与普通聊天产品的差别。","/docs/getting-started/what-is-openclaw","产品","2026-03-13",[1757,1766,1670,1767],"self-hosted","assistant",{"title":1769,"description":1770,"path":1771,"category":1663,"updatedAt":1677,"sourceType":1665,"tags":1772},"我什么时候再上 Skills、Plugins 和多 Agent","帮你判断现在是否已经适合进入 Skills、Plugins、Hooks 或多 Agent 扩展，而不是在基础链路未稳定时过早堆复杂度。","/docs/getting-started/when-to-add-skills-plugins-and-multi-agent",[1683,1773,1774,1775,1776],"plugins","multi-agent","hooks","decision",{"title":1778,"description":1779,"path":1780,"category":1663,"updatedAt":1781,"sourceType":1665,"tags":1782},"我什么时候该开始接入渠道","帮你判断现在是否已经适合进入 Telegram、WhatsApp、飞书等渠道接入，而不是在最小链路未稳定时过早增加复杂度。","/docs/getting-started/when-to-connect-channels","2026-03-24",[1670,1725,1776,1668,1783],"safety",{"title":1785,"description":1786,"path":1787,"category":1663,"updatedAt":1781,"sourceType":1665,"tags":1788},"模型、配置和安全这三页分别什么时候看","用最短方式判断什么时候该去看模型选择、关键配置和安全实践，避免把问题带到错误页面里越看越乱。","/docs/getting-started/when-to-read-models-config-security",[1789,1790,1691,1776,1749],"models","configurations",{"title":1792,"description":1793,"path":1794,"category":1663,"updatedAt":1781,"sourceType":1665,"tags":1795},"Dashboard、WebChat 和聊天渠道分别什么时候用","把 OpenClaw 最常见的三个使用入口拆开，帮助你判断什么时候该进 Dashboard，什么时候该用 WebChat，什么时候才值得接入 Telegram、飞书或 WhatsApp。","/docs/getting-started/when-to-use-dashboard-webchat-or-channels",[1726,1796,1670,1776,1749],"webchat",{"title":1798,"description":1799,"path":1800,"category":1663,"updatedAt":1781,"sourceType":1665,"tags":1801},"我应该先从哪个页面开始","面向第一次进入中文站的用户，按目标、角色和当前问题判断应该先看文档、学习路径、主题中心、视频还是案例。","/docs/getting-started/which-page-should-i-start-with",[1749,1776,1758,1802,1803],"paths","topics",{"title":1805,"description":1806,"path":1807,"category":1763,"updatedAt":1651,"sourceType":1698,"tags":1808},"OpenClaw 适合哪些用户","判断你是否真的需要 OpenClaw，以及它更适合哪类中文用户和团队。","/docs/getting-started/who-is-openclaw-for",[1809,1680,1810,1766],"users","scenarios",{"title":1812,"description":1813,"path":1814,"category":1815,"updatedAt":1651,"sourceType":1644,"tags":1816},"Agent 工作区结构说明","了解 OpenClaw 工作区里各类核心文件的作用，包括 AGENTS、SOUL、USER、MEMORY、日志、skills 和 sessions。","/docs/manual/agent-workspace","功能",[1817,1818,1672,1683],"workspace","soul",{"title":1820,"description":1821,"path":1822,"category":1823,"updatedAt":1651,"sourceType":1698,"tags":1824},"Gateway 架构概览","理解 OpenClaw 的 Gateway、Control-plane 客户端和 Nodes 如何协作，以及为什么它是一个单一长连接网关系统。","/docs/manual/architecture","架构",[1668,1825,1681,1826],"nodes","control-plane",{"title":1828,"description":1829,"path":1830,"category":1815,"updatedAt":1831,"sourceType":1698,"tags":1832},"bindings 的优先级怎么影响 agent 选择","基于最新官方 Channel Routing 与 Configuration 文档，解释 peer、guild、team、account、channel 和 default agent 的命中顺序，以及为什么 binding 命中问题常常看起来像“模型选错了”。","/docs/manual/bindings-precedence-and-agent-selection","2026-03-22",[1833,1834,1835,1670,1682],"bindings","routing","agents",{"title":1837,"description":1838,"path":1839,"category":1815,"updatedAt":1781,"sourceType":1698,"tags":1840},"BlueBubbles 与 iMessage 接入","为什么官方更推荐 BlueBubbles，而不是 legacy imsg，以及远程 Mac 和 webhook 模式下该注意什么。","/docs/manual/bluebubbles-imessage",[1670,1841,1842,1843,1844],"bluebubbles","imessage","macos","webhook",{"title":1846,"description":1847,"path":1848,"category":1815,"updatedAt":1849,"sourceType":1698,"tags":1850},"Broadcast Groups 和普通 routing 的边界怎么区分","基于最新官方 Broadcast Groups 与 Channel Routing 文档，解释 Broadcast Groups 何时会生效、为什么它不是 bindings 的替代品，以及多代理同群运行时的 session、工具和响应顺序边界。","/docs/manual/broadcast-groups-and-routing-boundaries","2026-03-25",[1851,1834,1852,1835,1853],"broadcast","groups","session",{"title":1855,"description":1856,"path":1857,"category":1858,"updatedAt":1859,"sourceType":1698,"tags":1860},"Broadcast 和普通 bindings 谁先生效，什么时候该用哪一个","基于最新官方 Broadcast Groups、Channel Routing 与 Groups 文档，整理 broadcast、bindings、group policy 和 mention gating 的生效顺序，帮助团队区分“多 agent 协作”和“单 agent 路由”到底该落在哪层。","/docs/manual/broadcast-vs-binding-precedence","使用说明","2026-03-29",[1851,1833,1834,1852,1861,1862],"precedence","manual",{"title":1864,"description":1865,"path":1866,"category":1815,"updatedAt":1651,"sourceType":1698,"tags":1867},"Camera Capture 与拍照/短视频能力","理解 OpenClaw 的 camera capture 如何通过 nodes 暴露给 agent，以及设备权限和用户设置为什么比命令本身更重要。","/docs/manual/camera-capture",[1868,1825,1869,1843,1669],"camera","mobile",{"title":1871,"description":1872,"path":1873,"category":1815,"updatedAt":1738,"sourceType":1698,"tags":1874},"频道与 Session 路由怎么决定上下文边界","基于最新官方 Channel Routing 文档，整理 OpenClaw 的 session key 形状、DM/main 合并、线程隔离、binding 优先级，以及为什么 routing 不是模型自己决定的。","/docs/manual/channel-routing-and-session-keys",[1834,1853,1670,1833,1852],{"title":1876,"description":1877,"path":1878,"category":1815,"updatedAt":1781,"sourceType":1698,"tags":1879},"OpenClaw 渠道能力概览","了解 OpenClaw 当前支持的主要聊天渠道、接入方式，以及第一次应该如何选择和配置渠道。","/docs/manual/channels-overview",[1670,1880,1881,1882],"telegram","whatsapp","discord",{"title":1884,"description":1885,"path":1886,"category":1815,"updatedAt":1831,"sourceType":1698,"tags":1887},"ClawHub 的搜索、信号和信任边界","基于最新官方 ClawHub 文档，整理技能注册表里的搜索、标签、下载信号、举报与 moderation 机制，以及中文用户挑选技能时最该看什么。","/docs/manual/clawhub-discovery-and-trust-signals",[1888,1683,1889,1890,1891],"clawhub","registry","moderation","discovery",{"title":1893,"description":1894,"path":1895,"category":1815,"updatedAt":1738,"sourceType":1698,"tags":1896},"ClawHub 的版本、锁文件和 sync 怎么理解","基于最新官方 ClawHub 文档，整理 skill bundle 的版本化、.clawhub/lock.json 的作用、sync 的扫描规则，以及为什么 ClawHub 不只是“安装站”。","/docs/manual/clawhub-versioning-and-sync",[1888,1683,1897,1898,1899],"sync","lockfile","versioning",{"title":1901,"description":1902,"path":1903,"category":1815,"updatedAt":1738,"sourceType":1698,"tags":1904},"社区插件目录怎么用","基于最新官方插件文档，整理 Community plugins 页面里最重要的筛选思路，帮助你判断哪些第三方插件值得装、哪些只适合观察。","/docs/manual/community-plugins-directory",[1773,1905,1906,1907,1908],"community","ecosystem","extensions","directory",{"title":1910,"description":1911,"path":1912,"category":1858,"updatedAt":1859,"sourceType":1698,"tags":1913},"Control UI 的 Tools 面板为什么更像运行时目录，不是静态配置页","基于最新官方 WebChat 文档，解释 Control UI `/agents` 里的 Tools 面板如何通过 tools.catalog 拉取运行时目录、何时回退到静态列表，以及为什么真正的可用性最终仍由 allow/deny 和多层策略优先级决定。","/docs/manual/control-ui-tools-catalog-and-policy-precedence",[1914,1671,1915,1916,1862],"control-ui","catalog","policy",{"title":1918,"description":1919,"path":1920,"category":1663,"updatedAt":1651,"sourceType":1698,"tags":1921},"Control UI 是什么","理解 Control UI 在 OpenClaw 中承担的角色，以及首次安装、排错和长期运行时应该如何使用它。","/docs/manual/control-ui",[1726,1914,1668,1690],{"title":1923,"description":1924,"path":1555,"category":1763,"updatedAt":1651,"sourceType":1698,"tags":1925},"OpenClaw 核心能力总览","用一页理解 OpenClaw 当前最重要的能力结构，包括渠道、控制台、扩展和运行边界。",[1926,1670,1683,1927],"capabilities","voice",{"title":1929,"description":1930,"path":1931,"category":1815,"updatedAt":1738,"sourceType":1698,"tags":1932},"Dashboard 快速打开与认证行为","基于最新官方 Dashboard 文档，整理 openclaw dashboard 的快速打开路径、token 在浏览器里的保存行为，以及本地与远程打开时最容易混淆的认证边界。","/docs/manual/dashboard-fast-path-and-auth",[1726,1914,1933,1934,1647],"auth","token",{"title":1936,"description":1937,"path":1938,"category":1815,"updatedAt":1738,"sourceType":1698,"tags":1939},"Deepgram 音频转录怎么接","基于最新官方 Deepgram provider 文档，整理 OpenClaw 里语音转录的接入方式、配置重点，以及它和聊天模型 provider 的边界。","/docs/manual/deepgram-audio-transcription",[1940,1941,1942,1927,1943],"deepgram","transcription","audio","providers",{"title":1945,"description":1946,"path":1947,"category":1815,"updatedAt":1651,"sourceType":1698,"tags":1948},"Discord 与 Slack 接入重点","团队协作场景里，Discord 和 Slack 分别适合什么、和 Telegram/WhatsApp 的差别在哪里，以及群组响应策略该怎么收敛。","/docs/manual/discord-and-slack",[1670,1882,1949,1817,1950],"slack","team",{"title":1952,"description":1953,"path":1954,"category":1815,"updatedAt":1697,"sourceType":1698,"tags":1955},"Exec 工具、apply_patch 与执行审批","基于官方 exec、apply_patch 和 exec approvals 文档，解释高权限工具如何工作，为什么审批是硬边界，以及哪些配置最值得先看。","/docs/manual/exec-tools-and-approvals",[1956,1957,1958,1671,1691],"exec","apply-patch","approvals",{"title":1960,"description":1961,"path":1962,"category":1815,"updatedAt":1859,"sourceType":1698,"tags":1963},"从 Skills 到 Workflows：OpenClaw 扩展栈完整地图","把 Skills、Tools、插件、Hooks、ClawHub、OpenProse、Lobster 和审批流程收成一张扩展地图，帮助你判断什么时候该引入哪一层复杂度。","/docs/manual/extension-stack-full-map",[1683,1671,1773,1775,1650,1958],{"title":1965,"description":1966,"path":1967,"category":1858,"updatedAt":1859,"sourceType":1698,"tags":1968},"Telegram forum topic、群 session 和 thread key 应该怎么一起看","基于最新官方 Groups 与 Channel Routing 文档，整理 Telegram forum topic 在 OpenClaw 里的 session key 形态、topic 级上下文隔离和群触发边界，帮助团队理解“同一群里的不同 topic”为什么已经不是同一条会话。","/docs/manual/forum-topics-and-group-session-keys",[1880,1969,1970,1834,1862],"forum-topics","sessions",{"title":1972,"description":1973,"path":1974,"category":1815,"updatedAt":1859,"sourceType":1698,"tags":1975},"从第一次跑通到长期运行：OpenClaw 的完整系统地图","把安装、Gateway、控制面、渠道、模型、记忆、自动化和长期维护放到一条完整主线上，帮助你从“先跑起来”过渡到“长期稳定使用”。","/docs/manual/from-first-run-to-long-running-system",[1681,1668,1670,1789,1672,1648],{"title":1977,"description":1978,"path":1979,"category":1815,"updatedAt":1849,"sourceType":1698,"tags":1980},"Headless nodes 和设备宿主边界怎么分","基于最新官方 Nodes、Architecture 与 Pairing 文档，解释 headless nodes、普通设备节点和 Gateway 之间的职责差异，帮助团队理解“能力跑在哪台机器上”这条边界。","/docs/manual/headless-node-hosts-and-device-boundaries",[1825,1981,1982,1983,1668],"headless","pairing","devices",{"title":1985,"description":1986,"path":1987,"category":1815,"updatedAt":1738,"sourceType":1698,"tags":1988},"Hooks 生命周期与事件类型","基于最新官方 Hooks 文档，解释 agent:bootstrap、session start/end、/new、/reset 等生命周期事件分别适合放什么逻辑，以及什么时候该用 hook pack 或插件托管 hooks。","/docs/manual/hook-lifecycle-events",[1775,1989,1990,1648,1773],"lifecycle","events",{"title":1992,"description":1993,"path":1994,"category":1815,"updatedAt":1651,"sourceType":1698,"tags":1995},"Hooks 能做什么","从中文用户角度理解 OpenClaw 里的 hooks，不把它只看成技术细节，而看成自动化扩展点。","/docs/manual/hooks-overview",[1775,1648,1650,1990],{"title":1997,"description":1998,"path":1999,"category":1815,"updatedAt":1831,"sourceType":1698,"tags":2000},"消息入口的去重、合并和排队是怎么工作的","基于最新官方 Messages 文档，解释 OpenClaw 的 inbound dedupe、inbound debounce、active-run queue 和 outbound chunking 各自解决什么问题，避免把“回复慢”都误判成模型问题。","/docs/manual/inbound-dedupe-and-debounce",[2001,2002,2003,2004,2005],"messages","queueing","dedupe","debounce","delivery",{"title":2007,"description":2008,"path":2009,"category":1815,"updatedAt":1781,"sourceType":1698,"tags":2010},"本地模型支持（Ollama）","使用 Ollama 在本地运行大语言模型，实现隐私优先、零成本的 AI 助手体验。","/docs/manual/local-models-ollama",[2011,2012,2013,2014,1766],"ollama","local-model","llm","privacy",{"title":2016,"description":2017,"path":2018,"category":1815,"updatedAt":1738,"sourceType":1698,"tags":2019},"节点位置能力怎么用","基于最新官方 Location Command 文档，整理 OpenClaw 的 location.get 能力、权限模式、精确位置开关，以及它和普通聊天入口的边界。","/docs/manual/location-command-nodes",[2020,1825,1869,2021,2022],"location","permissions","gps",{"title":2024,"description":2025,"path":2026,"category":1815,"updatedAt":1738,"sourceType":1698,"tags":2027},"记忆文件怎么分层加载","基于最新官方 Memory 文档，整理 OpenClaw 的 daily log、MEMORY.md、memory_search 和 memory_get 各自适合存什么，以及为什么群组上下文不该直接读长期记忆。","/docs/manual/memory-files-and-loading-boundaries",[1672,2028,1970,2029,2030],"markdown","memory_search","memory_get",{"title":2032,"description":2033,"path":2034,"category":1815,"updatedAt":1781,"sourceType":1698,"tags":2035},"memory plugin slot 和 Markdown source of truth 怎么配合","基于最新官方 Memory、CLI memory 与 Plugins 文档，解释为什么 OpenClaw 记忆的 source of truth 仍然是 Markdown 文件，以及 plugins.slots.memory 该怎么理解和切换。","/docs/manual/memory-plugin-slots-and-source-of-truth",[1672,1773,2036,2037,2028],"lancedb","memory-core",{"title":2039,"description":2040,"path":2041,"category":1815,"updatedAt":1697,"sourceType":1698,"tags":2042},"记忆搜索与索引机制","基于官方记忆概念和 memory CLI 文档，解释记忆文件、索引来源、provider 选择以及排障时该看什么。","/docs/manual/memory-search-and-indexing",[1672,2043,2044,2045,2036],"search","indexing","embeddings",{"title":2047,"description":2048,"path":2049,"category":1815,"updatedAt":1651,"sourceType":1644,"tags":2050},"OpenClaw 记忆系统怎么工作","理解 OpenClaw 的 SOUL、Tools、用户长期记忆和会话上下文如何协作，以及为什么它更像持续运行的系统而不是一次性聊天窗口。","/docs/manual/memory-system",[1672,1818,1853,2051],"logs",{"title":2053,"description":2054,"path":2055,"category":1815,"updatedAt":1651,"sourceType":1698,"tags":2056},"Memory、Tools、Skills 如何协同","记忆层负责保留什么，Tools 负责执行什么，Skills 负责组织什么，三者该怎么分工才不会让 OpenClaw 越用越乱。","/docs/manual/memory-tools-skills-playbook",[1672,1671,1683,1818,1718],{"title":2058,"description":2059,"path":2060,"category":1815,"updatedAt":1697,"sourceType":1698,"tags":2061},"消息投递、重试与响应行为","基于官方 retry、messages 和 FAQ 文档，解释消息发送失败时 OpenClaw 会重试什么，不会重试什么，以及为什么群聊和渠道行为会不同。","/docs/manual/message-retries-and-delivery",[2001,2062,2005,1880,1882],"retry",{"title":2064,"description":2065,"path":2066,"category":1858,"updatedAt":1859,"sourceType":1698,"tags":2067},"模型 allowlist、alias 和图片能力门控应该怎么理解","基于最新官方 Models CLI 文档，整理 agents.defaults.models、primary、fallbacks、imageModel 和 imageGenerationModel 的职责，帮助团队理解模型白名单和共享能力门控到底会影响什么。","/docs/manual/model-allowlists-and-capability-gating",[1789,2068,2069,2070,2071,1862],"allowlist","aliases","image","gating",{"title":2073,"description":2074,"path":2075,"category":1815,"updatedAt":1781,"sourceType":1698,"tags":2076},"OpenClaw 的 Models 应该怎么理解","理解 OpenClaw 里模型层的角色、选择思路和常见配置边界，避免把所有问题都误判成模型问题。","/docs/manual/models-overview",[1789,2013,1943,1834],{"title":2078,"description":2079,"path":2080,"category":1815,"updatedAt":1651,"sourceType":1698,"tags":2081},"Nodes 与设备能力","理解 OpenClaw 的 nodes 是什么、如何配对，以及相机、语音、屏幕、位置等设备能力在系统里的作用。","/docs/manual/nodes-and-device-actions",[1825,1869,1868,1927,1982],{"title":2083,"description":2084,"path":2085,"category":1815,"updatedAt":1781,"sourceType":1698,"tags":2086},"OpenProse 和 Lobster 的边界怎么分","基于最新官方 Lobster 文档，整理 OpenProse 与 Lobster 在多智能体准备、确定性执行和审批恢复上的分工，帮助中文团队判断什么时候该用 /prose，什么时候该转成工作流运行时。","/docs/manual/openprose-and-lobster-boundaries",[2087,2088,1774,1958,1718],"openprose","lobster",{"title":2090,"description":2091,"path":2092,"category":1815,"updatedAt":1738,"sourceType":1698,"tags":2093},"插件托管 hooks 与扩展能力边界","基于最新官方 Plugins 与 Hooks 文档，整理插件托管 hooks 的工作方式、显示位置、启停边界，以及为什么它和独立 hook pack 不是同一种治理对象。","/docs/manual/plugin-managed-hooks",[1773,1775,1648,1907,2094],"governance",{"title":2096,"description":2097,"path":2098,"category":1815,"updatedAt":1738,"sourceType":1698,"tags":2099},"插件清单与配置校验","基于最新官方文档，解释 openclaw.plugin.json 的必填字段、校验规则，以及为什么插件清单会直接影响配置是否可通过。","/docs/manual/plugin-manifest",[1773,2100,2101,2102,1682],"manifest","schema","validation",{"title":2104,"description":2105,"path":2106,"category":1815,"updatedAt":1738,"sourceType":1698,"tags":2107},"插件包与频道目录元信息","根据最新官方插件文档，解释 package packs、插件 id 生成规则、openclaw.channel 元信息，以及为什么这些字段会影响安装与引导体验。","/docs/manual/plugin-package-packs",[1773,2108,1670,2109,1907],"package-packs","metadata",{"title":2111,"description":2112,"path":2113,"category":1815,"updatedAt":1781,"sourceType":1698,"tags":2114},"OpenClaw 插件系统怎么用","基于官方插件与 CLI 文档，解释插件和 Skills、Tools 的边界，说明安装、启用、更新与风险控制的基本方法。","/docs/manual/plugins-overview",[1773,1907,1683,1671,2115],"cli",{"title":2117,"description":2118,"path":2119,"category":1815,"updatedAt":1781,"sourceType":1698,"tags":2120},"模型提供商与故障转移","基于官方 providers 文档，整理 OpenClaw 常见 provider、默认模型写法、fallback 思路和长期运行时的配置重点。","/docs/manual/providers-and-fallback",[1943,1789,2121,2122,2011],"fallback","openrouter",{"title":2124,"description":2125,"path":2126,"category":1815,"updatedAt":1651,"sourceType":1644,"tags":2127},"Session 与配对机制","理解 OpenClaw 如何通过配对、allowFrom、群组提及规则和 session 隔离来识别用户并保护上下文边界。","/docs/manual/session-and-pairing",[1853,1982,1670,1933],{"title":2129,"description":2130,"path":2131,"category":1858,"updatedAt":1859,"sourceType":1698,"tags":2132},"session memory search 什么时候值得开，什么时候先别开","基于最新官方 Memory 与 memory CLI 文档，整理 OpenClaw 的 session memory search、异步索引刷新、delta threshold 和 embedding cache 各自适合什么场景，帮助团队判断什么时候该扩到会话日志检索。","/docs/manual/session-memory-search-and-index-refresh",[1672,1970,2044,2133,1862],"cache",{"title":2135,"description":2136,"path":2137,"category":1815,"updatedAt":1651,"sourceType":1698,"tags":2138},"Signal 渠道接入重点","Signal 为什么更强调 dedicated number、signal-cli 和 pairing，长期运行时最容易踩哪些坑。","/docs/manual/signal-channel",[1670,2139,2140,1982,2014],"signal","signal-cli",{"title":2142,"description":2143,"path":2144,"category":1815,"updatedAt":1738,"sourceType":1698,"tags":2145},"Signal 群组与 daemon 模式怎么配","基于最新官方 Signal 文档，整理 Signal 在 OpenClaw 里的群组隔离、外部 daemon 模式、多账号和 config writes 边界。","/docs/manual/signal-groups-and-daemon-mode",[2139,1852,1732,2146,1670],"multi-account",{"title":2148,"description":2149,"path":2150,"category":1815,"updatedAt":2151,"sourceType":1698,"tags":2152},"Skills 配置与热重载","理解 OpenClaw 的 skills 配置项、allowBundled、extraDirs、watch、entries.enabled 和运行时环境注入边界。","/docs/manual/skills-configuration","2026-03-18",[1683,2153,2154,2155,2156],"config","allowBundled","watch","env",{"title":2158,"description":2159,"path":2160,"category":1815,"updatedAt":2161,"sourceType":1698,"tags":2162},"Skills 系统怎么工作","理解 OpenClaw Skills 的三层来源、加载流程、ClawHub 风险，以及为什么不应该一次安装过多技能。","/docs/manual/skills-system","2026-03-17",[1683,1888,1671,1691],{"title":2164,"description":2165,"path":2166,"category":1815,"updatedAt":1697,"sourceType":1698,"tags":2167},"系统提示词、上下文与压缩","基于官方 system prompt、context、compaction 与 session pruning 文档，解释 OpenClaw 一次运行到底会把什么发给模型，以及上下文为什么会变满。","/docs/manual/system-prompt-context-and-compaction",[2168,2169,2170,2171,1970],"system-prompt","context","compaction","pruning",{"title":2173,"description":2174,"path":2175,"category":1815,"updatedAt":1781,"sourceType":1698,"tags":2176},"Telegram 与 WhatsApp 接入重点","两个最常见的入门渠道该怎么选、各自依赖什么认证方式，以及群聊和私聊里最容易踩的坑。","/docs/manual/telegram-and-whatsapp",[1670,1880,1881,1982,2177],"bot",{"title":2179,"description":2180,"path":2181,"category":1815,"updatedAt":1781,"sourceType":1698,"tags":2182},"Telegram 和 Discord 作为审批入口时该怎么收边界","基于最新官方 Exec Approvals 文档，解释 Telegram 与 Discord 作为 exec approval 客户端时分别扮演什么角色、哪些配置值得先看，以及为什么它们适合作为受控审批入口而不是普通开放群聊。","/docs/manual/telegram-discord-approval-clients",[1880,1882,1958,1670,1956,1691],{"title":2184,"description":2185,"path":2186,"category":1815,"updatedAt":1651,"sourceType":1698,"tags":2187},"OpenClaw 的 Tools 与扩展能力概览","从中文用户角度理解 OpenClaw 的工具层、技能层和自动化扩展边界，知道它为什么不只是聊天助手。","/docs/manual/tools-overview",[1671,1683,1775,1648],{"title":2189,"description":2190,"path":2191,"category":1815,"updatedAt":1781,"sourceType":1698,"tags":2192},"vLLM 本地模型 Provider 怎么接","基于最新官方 vLLM provider 文档，整理 OpenClaw 如何接入 vLLM、本地自动发现和手动模型声明各自适合什么场景。","/docs/manual/vllm-local-model-provider",[2193,2194,1943,1766,2195],"vllm","local-models","inference",{"title":2197,"description":2198,"path":2199,"category":1815,"updatedAt":1651,"sourceType":1698,"tags":2200},"语音唤醒与 Talk Mode","理解 OpenClaw 的 voice wake 是怎么和 Gateway、nodes、客户端一起工作的，以及什么时候值得启用它。","/docs/manual/voice-wake-and-talk-mode",[1927,2201,2202,1825,1869],"wake-word","talk-mode",{"title":2204,"description":2205,"path":2206,"category":1815,"updatedAt":1781,"sourceType":1698,"tags":2207},"WebChat 与 message CLI","理解 OpenClaw 除聊天渠道外的两类直接交互入口：Gateway WebSocket 上的 WebChat 和统一的 openclaw message 命令。","/docs/manual/webchat-and-message-cli",[1796,2208,2115,1668,1670],"message",{"title":2210,"description":2211,"path":2212,"category":1815,"updatedAt":2213,"sourceType":1698,"tags":2214},"WebChat、API 和控制面入口的边界怎么分","基于最新官方 WebChat、Session 和 API 文档，解释 WebChat 为什么更像会话 UI、HTTP API 为什么更像结构化管理面，以及 Dashboard 为什么仍然属于高权限控制面。","/docs/manual/webchat-api-and-control-surface-boundaries","2026-03-26",[1796,2215,1726,1668,1650],"api",{"title":2217,"description":2218,"path":2219,"category":1815,"updatedAt":1738,"sourceType":1698,"tags":2220},"WebChat 的会话与只读边界","基于最新官方 WebChat 文档，整理 WebChat 如何共享 Gateway 会话、chat.inject 和 abort partial 是什么，以及 Gateway 不可达时为什么会进入只读模式。","/docs/manual/webchat-session-and-readonly-mode",[1796,1970,2221,2222,2223],"websocket","readonly","chat",{"title":2225,"description":2226,"path":2227,"category":1815,"updatedAt":1781,"sourceType":1698,"tags":2228},"用 Webhooks 接外部系统","基于最新官方 Webhooks 文档，整理 OpenClaw 如何通过 /hooks 接收外部事件，重点解释 wake、agent、映射、投递和安全边界。","/docs/manual/webhooks-external-triggers",[2229,1775,1648,2230,1691],"webhooks","integrations",{"title":2232,"description":2233,"path":2234,"category":2235,"updatedAt":1831,"sourceType":1698,"tags":2236},"Exec approvals 转发到聊天渠道该怎么设计","基于最新官方 approvals 文档，解释 OpenClaw 如何把 exec approval 请求转发到聊天渠道、/approve 命令怎么工作，以及为什么它适合远程值班但不适合无限扩散批准权。","/docs/operations/chat-approval-forwarding","运维",[1958,1956,2223,2237,1690],"forwarding",{"title":2239,"description":2240,"path":2241,"category":2235,"updatedAt":1738,"sourceType":1698,"tags":2242},"配置热重载与 include 合并怎么用","基于最新官方 Configuration 文档，整理 OpenClaw 的 config hot reload、reload mode、include 深度合并和哪些改动需要重启。","/docs/operations/config-hot-reload-and-includes",[1682,2243,2244,2245,2246],"hot-reload","includes","merge","restart",{"title":2248,"description":2249,"path":2250,"category":2235,"updatedAt":1738,"sourceType":1698,"tags":2251},"远程打开 Control UI 的正确方式","基于最新官方 Control UI、Dashboard 和 Tailscale 文档，整理远程访问 Control UI 时最稳的路径、常见 1008 报错原因，以及 allowedOrigins 等关键边界。","/docs/operations/control-ui-remote-access",[1914,1726,2252,2253,2254],"remote-access","tailscale","allowedOrigins",{"title":2256,"description":2257,"path":2258,"category":2235,"updatedAt":1831,"sourceType":1698,"tags":2259},"Cron 的 retention 和 run log pruning 怎么工作","基于最新官方 Cron Jobs 与配置文档，解释 isolated cron run 的 sessionRetention、runLog 裁剪、transcript archive 和高频调度下的磁盘足迹，避免把 cron 当成无限保留的后台队列。","/docs/operations/cron-retention-and-run-log-pruning",[2260,2261,2171,2262,1690],"cron","retention","runlog",{"title":2264,"description":2265,"path":2266,"category":2235,"updatedAt":1738,"sourceType":1698,"tags":2267},"定时任务与心跳怎么选","根据最新官方自动化文档，解释 Heartbeat、Cron main、Cron isolated 三种机制分别适合什么场景，以及它们在精度、上下文和成本上的差异。","/docs/operations/cron-vs-heartbeat",[1648,2260,2268,2269,1690],"heartbeat","scheduling",{"title":2271,"description":2272,"path":2273,"category":2235,"updatedAt":1831,"sourceType":1698,"tags":2274},"Dashboard 管理面怎么更稳地开放","基于最新官方 Dashboard、remote access 和 pairing 文档，整理管理员面该如何开放、保存 token、限制入口和处理 unauthorized/1008，避免把 Control UI 变成公开风险面。","/docs/operations/dashboard-admin-surface-hardening",[1726,1914,1740,1691,2275],"admin",{"title":2277,"description":2278,"path":2279,"category":2235,"updatedAt":2213,"sourceType":1698,"tags":2280},"Dashboard 遇到 unauthorized、1008 和 AUTH_TOKEN_MISMATCH 时怎么恢复","基于最新官方 Dashboard 文档，整理 OpenClaw 在 Dashboard 认证失败时更稳的恢复顺序，尤其是 AUTH_TOKEN_MISMATCH、trusted retry、SecretRef token 和远程实例混淆这几类问题。","/docs/operations/dashboard-auth-mismatch-recovery",[1726,1933,2281,2282,1690],"unauthorized","1008",{"title":2284,"description":2285,"path":2286,"category":2235,"updatedAt":1849,"sourceType":1698,"tags":2287},"设备 pairing、fresh token 和 revoke 应该怎么做日常运维","基于最新官方 Pairing 与 Devices CLI 文档，解释 openclaw devices list、approve、rotate、revoke 和 fresh token 的真实边界，以及为什么设备授权不该被当成一次性静态批准。","/docs/operations/device-pairing-token-lifecycle",[1983,1982,1934,2288,1690],"revoke",{"title":2290,"description":2291,"path":2292,"category":2235,"updatedAt":1849,"sourceType":1698,"tags":2293},"doctor 的备份、unknown keys 清理和 --fix 该怎么理解","基于最新官方 Doctor 文档，解释 openclaw doctor 在修复 stale config、unknown keys 和 legacy 状态时的备份与收口方式，帮助团队区分安全修复和强制覆盖。","/docs/operations/doctor-fix-backups-and-unknown-keys",[2294,2295,2296,2153,2297],"doctor","repair","backups","unknown-keys",{"title":2299,"description":2300,"path":2301,"category":2235,"updatedAt":1651,"sourceType":1698,"tags":2302},"Gateway 运维与日常检查","围绕状态检查、访问方式、日志与升级窗口，建立 OpenClaw Gateway 的日常运维习惯。","/docs/operations/gateway-operations",[1668,1690,2303,2051],"status",{"title":2305,"description":2306,"path":2307,"category":2235,"updatedAt":1738,"sourceType":1698,"tags":2308},"Gmail Pub/Sub 接入 OpenClaw","根据最新官方自动化文档，整理 Gmail watch、Google Pub/Sub、Webhook 映射和 Tailscale Funnel 的接入顺序，帮助你把 Gmail 事件稳定送进 OpenClaw。","/docs/operations/gmail-pubsub",[2309,2310,2229,1648,2253],"gmail","pubsub",{"title":2312,"description":2313,"path":2314,"category":2235,"updatedAt":1677,"sourceType":1698,"tags":2315},"长期运行时，如何管理会话、记忆与压缩","把 session、memory、compaction 和重置策略放到同一条治理链里，帮助长期运行的 OpenClaw 环境建立更稳定的上下文边界。","/docs/operations/long-session-governance",[1970,1672,2170,2094,1690],{"title":2317,"description":2318,"path":2319,"category":2235,"updatedAt":1781,"sourceType":1698,"tags":2320},"模型选型与成本控制","从主力模型、fallback、国内 provider 和低价值任务分流四个角度理解 OpenClaw 的模型配置策略与成本控制方法。","/docs/operations/model-strategy-and-cost",[1789,2321,1943,2121,2322,2323,2324],"cost","qwen","qianfan","kimi",{"title":2326,"description":2327,"path":2328,"category":2235,"updatedAt":1738,"sourceType":1698,"tags":2329},"用 models status 做模型健康检查","基于最新官方 Models CLI 与 Auth Monitoring 文档，整理 openclaw models status 在日常运维里的正确用法、退出码含义和适合接入监控的检查方式。","/docs/operations/models-status-and-health-checks",[1789,2330,1933,2331,2332],"health-check","oauth","monitoring",{"title":2334,"description":2335,"path":2336,"category":2235,"updatedAt":1651,"sourceType":1698,"tags":2337},"多 Gateway 与隔离运行","当一台机器上需要运行多个 OpenClaw 实例时，如何用 profile、独立端口和独立状态目录避免冲突。","/docs/operations/multiple-gateways",[1668,2338,2339,2340,1690],"profile","multi-instance","isolation",{"title":2342,"description":2343,"path":2344,"category":2235,"updatedAt":1697,"sourceType":1698,"tags":2345},"网络模型、发现与配对","基于官方网络中心、配对和 Gateway 拥有的配对文档，梳理 localhost、tailnet、发现、身份和审批之间的关系。","/docs/operations/network-and-pairing",[2346,1982,2347,2348,2349],"network","identity","tailnet","mdns",{"title":2351,"description":2352,"path":2353,"category":2235,"updatedAt":1781,"sourceType":1698,"tags":2354},"OpenClaw 安全最佳实践","了解使用 OpenClaw 时的安全最佳实践，包括密码管理、权限控制和日志监控。","/docs/operations/openclaw-security-best-practices",[1691,2355,2356],"best-practices","guide",{"title":2358,"description":2359,"path":2360,"category":2235,"updatedAt":1831,"sourceType":1698,"tags":2361},"Compaction 前的 memory flush 在保护什么","基于最新官方 Memory、Compaction 和会话管理文档，解释 pre-compaction memory flush 的触发时机、NO_REPLY 机制、软阈值公式，以及为什么它是长期使用体验里的关键缓冲层。","/docs/operations/pre-compaction-memory-flush",[1672,2170,2362,2363,1690],"flush","NO_REPLY",{"title":2365,"description":2366,"path":2367,"category":2368,"updatedAt":1781,"sourceType":1698,"tags":2369},"如何持续跟踪 OpenClaw 更新","建立一套低成本的更新跟踪方法，并把官方 release 和文档变化转化成真正可执行的中文维护动作。","/docs/operations/release-tracking","更新",[2370,2371,2372,2373],"release","changelog","updates","maintenance",{"title":2375,"description":2376,"path":2377,"category":2235,"updatedAt":1781,"sourceType":1698,"tags":2378},"远程访问与 Tailscale / SSH","把 OpenClaw 放到远程主机长期运行时，如何在 SSH、tailnet、Tailscale Serve 和直接 ws/wss 之间做选择。","/docs/operations/remote-access",[1740,2379,2253,1668,1690],"ssh",{"title":2381,"description":2382,"path":2383,"category":2235,"updatedAt":1651,"sourceType":1698,"tags":2384},"Remote Operators 与多设备协作","当 Gateway 跑在远程主机、操作入口分散在多台设备上时，如何理解 operator、node 和长期在线实例的协作边界。","/docs/operations/remote-operators-and-nodes",[1740,2385,1825,2253,2379,1983],"operators",{"title":2387,"description":2388,"path":1567,"category":2235,"updatedAt":1651,"sourceType":1698,"tags":2389},"OpenClaw 安全配置基础","从 Gateway auth、allowlist、Control UI 暴露方式和 Tailscale/SSH 接入策略理解 OpenClaw 的基础安全边界。",[1691,1933,2253,1726],{"title":2391,"description":2392,"path":2393,"category":2235,"updatedAt":1781,"sourceType":1698,"tags":2394},"security audit、--deep 和 --fix 该怎么配合","基于最新官方安全文档，解释 openclaw security audit、--deep 与 --fix 各自适合什么阶段，哪些问题适合自动修复，哪些仍应人工复核。","/docs/operations/security-audit-fix-and-review",[1691,2395,2396,2397,1690],"audit","hardening","fix",{"title":2399,"description":2400,"path":2401,"category":2235,"updatedAt":1831,"sourceType":1698,"tags":2402},"sessions cleanup 和 session maintenance 应该怎么配合","基于最新官方 sessions CLI 文档，解释 openclaw sessions cleanup 的作用范围、dry-run/enforce 语义、active-key 保护，以及它和 cron maintenance 不是同一层清理。","/docs/operations/sessions-cleanup-and-maintenance",[1970,2403,2373,2404,1690],"cleanup","transcripts",{"title":2406,"description":2407,"path":2408,"category":2235,"updatedAt":1849,"sourceType":1698,"tags":2409},"shared inbox 的运营边界和信任模型","基于最新官方 Security、Session 和 Groups 文档，解释 OpenClaw 对 shared inbox 的默认安全假设、适合的协作硬化方式，以及为什么真正的互不信任多租户场景更应该拆成独立 gateway。","/docs/operations/shared-inbox-trust-boundaries",[1691,2410,2411,1668,1690],"shared-inbox","trust-model",{"title":2413,"description":2414,"path":2415,"category":2235,"updatedAt":1697,"sourceType":1698,"tags":2416},"Tailscale Serve / Funnel 怎么选","基于官方 Tailscale 文档，解释 serve、funnel、tailnet 绑定和 allowTailscale 的差异，以及更稳的使用边界。","/docs/operations/tailscale-serve-and-funnel",[2253,2417,2418,1668,1933],"serve","funnel",{"title":2420,"description":2421,"path":2422,"category":2235,"updatedAt":1651,"sourceType":1698,"tags":2423},"团队频道里的 Session 隔离策略","当 OpenClaw 进入 Discord、Slack 等多人频道后，如何把频道、线程、私聊和长期记忆分开，避免上下文污染。","/docs/operations/team-channel-session-strategy",[1853,1882,1949,1680,2424,1690],"group-chat",{"title":2426,"description":2427,"path":2428,"category":2235,"updatedAt":2151,"sourceType":1698,"tags":2429},"Trusted Proxy Auth 怎么用","理解 OpenClaw 的 trusted-proxy 认证模式、适用场景、风险检查项，以及它和普通 TLS 反向代理的本质区别。","/docs/operations/trusted-proxy-auth",[2430,2431,1933,1668,1691],"trusted-proxy","reverse-proxy",{"title":2433,"description":2434,"path":2435,"category":2235,"updatedAt":1738,"sourceType":1698,"tags":2436},"Trusted Proxy 和 Tailscale Serve 怎么选","基于最新官方安全与 trusted proxy 文档，解释 OpenClaw 在 trusted-proxy、token/password 和 Tailscale Serve 之间各自适合什么场景。","/docs/operations/trusted-proxy-vs-tailscale-serve",[2430,2253,2431,1933,1668,1691],{"title":2438,"description":2439,"path":2440,"category":2235,"updatedAt":1781,"sourceType":1698,"tags":2441},"stable、beta、dev 更新通道该怎么选","基于最新官方 update CLI 与 Updating 文档，解释 OpenClaw 的 stable、beta、dev 三条更新轨道、auto-updater 行为和更适合的长期 rollout 顺序。","/docs/operations/update-channels-and-safe-rollout",[2442,1670,2443,2444,2445,2446],"update","stable","beta","dev","rollout",{"title":2448,"description":2449,"path":2450,"category":2451,"updatedAt":1859,"sourceType":1698,"tags":2452},"Anthropic context1m 的 429 和 fallback 应该怎么处理","基于最新官方 Gateway Troubleshooting 与 Model Failover 文档，解释 Anthropic 长上下文 429 为什么常只在长 session 里出现、什么时候该关掉 context1m，以及怎样用 fallback 把这类拒绝变成可恢复事件。","/docs/reference/anthropic-context1m-429-and-fallback","参考",[2453,2454,2455,2456,2457],"anthropic","429","context1m","failover","reference",{"title":2459,"description":2460,"path":2461,"category":2451,"updatedAt":1651,"sourceType":1698,"tags":2462},"API 与参考资料阅读入口","说明 OpenClaw 的参考资料应如何阅读，以及中文用户在查 CLI、配置、诊断和模块说明时该怎么找信息。","/docs/reference/api-reference-overview",[2457,2115,2153,2463],"diagnostics",{"title":2465,"description":2466,"path":2467,"category":2451,"updatedAt":1781,"sourceType":1698,"tags":2468},"approvals CLI、网关与节点 allowlist 怎么管理","基于最新官方 approvals CLI 与 Exec Approvals 文档，解释 openclaw approvals 在本机、Gateway 和 Node 上分别管理什么，以及 per-agent allowlist 最值得先守住哪些边界。","/docs/reference/approvals-cli-and-allowlist",[1958,2068,1956,1668,2469,2457],"node",{"title":2471,"description":2472,"path":2473,"category":2451,"updatedAt":1859,"sourceType":1698,"tags":2474},"认证配置文件怎么轮转，为什么 session 会“粘住”同一套凭据","基于最新官方 Model Failover 文档，解释 OpenClaw 在同一 provider 内如何轮转 auth profiles、什么情况下会进入 cooldown，以及为什么同一个 session 往往会持续使用同一套凭据。","/docs/reference/auth-profile-rotation-and-session-pinning",[1933,2475,2456,1970,2457],"profiles",{"title":2477,"description":2478,"path":2479,"category":2451,"updatedAt":1859,"sourceType":1698,"tags":2480},"setup code、bootstrapToken 和 /pair pending 应该怎么一起看","基于最新官方 Pairing 文档，解释 Telegram 首次设备接入时 setup code 里到底装了什么、bootstrapToken 只负责哪一步，以及为什么最后仍然要回到 /pair pending 做人工批准。","/docs/reference/bootstrap-code-and-pair-pending",[1982,2481,1880,1983,2457],"bootstrapToken",{"title":2483,"description":2484,"path":2485,"category":2451,"updatedAt":1849,"sourceType":1698,"tags":2486},"频道 pairing CLI 和 account scope 应该怎么一起看","基于最新官方 Pairing 文档，解释 openclaw pairing 的 list、approve、clear、--account 与 --notify 分别影响什么，以及多账号渠道下为什么不能只看一个默认 allowFrom 文件。","/docs/reference/channel-pairing-cli-and-account-scope",[1982,2487,1670,2488,2275],"allowFrom","account",{"title":2490,"description":2491,"path":2492,"category":2451,"updatedAt":1697,"sourceType":1698,"tags":2493},"CLI 命令参考","OpenClaw 命令行工具完整参考，包含所有命令和选项说明。","/docs/reference/cli-reference",[2115,2457,2494,2495],"commands","terminal",{"title":2497,"description":2498,"path":2499,"category":2451,"updatedAt":1859,"sourceType":1698,"tags":2500},"Cloudflare AI Gateway 的双层鉴权头应该怎么配","基于最新官方 Cloudflare AI Gateway 文档，解释 provider API key 和 cf-aig-authorization 为什么是两层不同凭据，以及 daemon 场景里最常见的缺失点。","/docs/reference/cloudflare-aig-dual-auth-headers",[2501,2502,1933,1943,2457],"cloudflare-ai-gateway","headers",{"title":2504,"description":2505,"path":2506,"category":2507,"updatedAt":1781,"sourceType":1905,"tags":2508},"社区支持","汇总 OpenClaw 的官方社区入口、反馈方式、提问建议和中文用户更适合的参与路径。","/docs/reference/community","社区",[1905,2509,2510,2511],"github","issues","feedback",{"title":2513,"description":2514,"path":2515,"category":2451,"updatedAt":1697,"sourceType":1698,"tags":2516},"配置参考","OpenClaw 完整配置项参考文档，包含所有可配置选项的详细说明。","/docs/reference/configuration-reference",[1682,2457,2517,2518],"settings","options",{"title":2520,"description":2521,"path":2522,"category":2451,"updatedAt":1738,"sourceType":1698,"tags":2523},"Control UI 设备配对与浏览器授权","基于最新官方 Control UI 与 Pairing 文档，解释为什么远程浏览器首次连接需要设备配对、设备身份如何记住，以及什么时候需要重新批准。","/docs/reference/control-ui-device-pairing",[1914,1982,1983,1647,2275],{"title":2525,"description":2526,"path":2527,"category":2451,"updatedAt":1859,"sourceType":1698,"tags":2528},"cron run 入队语义和 retry backoff 应该怎么理解","基于最新官方 cron CLI 与 Cron Jobs 文档，解释 openclaw cron run 为什么先返回 enqueued、何时该去看 runs，以及 recurring job 连续失败后的退避节奏。","/docs/reference/cron-run-queue-and-retry-backoff",[2260,2062,2529,2530,2457],"scheduler","queue",{"title":2532,"description":2533,"path":2534,"category":2451,"updatedAt":2213,"sourceType":1698,"tags":2535},"Dashboard 的 SecretRef token、sessionStorage 和非 token 化 URL 应该怎么理解","基于最新官方 Dashboard 文档，解释 openclaw dashboard 在普通 token、SecretRef token 和远程入口下分别如何引导认证，以及为什么当前浏览器标签页的 sessionStorage 行为很关键。","/docs/reference/dashboard-secretref-and-sessionstorage",[1726,1934,2536,2537,1933],"secretref","sessionStorage",{"title":2539,"description":2540,"path":2541,"category":2542,"updatedAt":1697,"sourceType":1698,"tags":2543},"调试、运行时覆盖与开发排障","基于官方 debugging 和 FAQ 文档，整理 `/debug`、watch 模式、dev profile 以及排查流式输出异常时最值得先看的入口。","/docs/reference/debugging-and-runtime-overrides","排错",[2544,2545,2546,2294,2051],"debugging","debug","runtime-overrides",{"title":2548,"description":2549,"path":2550,"category":2451,"updatedAt":1831,"sourceType":1698,"tags":2551},"Diagnostics flags 和定向日志应该怎么用","基于最新官方 Diagnostics Flags 与 Logging 文档，解释 OpenClaw 如何用 diagnostics.flags 和 OPENCLAW_DIAGNOSTICS 打开定向调试日志，以及为什么这比全局 verbose 更适合长期排障。","/docs/reference/diagnostics-flags-and-targeted-logs",[2463,2552,2553,2545,2457],"logging","flags",{"title":2555,"description":2556,"path":2557,"category":2451,"updatedAt":1831,"sourceType":1698,"tags":2558},"dmScope 和 identityLinks 应该怎么一起用","基于最新官方会话管理文档，解释 OpenClaw 的 dmScope 四种模式、identityLinks 的真实作用，以及为什么多人 DM、跨渠道私聊和多账户环境不能只改一个开关。","/docs/reference/dm-scope-and-identity-links",[1853,2559,2560,1834,2457],"dmScope","identityLinks",{"title":2562,"description":2563,"path":2564,"category":2451,"updatedAt":1831,"sourceType":1698,"tags":2565},"doctor 的 repair、force 和 non-interactive 应该怎么选","基于最新官方 Doctor 文档，解释 openclaw doctor 在 interactive、--repair、--force、--yes、--non-interactive 和 --deep 之间各自会做什么，避免把修复模式混成“越猛越好”。","/docs/reference/doctor-repair-modes",[2294,2295,2463,2566,2457],"migrations",{"title":2568,"description":2569,"path":2570,"category":2451,"updatedAt":1831,"sourceType":1698,"tags":2571},"环境变量从哪里来，优先级怎么排","基于最新官方 Environment Variables 与 Configuration 文档，解释 OpenClaw 会从哪些来源读取环境变量、为什么默认不覆盖已有值，以及 `.env`、config env 和 shell import 之间真正的优先级。","/docs/reference/env-sources-and-precedence",[2156,1682,1861,2572,2457],"shell",{"title":2574,"description":2575,"path":2576,"category":2451,"updatedAt":1781,"sourceType":1665,"tags":2577},"如何结合官方文档、GitHub 和中文渠道跟踪 OpenClaw","把官方文档、GitHub Releases、Issues、中文教程站、媒体报道和中文社区解读放到同一套可信度框架里，减少信息滞后和误读。","/docs/reference/external-sources-and-trust-levels",[2578,2370,1905,2579,2372],"sources","trust",{"title":2581,"description":2582,"path":2583,"category":2451,"updatedAt":1738,"sourceType":1698,"tags":2584},"Gateway 命令与 RPC 该怎么用","基于最新官方 CLI Reference 与 Gateway protocol 文档，整理 openclaw gateway 子命令、RPC 调用边界、显式凭据要求，以及为什么它更适合被当成控制面入口而不是随手脚本助手。","/docs/reference/gateway-cli-and-rpc",[1668,2585,2115,2221,1826],"rpc",{"title":2587,"description":2588,"path":2589,"category":2451,"updatedAt":1831,"sourceType":1698,"tags":2590},"Gateway-owned pairing 和 device pairing 有什么区别","基于最新官方 Pairing 与 Gateway-owned pairing 文档，解释 node.pair.* 这套旧式网关配对和当前 WS device pairing 的真实边界，避免把两套授权机制混成一套。","/docs/reference/gateway-owned-pairing-vs-device-pairing",[1982,1983,1668,1825,2457],{"title":2592,"description":2593,"path":2594,"category":2451,"updatedAt":2213,"sourceType":1698,"tags":2595},"Gateway 为什么是 session source of truth","基于最新官方 Session 文档，解释 OpenClaw 的 session store、JSONL transcript、token 计数和 UI 查询为什么都应围绕 Gateway 理解，避免把本地浏览器、WebChat 或 operator 设备误当成真实状态源。","/docs/reference/gateway-session-source-of-truth",[1853,1668,1796,1726,2457],{"title":2597,"description":2598,"path":2599,"category":2451,"updatedAt":1859,"sourceType":1698,"tags":2600},"Gateway WebSocket 的 role 和 scope 应该怎么理解","基于最新官方 Gateway Protocol 文档，解释 OpenClaw 的 WebSocket 握手里 role、scopes、client mode 和协议版本各自在声明什么，以及为什么这条连接已经是统一控制面而不只是聊天通道。","/docs/reference/gateway-ws-roles-and-scopes",[1668,2221,2601,2602,2457],"protocol","scopes",{"title":2604,"description":2605,"path":2606,"category":2451,"updatedAt":1849,"sourceType":1698,"tags":2607},"groupPolicy、allowlist 和 mention gating 的顺序应该怎么理解","基于最新官方 Groups、Group Messages 和 Messages 文档，解释 OpenClaw 在群聊里如何按 groupPolicy、群组 allowlist 和 mention gating 三层顺序决定消息是丢弃、只进上下文，还是正式触发回复。","/docs/reference/group-policy-and-mention-gating-order",[1852,2608,1834,2068,2001],"mention",{"title":2610,"description":2611,"path":2612,"category":2451,"updatedAt":1859,"sourceType":1698,"tags":2613},"HEARTBEAT_OK、可见性控制和 quiet-hours 应该怎么一起看","基于最新官方 Heartbeat 与 Automation Troubleshooting 文档，解释 HEARTBEAT_OK 的 ack 语义、alerts-disabled 和 dm-blocked 等可见性控制，以及 quiet-hours 为什么不是故障。","/docs/reference/heartbeat-ack-and-visibility-controls",[2268,2614,2615,2616,2457],"visibility","activeHours","alerts",{"title":2618,"description":2619,"path":2620,"category":2451,"updatedAt":1849,"sourceType":1698,"tags":2621},"HTTP API、Gateway WebSocket 和 SDK 应该怎么分工","基于最新官方 API 与 Web 文档，解释 OpenClaw 里 HTTP API、Gateway WebSocket 和 SDK 各自适合什么场景，帮助团队判断当前到底应该走管理接口、实时会话层还是语言 SDK。","/docs/reference/http-api-vs-gateway-websocket-vs-sdk",[2215,2221,2622,1668,2457],"sdk",{"title":2624,"description":2625,"path":2626,"category":2451,"updatedAt":1849,"sourceType":1698,"tags":2627},"include 合并时，数组和 sibling override 到底怎么生效","基于最新官方 Configuration 文档，解释 OpenClaw 在 $include 合并时数组、对象和 sibling keys 的真实处理顺序，帮助团队避免把 include 当成“总是深合并”的黑盒。","/docs/reference/include-merge-arrays-and-sibling-overrides",[1682,2628,2245,2629,2457],"include","arrays",{"title":2631,"description":2632,"path":2633,"category":2451,"updatedAt":1831,"sourceType":1698,"tags":2634},"Lobster 的调用、审批和 resume token","基于最新官方 Lobster 文档，解释 OpenClaw 里如何用 openclaw.invoke 触发确定性工作流、何时进入 needs_approval，以及 resume token 在恢复流程里扮演什么角色。","/docs/reference/lobster-invoke-and-resume",[2088,2635,1958,1718,2457],"invoke",{"title":2637,"description":2638,"path":2639,"category":2451,"updatedAt":1859,"sourceType":1698,"tags":2640},"记忆检索里的 hybrid search、重排和时间衰减到底在做什么","基于最新官方 Memory 文档，解释 OpenClaw 的 memory_search 为什么不只是向量检索，以及 hybrid search、结果合并、MMR 重排和 temporal decay 各自在修正什么问题。","/docs/reference/memory-hybrid-search-and-ranking-pipeline",[1672,2641,2642,2643,2644,2457],"hybrid-search","ranking","mmr","retrieval",{"title":2646,"description":2647,"path":2648,"category":2451,"updatedAt":1781,"sourceType":1698,"tags":2649},"models status --probe 和 auth profiles 应该怎么看","基于最新官方 Models CLI 文档，解释 openclaw models status --probe、--probe-provider 与认证 profile 的关系，帮助团队区分“配置看起来对”和“当前真的能连通”。","/docs/reference/models-status-probe-and-auth-profiles",[1789,2650,1933,1943,2457],"probe",{"title":2652,"description":2653,"path":2654,"category":2451,"updatedAt":2151,"sourceType":1698,"tags":2655},"配对审批与设备授权管理","从管理员视角理解 OpenClaw 的 DM pairing、设备 pairing、allowFrom 文件和审批命令，避免把授权边界搞乱。","/docs/reference/pairing-admin",[1982,1983,2487,2656,2275],"credentials",{"title":2658,"description":2659,"path":2660,"category":2451,"updatedAt":1781,"sourceType":1698,"tags":2661},"插件安装 spec、--pin 和 update tracking 应该怎么理解","基于最新官方 plugins CLI 文档，解释 ClawHub first、npm-safe spec、--pin、prerelease opt-in 和 plugins.installs 的跟踪逻辑，帮助团队判断插件后续会按什么规则更新。","/docs/reference/plugins-install-specs-and-update-tracking",[1773,1888,2662,2663,2372,2457],"npm","pin",{"title":2665,"description":2666,"path":2667,"category":2542,"updatedAt":1738,"sourceType":1698,"tags":2668},"原始流日志怎么抓","基于最新官方 Debugging 文档，整理 OpenClaw 的 raw stream、pi-mono raw chunk 日志分别该在什么场景开启，以及如何避免把调试日志变成隐私风险。","/docs/reference/raw-stream-debugging",[2544,2669,2051,1943,2014],"raw-stream",{"title":2671,"description":2672,"path":2673,"category":2451,"updatedAt":1859,"sourceType":1698,"tags":2674},"remote auth fallback 和 tlsFingerprint 应该什么时候用","基于最新官方 Remote Access 文档，解释 gateway.remote 这套远程连接参数什么时候只是兜底、什么时候会 fail closed，以及 tlsFingerprint 在 wss 场景里真正保护什么。","/docs/reference/remote-auth-fallback-and-tls-fingerprint",[1740,2675,1933,1668,2457],"tlsFingerprint",{"title":2677,"description":2678,"path":2679,"category":2451,"updatedAt":1859,"sourceType":1698,"tags":2680},"回复机器人消息也算 mention 吗，pending history 又什么时候会进上下文","基于最新官方 Groups 与 Group Messages 文档，解释 OpenClaw 在群聊里怎样把 reply metadata 当成隐式 mention，以及未触发回复的群消息何时只进入 pending history、何时会被彻底丢弃。","/docs/reference/reply-mention-and-pending-history",[1852,2681,2682,2683,2457],"mentions","pending-history","reply",{"title":2685,"description":2686,"path":2687,"category":2451,"updatedAt":1831,"sourceType":1698,"tags":2688},"SecretRefs 和运行时快照应该怎么理解","基于最新官方 Secrets Management 文档，解释 env/file/exec secret refs 的解析时机、活动面、失败模式和热重载语义，避免把密钥管理误解成“请求时临时去取”。","/docs/reference/secret-refs-and-runtime-snapshot",[2689,2690,2691,1943,2457],"secrets","secretrefs","runtime",{"title":2693,"description":2694,"path":2695,"category":2451,"updatedAt":1849,"sourceType":1698,"tags":2696},"secure DM mode 和 owner pinning 应该怎么一起理解","基于最新官方 Session 与 Security 文档，解释 OpenClaw 的 secure DM mode、owner pinning、pairing / allowlist / open 三类 DM 入口，以及什么时候该从连续主会话切到隔离模式。","/docs/reference/secure-dm-mode-and-owner-pinning",[1853,1691,2559,1982,2068],{"title":2698,"description":2699,"path":2700,"category":2451,"updatedAt":2701,"sourceType":1698,"tags":2702},"session JSONL、compaction entry 和 branch summary 应该怎么理解","基于最新官方 Session Management Deep Dive 文档，解释 OpenClaw 的 session JSONL 结构、compaction entry、branch summary 和 store counters 分别在回答什么问题，避免把 transcript 文件当成一团无结构日志。","/docs/reference/session-jsonl-and-compaction-entries","2026-04-01",[1853,2703,2704,2170,2457],"transcript","jsonl",{"title":2706,"description":2707,"path":2708,"category":2451,"updatedAt":2701,"sourceType":1698,"tags":2709},"openclaw sessions 的 store scope 和巡检方式","基于最新官方 sessions CLI 文档，解释 openclaw sessions 在默认 agent、单 agent、all-agents 和显式 store 路径下分别在看什么，以及长期运维里为什么值得把它当作 session store 巡检入口。","/docs/reference/sessions-cli-store-scope-and-audit",[1970,2115,2710,2395,1690],"store",{"title":2712,"description":2713,"path":2714,"category":2451,"updatedAt":1859,"sourceType":1698,"tags":2715},"哪些配置会被官方当成 shared-user ingress 信号","基于最新官方 security audit 文档，解释 OpenClaw 为什么会把开放 DM、群目标和 wildcard sender 规则识别成 shared-user ingress 信号，以及这些提醒真正想让你检查什么。","/docs/reference/shared-user-ingress-signals",[1691,2410,2395,2716,2457],"ingress",{"title":2718,"description":2719,"path":2720,"category":2451,"updatedAt":1738,"sourceType":1698,"tags":2721},"status、health 和 logs 该怎么分工","基于最新官方 CLI reference，整理 openclaw status、health、logs 三组命令各自应该回答什么问题，以及值班和排障时更稳的使用顺序。","/docs/reference/status-health-and-logs",[2115,2303,2722,2051,2723],"health","troubleshooting",{"title":2725,"description":2726,"path":2727,"category":2451,"updatedAt":2701,"sourceType":1698,"tags":2728},"对话记录清理（provider fixups）到底改了什么，不改什么","基于最新官方 Transcript Hygiene 文档，解释 OpenClaw 在运行前对 transcript 做的 provider-specific fixups、图片清理、tool 调用配对修复和思考签名清理分别解决什么问题，以及为什么它不会重写磁盘 JSONL。","/docs/reference/transcript-hygiene-and-provider-fixups",[2703,2729,1943,2730,2457],"hygiene","tool-calls",{"title":2732,"description":2733,"path":2734,"category":2542,"updatedAt":1651,"sourceType":1698,"tags":2735},"故障排除与诊断思路","把 OpenClaw 常见问题按环境、入口、配置、认证和运行状态拆开，建立更高效的排查顺序。","/docs/reference/troubleshooting",[2723,2294,2303,2051],{"title":2737,"description":2738,"path":2739,"category":2451,"updatedAt":1831,"sourceType":1698,"tags":2740},"WebChat 的 history、inject 和展示边界","基于最新官方 WebChat 文档，整理 chat.history 的截断/占位规则、chat.inject 的真实用途，以及为什么 WebChat 看见的 transcript 不是原始 JSONL 的一比一镜像。","/docs/reference/webchat-history-and-inject-boundaries",[1796,2741,2742,2703,2457],"history","inject",{"title":2744,"description":2745,"path":2746,"category":2747,"updatedAt":1781,"sourceType":1698,"tags":2748},"国内云部署思路","面向中文团队整理 OpenClaw 在国内或面向国内网络环境部署时最该先判断的三件事：入口生态、模型端点和长期在线后的运维边界。","/docs/setup/china-cloud-deployment","安装",[2749,2750,2751,2752,2322,2323],"china","cloud","deployment","feishu",{"title":2754,"description":2755,"path":2756,"category":2747,"updatedAt":1651,"sourceType":1698,"tags":2757},"部署方式怎么选","从本地安装、Docker、国内云模板和海外一键部署四类路径理解 OpenClaw 的部署选择，而不是只追求“最快装上”。","/docs/setup/deployment-options",[2751,1741,2758,2750,2759],"docker","wsl2",{"title":2761,"description":2762,"path":2763,"category":2747,"updatedAt":2161,"sourceType":1698,"tags":2764},"OpenClaw 安装与环境","按官方推荐方式安装 OpenClaw，并根据本地开发、WSL2 和生产部署场景选择合适的安装路径。","/docs/setup/installation",[1724,2662,2765,2759],"install-script",{"title":2767,"description":2768,"path":2769,"category":2747,"updatedAt":1738,"sourceType":1698,"tags":2770},"安装器方式和升级路径怎么选","基于最新官方 Install 与 Updating 文档，整理 install.sh、install-cli.sh、PowerShell 安装器、全局包安装和 git 安装各自适合什么场景，以及后续升级时应该走哪条路径。","/docs/setup/installer-methods-and-upgrade-paths",[1724,2771,2765,2772,2373],"updater","git",{"title":2774,"description":2775,"path":2776,"category":2747,"updatedAt":1697,"sourceType":1698,"tags":2777},"安装器、更新与卸载","基于官方安装器、更新和卸载文档，整理 OpenClaw 从首次安装到原地升级、服务移除和彻底卸载的完整维护路径。","/docs/setup/installer-update-and-uninstall",[1724,2771,2778,2294,2373],"uninstall",{"title":2780,"description":2781,"path":2782,"category":2747,"updatedAt":1697,"sourceType":1698,"tags":2783},"Linux 安装指南","在 Linux 服务器和桌面上安装和配置 OpenClaw 的详细指南。","/docs/setup/linux-installation",[2784,1724,1733,2785],"linux","server",{"title":2787,"description":2788,"path":2789,"category":2747,"updatedAt":1697,"sourceType":1698,"tags":2790},"macOS 安装指南","在 macOS 上安装和配置 OpenClaw 的详细指南。","/docs/setup/macos-installation",[1843,1724,1733,2791],"apple",{"title":2793,"description":2794,"path":2795,"category":2796,"updatedAt":1651,"sourceType":1698,"tags":2797},"版本迁移与升级检查单","在 OpenClaw 版本升级前后，优先检查配置、CLI、认证和入口层变化，避免把升级直接变成线上事故。","/docs/setup/migration-guide","迁移",[2798,2799,2370,2800],"migration","upgrade","checklist",{"title":2802,"description":2803,"path":2804,"category":2747,"updatedAt":1697,"sourceType":1698,"tags":2805},"Windows 安装指南","在 Windows 上安装和配置 OpenClaw 的详细指南，推荐使用 WSL2。","/docs/setup/windows-installation",[2806,1724,1733,2759],"windows",{"count":2808,"latestDate":2701,"items":2809},111,[2810,2818,2830,2837,2847,2856,2861,2870,2878,2884,2891,2898,2905,2913,2919,2929,2939,2946,2952,2962,2974,2984,2990,2997,3003,3011,3018,3026,3032,3039,3045,3051,3057,3062,3068,3075,3081,3088,3094,3100,3106,3112,3118,3125,3131,3136,3147,3153,3159,3166,3173,3179,3185,3191,3201,3207,3213,3218,3224,3229,3236,3242,3248,3253,3259,3266,3271,3277,3282,3288,3294,3300,3306,3312,3317,3322,3329,3337,3342,3348,3356,3362,3368,3374,3381,3386,3391,3398,3403,3408,3414,3420,3427,3433,3438,3444,3449,3460,3468,3473,3481,3486,3493,3498,3504,3509,3515,3520,3528,3534,3540],{"title":2811,"description":2812,"path":2813,"category":2814,"date":2815,"updatedAt":1651,"sourceType":1698,"source":2816,"tags":2817},"OpenClaw 支持超过 50 个集成平台","OpenClaw 宣布已支持超过 50 个消息和生产力平台集成，成为最全面的 AI 助手解决方案。","/news/50-integrations","生态动态","2026-03-09","openclaw.ai",[2230,1670,1906],{"title":2819,"description":2820,"path":2821,"category":2822,"date":2823,"updatedAt":1764,"sourceType":1698,"source":2816,"tags":2824},"OpenClaw 与主流 AI 模型对比分析","深入对比 OpenClaw 支持的各类 AI 模型，帮助用户选择最适合自己需求的模型配置。","/news/ai-model-comparison","技术深度","2026-03-07",[1789,2825,2826,2827,2828,2829],"comparison","gpt","claude","llama","analysis",{"title":2831,"description":2832,"path":2833,"category":2834,"date":2815,"updatedAt":1651,"sourceType":1698,"source":2816,"tags":2835},"OpenClaw 支持多种 AI 模型选择","OpenClaw 支持 Anthropic Claude、OpenAI GPT 和本地模型，为用户提供灵活的 AI 选择。","/news/ai-model-flexibility","功能介绍",[2836,1789,2827,2826,1741],"ai",{"title":2838,"description":2839,"path":2840,"category":2841,"date":2842,"updatedAt":1764,"sourceType":2509,"source":2843,"tags":2844},"OpenClaw API v2 正式发布","OpenClaw 发布全新 API v2 版本，带来更强大的功能、更好的性能和更完善的开发者体验。","/news/api-v2-release","产品更新","2026-03-10","github.com/openclaw/openclaw",[2215,2845,2846,2622],"v2","developer",{"title":2848,"description":2849,"path":2850,"category":2851,"date":2842,"updatedAt":2842,"sourceType":1698,"source":2852,"tags":2853},"OpenClaw on AWS：云上一键部署指南发布","AWS 官方发布 OpenClaw on Lightsail 部署指南，用户可在 AWS 云平台快速部署自己的 AI 助手实例。","/news/aws-lightsail-deployment","云服务集成","AWS Blog",[2854,2750,2751,2855],"aws","lightsail",{"title":2857,"description":2858,"path":2859,"category":2841,"date":2815,"updatedAt":1651,"sourceType":1698,"source":2816,"tags":2860},"OpenClaw 浏览器自动化功能升级","OpenClaw 浏览器自动化功能迎来重大升级，支持更多操作和更好的稳定性。","/news/browser-automation-v2",[1647,1648,2370,2442],{"title":2862,"description":2863,"path":2864,"category":2834,"date":2815,"updatedAt":1651,"sourceType":1698,"source":2816,"tags":2865},"OpenClaw Canvas 实时可视化功能详解","深入了解 OpenClaw 的 Canvas 功能，如何使用 A2UI 语法创建交互式可视化界面。","/news/canvas-a2ui",[2866,2867,2868,2869],"canvas","a2ui","visualization","ui",{"title":2871,"description":2872,"path":2873,"category":2874,"date":1697,"updatedAt":1697,"sourceType":1905,"source":2875,"tags":2876},"OpenClaw 中国社区热潮：本地化部署与中文教程需求激增","OpenClaw 在中国市场迎来爆发式增长，小红书、知乎等平台讨论热度持续攀升，中文教程和本地化部署成为用户最关注的话题。","/news/china-community-boom","社区动态","社区观察",[2749,1905,1701,2877],"localization",{"title":2879,"description":2880,"path":2881,"category":2814,"date":2815,"updatedAt":1651,"sourceType":2509,"source":2882,"tags":2883},"ClawHub 技能市场突破 300 技能大关","OpenClaw 官方技能市场 ClawHub 已收录超过 300 个开源技能，为用户提供丰富的扩展选择。","/news/clawhub-300-skills","github.com/openclaw/clawhub",[1683,1888,1906,1773],{"title":2885,"description":2886,"path":2887,"category":2874,"date":2815,"updatedAt":1651,"sourceType":1905,"source":2888,"tags":2889},"OpenClaw 开发者社区突破 5 万人","OpenClaw 开发者社区持续增长，Discord 成员已超过 50,000 人。","/news/developer-community","discord.gg/openclaw",[1905,1882,1679,2890],"growth",{"title":2892,"description":2893,"path":2894,"category":2895,"date":2815,"updatedAt":1651,"sourceType":1698,"source":2816,"tags":2896},"OpenClaw Discord 集成配置","了解如何将 Discord Bot 连接到 OpenClaw，实现服务器和频道管理。","/news/discord-integration","渠道指南",[1882,2177,2897,1701],"channel",{"title":2899,"description":2900,"path":2901,"category":2841,"date":2815,"updatedAt":1651,"sourceType":2509,"source":2902,"tags":2903},"OpenClaw 企业部署最佳实践发布","OpenClaw 官方发布企业级部署指南，包含 Ansible 自动化、容器化部署和安全配置。","/news/enterprise-deployment","github.com/openclaw/openclaw-ansible",[1689,2751,2904,2758],"ansible",{"title":2906,"description":2907,"path":2908,"category":2909,"date":2910,"updatedAt":1764,"sourceType":1698,"source":2816,"tags":2911},"OpenClaw 企业版功能详解","深入了解 OpenClaw 企业版的专属功能、部署方案和安全特性，助力企业数字化转型。","/news/enterprise-edition-guide","产品介绍","2026-03-06",[1689,2751,1691,2912],"features",{"title":2914,"description":2915,"path":2916,"category":2895,"date":2815,"updatedAt":1651,"sourceType":1698,"source":2816,"tags":2917},"OpenClaw 飞书集成配置","了解如何将 OpenClaw 集成到飞书，实现企业协作。","/news/feishu-integration",[2752,2918,2897,1689,1701],"lark",{"title":2920,"description":2921,"path":2922,"category":2923,"date":1764,"updatedAt":1764,"sourceType":1905,"source":2924,"tags":2925},"OpenClaw 创始人 Peter Steinberger：从独立开发者到开源明星","OpenClaw 创始人 Peter Steinberger 的创业故事，从 Clawdbot/Moltbot 到爆火开源项目的历程。","/news/founder-story","人物故事","社区整理",[2926,2927,2928,1905],"founder","story","opensource",{"title":2930,"description":2931,"path":2932,"category":2933,"date":2815,"updatedAt":1651,"sourceType":2509,"source":2934,"tags":2935},"OpenClaw GitHub 星标突破 28.7 万","OpenClaw 开源项目在 GitHub 上的星标数突破 287,000，成为最受欢迎的开源 AI 助手项目之一。","/news/github-stars-milestone","项目动态","github.com/openclaw",[2509,2936,2937,2938],"stars","milestone","open-source",{"title":2940,"description":2941,"path":2942,"category":2841,"date":2943,"updatedAt":1697,"sourceType":2509,"source":2843,"tags":2944},"OpenClaw 本地模型支持全面升级","OpenClaw 现已支持更多本地大语言模型，包括 Llama 3、Mistral、Qwen 等，让用户在保护隐私的同时享受 AI 能力。","/news/local-model-support","2026-03-05",[2012,2014,2828,2945,2011],"mistral",{"title":2947,"description":2948,"path":2949,"category":2841,"date":2815,"updatedAt":1651,"sourceType":1698,"source":2816,"tags":2950},"OpenClaw macOS 伴侣应用 Beta 发布","OpenClaw 推出专为 macOS 15+ 设计的伴侣应用，提供更便捷的菜单栏访问体验。","/news/macos-companion-app",[1843,2951,2444,2370],"app",{"title":2953,"description":2954,"path":2955,"category":2956,"date":2815,"updatedAt":1651,"sourceType":2957,"source":2816,"tags":2958},"OpenClaw 获 MacStories 专题报道：个人 AI 助手的未来","知名科技媒体 MacStories 发表专题报道，高度评价 OpenClaw 为个人 AI 助手领域带来的创新。","/news/media-coverage","媒体报道","media",[2957,2959,2960,2961],"macstories","coverage","press",{"title":2963,"description":2964,"path":2965,"category":2966,"date":1651,"updatedAt":1651,"sourceType":1644,"source":2967,"tags":2968},"外部报道：Meta 收购 Moltbook，OpenClaw 生态再次进入主流视野","根据 2026 年 3 月 11 日自动抓取的外部报道，Meta 已收购基于 OpenClaw 构建的 AI 代理社交网络 Moltbook。本文将事件背景、与 OpenClaw 的关联，以及对中文用户的参考价值整理为站点可读版本。","/news/meta-moltbook-openclaw-background","行业动态","自动抓取外部报道（2026-03-11）",[2969,2970,2971,2972,2973],"meta","moltbook","openclaw","ai-agent","industry",{"title":2975,"description":2976,"path":2977,"category":2841,"date":2978,"updatedAt":1764,"sourceType":1698,"source":2816,"tags":2979},"OpenClaw 移动端体验全面优化","OpenClaw 发布移动端重大更新，带来全新界面设计、性能优化和多项新功能。","/news/mobile-experience-update","2026-03-08",[1869,2980,2981,2982,2983],"ios","android","ux","performance",{"title":2985,"description":2986,"path":2987,"category":2841,"date":1697,"updatedAt":1764,"sourceType":2509,"source":2843,"tags":2988},"OpenClaw 多 Agent 协作功能正式发布","OpenClaw 发布多 Agent 协作功能，支持多个 AI 代理协同工作，实现复杂任务的自动化处理。","/news/multi-agent-collaboration",[1774,2989,1718,1648],"collaboration",{"title":2991,"description":2992,"path":2993,"category":2834,"date":2815,"updatedAt":1651,"sourceType":1698,"source":2816,"tags":2994},"OpenClaw 多平台客户端详解","了解 OpenClaw 在 macOS、iOS、Android 等多平台上的客户端能力，以及如何实现跨设备无缝使用。","/news/multiplatform-clients",[2995,1843,2980,2981,2996],"clients","platforms",{"title":2998,"description":2999,"path":3000,"category":2841,"date":2943,"updatedAt":1651,"sourceType":2509,"source":2843,"tags":3001},"OpenClaw 2026.3.7 版本观察","结合最新 release 观察当前版本中最值得中文用户优先关注的变化方向。","/news/mvp-launch",[2370,3002,2371],"version",{"title":3004,"description":3005,"path":3006,"category":3007,"date":3008,"updatedAt":1764,"sourceType":1698,"source":2816,"tags":3009},"OpenClaw 开源一周年：回顾与展望","OpenClaw 开源项目迎来一周年里程碑，回顾这一年的成长历程和社区贡献。","/news/open-source-anniversary","官方公告","2026-03-01",[3010,2938,1905,2937],"anniversary",{"title":3012,"description":3013,"path":3014,"category":2841,"date":3015,"updatedAt":1738,"sourceType":2509,"source":3016,"tags":3017},"OpenClaw 2026.3.13 官方发布：Cron、插件碰撞、Docker 时区和网关稳定性继续修复","基于 2026 年 3 月 14 日发布的官方 GitHub Release，整理本轮最值得中文站读者关注的调度、插件、Docker、渠道和 UI 修复点。","/news/openclaw-2026-3-13-release","2026-03-14","https://github.com/openclaw/openclaw/releases",[2370,2371,2260,1773,2758,1668],{"title":3019,"description":3020,"path":3021,"category":3022,"date":1849,"updatedAt":1849,"sourceType":1698,"source":3023,"tags":3024},"OpenClaw 集成观察：HTTP API、Gateway WebSocket 与 SDK 的三层接口面正在被官方写清","基于 2026 年 3 月 25 日可见的官方 API、Web 与 Gateway 文档，最近开发者侧最值得关注的变化之一是不同接口面的分工正在被官方主动拆清。","/news/openclaw-api-surface-watch-2026-03-25","生态观察","https://docs.openclaw.ai/api/v2",[2215,2221,2622,1668,3025],"integration",{"title":3027,"description":3028,"path":3029,"category":3022,"date":1781,"updatedAt":1781,"sourceType":1698,"source":3030,"tags":3031},"OpenClaw 执行审批观察：CLI、per-agent allowlist 与聊天转发正在把宿主机执行面做成正式治理层","基于 2026 年 3 月 24 日可见的官方 approvals CLI 与 Exec Approvals 文档，最近最值得关注的信号不是“能不能审批”，而是宿主机执行边界已经开始形成一套完整治理面。","/news/openclaw-approvals-surface-watch-2026-03-24","https://docs.openclaw.ai/tools/exec-approvals",[1958,1956,2068,1691,1668,2469],{"title":3033,"description":3034,"path":3035,"category":3022,"date":2213,"updatedAt":2213,"sourceType":1698,"source":3036,"tags":3037},"OpenClaw 开始把 AUTH_TOKEN_MISMATCH 写成可恢复的漂移场景","官方最新 Dashboard 文档把 AUTH_TOKEN_MISMATCH、trusted retry 和 token drift recovery 串成了一条更完整的恢复路径，让认证失败不再只是黑箱报错。","/news/openclaw-auth-mismatch-retry-watch-2026-03-26","https://docs.openclaw.ai/web/dashboard",[1726,1933,3038,2062,2282],"drift",{"title":3040,"description":3041,"path":3042,"category":3022,"date":1859,"updatedAt":1859,"sourceType":1698,"source":3043,"tags":3044},"OpenClaw 的自动化运维面正在收成一条更清楚的排障梯子","官方最近围绕 Heartbeat、cron CLI 和 Automation Troubleshooting 的文档更新，正在把自动化问题从“感觉没触发”收敛成更可观测的几层：调度、入队、运行结果、可见性与时间窗口。","/news/openclaw-automation-ops-ladder-watch-2026-03-29","https://docs.openclaw.ai/automation/troubleshooting",[1648,2268,2260,2723,1690],{"title":3046,"description":3047,"path":3048,"category":3022,"date":1849,"updatedAt":1849,"sourceType":1698,"source":3049,"tags":3050},"OpenClaw 开始把 Broadcast Groups 从路由技巧推进成多代理协作入口","官方最新 Broadcast Groups 文档把多 agent 同群运行的触发条件、session 隔离和处理策略写得更完整了，也让它和普通 bindings 的分工更清楚。","/news/openclaw-broadcast-groups-watch-2026-03-25","https://docs.openclaw.ai/channels/broadcast-groups",[1851,1835,1852,1834,1881],{"title":3052,"description":3053,"path":3054,"category":3022,"date":1859,"updatedAt":1859,"sourceType":1698,"source":3055,"tags":3056},"OpenClaw 的浏览器管理员面正在收成一条完整信任链","官方最近围绕 Pairing、Remote Access、Trusted Proxy Auth 和 Dashboard 的文档更新，正在把浏览器入口从“页面能打开”收敛成“地址、认证、设备与 operator 权限”四层联动的信任链。","/news/openclaw-browser-trust-chain-watch-2026-03-29","https://docs.openclaw.ai/gateway/trusted-proxy-auth",[1726,2430,1982,1740,1691],{"title":3058,"description":3059,"path":3060,"category":3022,"date":1781,"updatedAt":1781,"sourceType":1698,"source":3030,"tags":3061},"OpenClaw 渠道观察：Telegram 和 Discord 正在从聊天入口扩展成正式审批面","基于 2026 年 3 月 24 日可见的官方 Exec Approvals 文档，Telegram 与 Discord 最近最值得关注的变化不是又多了一个命令，而是它们已经开始承担受控审批入口。","/news/openclaw-channel-approval-clients-watch-2026-03-24",[1880,1882,1958,1670,2385],{"title":3063,"description":3064,"path":3065,"category":2874,"date":1664,"updatedAt":1664,"sourceType":1905,"source":3066,"tags":3067},"OpenClaw 在中国 AI 生态中的位置：从中文教程热到本地化能力竞赛","基于 2026 年 3 月 16 日整理素材，梳理 OpenClaw 在中国 AI 生态里的关注点：本地部署、中文模型接入、数据安全与本土服务集成。","/news/openclaw-china-ecosystem-watch-2026-03-16","content/tmp/2026-03-16/openclaw-china-ai-ecosystem-analysis.md",[2749,1906,2877,2829],{"title":3069,"description":3070,"path":3071,"category":3022,"date":1781,"updatedAt":1781,"sourceType":1698,"source":3072,"tags":3073},"OpenClaw ClawHub 观察：sync、lockfile 与最小 telemetry 让技能注册表更像正式分发生态","基于 2026 年 3 月 24 日可见的官方 ClawHub 文档，最近最值得关注的变化不是“技能数量”，而是技能分发、版本记录和同步行为正在更像一套正式 registry。","/news/openclaw-clawhub-sync-watch-2026-03-24","https://docs.openclaw.ai/tools/clawhub",[1888,1683,1897,1898,3074,1889],"telemetry",{"title":3076,"description":3077,"path":3078,"category":2814,"date":1738,"updatedAt":1738,"sourceType":1698,"source":3079,"tags":3080},"OpenClaw CLI 观察：命令行已经不只是辅助工具，而是在慢慢收敛成正式控制面","基于 2026 年 3 月 21 日可见的官方 CLI Reference、Gateway protocol 与 Dashboard 文档，整理最近最值得中文站关注的 CLI 变化：status/health/logs 分层、gateway RPC 边界，以及 Dashboard 和 CLI 之间更清晰的协作关系。","/news/openclaw-cli-control-plane-watch-2026-03-21","https://docs.openclaw.ai/cli",[2115,1668,2585,1826,1690],{"title":3082,"description":3083,"path":3084,"category":3022,"date":1831,"updatedAt":1831,"sourceType":1698,"source":3085,"tags":3086},"OpenClaw 的配置分层边界越来越清楚","官方最近围绕 Environment Variables、Configuration、Logging 和 Debugging 的文档更新，正在把正式配置、env 注入和一次性 override 拆成更清楚的层。","/news/openclaw-configuration-layering-watch-2026-03-22","https://docs.openclaw.ai/help/environment",[1682,2156,1833,3087,1690],"overrides",{"title":3089,"description":3090,"path":3091,"category":2814,"date":1738,"updatedAt":1738,"sourceType":1698,"source":3016,"tags":3092},"OpenClaw 上下文观察：Compaction、Session 连续性与 persona 保真正在成为官方显式关注点","基于 2026 年 3 月 21 日可见的官方 Context 文档与 GitHub Releases 页面，整理最近最值得中文站关注的上下文变化：compaction 后 token 检查、session continuity、persona/language 保真，以及它们对长期使用的意义。","/news/openclaw-context-compaction-watch-2026-03-21",[2169,2170,1970,1672,3093],"continuity",{"title":3095,"description":3096,"path":3097,"category":2814,"date":1738,"updatedAt":1738,"sourceType":1698,"source":3098,"tags":3099},"OpenClaw 控制面观察：Control UI、设备配对与 Tailscale Serve 正在把浏览器管理做成正式能力","基于 2026 年 3 月 21 日可见的官方 Control UI、Dashboard、Pairing 与 Tailscale 文档，整理最近最值得关注的控制面变化：浏览器设备配对、语言支持、远程 Serve 与更明确的管理面边界。","/news/openclaw-control-surface-watch-2026-03-21","https://docs.openclaw.ai/web/control-ui",[1914,1726,2253,1982,1740],{"title":3101,"description":3102,"path":3103,"category":3022,"date":2213,"updatedAt":2213,"sourceType":1698,"source":3036,"tags":3104},"OpenClaw 正在把 Dashboard bootstrap 写成更安全的默认路径","官方最新 Dashboard 文档更明确地说明了 openclaw dashboard 在 localhost、SecretRef token 和 headless 环境里的引导行为，也让它更像正式控制面入口。","/news/openclaw-dashboard-bootstrap-watch-2026-03-26",[1726,3105,2536,1933,1914],"bootstrap",{"title":3107,"description":3108,"path":3109,"category":3022,"date":1781,"updatedAt":1781,"sourceType":1698,"source":3036,"tags":3110},"OpenClaw Web 控制面观察：Dashboard 与 WebChat 的认证引导和回流边界正在变清楚","基于 2026 年 3 月 24 日可见的官方 dashboard CLI、Web Dashboard 与 WebChat 文档，最近 Web 控制面最值得关注的变化是认证引导、SecretRef token 处理和 WebChat 回流边界正在被主动写清。","/news/openclaw-dashboard-webchat-auth-watch-2026-03-24",[1726,1796,1934,2536,1834,3111],"web",{"title":3113,"description":3114,"path":3115,"category":2814,"date":1664,"updatedAt":1664,"sourceType":1905,"source":3116,"tags":3117},"OpenClaw 开发者生态扩张观察：中文技能与本地工作流成为新增长点","基于 2026 年 3 月 16 日临时素材，整理 OpenClaw 开发者生态在中文社区中的扩展方向，重点关注中文技能、本地平台集成与企业工作流落地。","/news/openclaw-developer-ecosystem-watch-2026-03-16","content/tmp/2026-03-16/openclaw-developer-ecosystem-expansion.md",[1679,1683,1906,2749],{"title":3119,"description":3120,"path":3121,"category":3022,"date":1849,"updatedAt":1849,"sourceType":1698,"source":3122,"tags":3123},"OpenClaw 的 devices CLI 正在把设备授权写成一条完整生命周期","官方最近围绕 devices CLI 的补强，让 approve、revoke、rotate 和 fresh token 不再像零散命令，而更像完整的设备授权生命周期。","/news/openclaw-device-token-lifecycle-watch-2026-03-25","https://docs.openclaw.ai/channels/pairing",[1983,1982,1934,2288,3124],"rotate",{"title":3126,"description":3127,"path":3128,"category":3022,"date":1831,"updatedAt":1831,"sourceType":1698,"source":3129,"tags":3130},"OpenClaw 的诊断与修复工作流正在成型","官方最近围绕 Doctor、Diagnostics Flags、Debugging 和 sessions cleanup 的文档更新，正在把 OpenClaw 的排障方式从“看日志猜”推进到更清楚的 repair ladder。","/news/openclaw-diagnostics-repair-watch-2026-03-22","https://docs.openclaw.ai/doctor",[2294,2463,2295,2544,1690],{"title":3132,"description":3133,"path":3134,"category":3022,"date":1849,"updatedAt":1849,"sourceType":1698,"source":3129,"tags":3135},"OpenClaw 排障观察：doctor 正在从“检查器”继续长成带备份心智的修复入口","基于 2026 年 3 月 25 日可见的官方 Doctor 文档，最近排障层最值得关注的变化之一是 doctor 对 stale config、unknown keys 和 legacy 状态的处理边界越来越清楚。","/news/openclaw-doctor-repair-boundary-watch-2026-03-25",[2294,2295,2153,2373,2463],{"title":3137,"description":3138,"path":3139,"category":3140,"date":1664,"updatedAt":1664,"sourceType":1905,"source":3141,"tags":3142},"OpenClaw 教育场景观察：AI 助教、个性化学习与高校试点想象空间","基于 2026 年 3 月 16 日教育领域临时稿，梳理 OpenClaw 在高校与教学场景中的潜在落地方向，包括答疑、学习路径推荐和教师工作流辅助。","/news/openclaw-education-adoption-watch-2026-03-16","行业观察","content/tmp/2026-03-16/openclaw-education-sector-adoption.md",[3143,3144,3145,3146],"education","adoption","ai-tutor","higher-education",{"title":3148,"description":3149,"path":3150,"category":3140,"date":1664,"updatedAt":1664,"sourceType":1905,"source":3151,"tags":3152},"OpenClaw 企业应用热度上升：中文团队更关注私有化部署与流程接入","基于 2026 年 3 月 16 日企业方向临时稿，整理 OpenClaw 在中文企业场景中的关注重点，包括私有化部署、安全边界、行业接入与内部工作流自动化。","/news/openclaw-enterprise-adoption-watch-2026-03-16","content/tmp/2026-03-16/openclaw-enterprise-adoption-boom.md",[1689,2751,1718,2749],{"title":3154,"description":3155,"path":3156,"category":2814,"date":1738,"updatedAt":1738,"sourceType":1698,"source":3157,"tags":3158},"OpenClaw 扩展层观察：ClawHub、插件托管 hooks 与 onboarding 勾选正在把扩展能力收拢成一条更完整链路","基于 2026 年 3 月 21 日可见的官方 Skills、ClawHub、Plugins 与 Hooks 文档，整理最近最值得中文站关注的扩展层变化：技能 registry、插件托管 hooks，以及 onboarding 阶段对推荐 hooks 的直接引导。","/news/openclaw-extension-stack-watch-2026-03-21","https://docs.openclaw.ai/automation/hooks",[1683,1888,1773,1775,1907],{"title":3160,"description":3161,"path":3162,"category":3022,"date":1849,"updatedAt":1849,"sourceType":1698,"source":3163,"tags":3164},"OpenClaw 正在把 gateway-owned pairing 的过期与轮换边界说清楚","官方最新 Gateway-owned pairing 文档把 pending request 的 5 分钟过期、fresh token 生成和 UI 只是审批前端这几层边界写得更清楚了。","/news/openclaw-gateway-pairing-expiry-watch-2026-03-25","https://docs.openclaw.ai/gateway/pairing",[1668,1982,3165,1934,1825],"pending",{"title":3167,"description":3168,"path":3169,"category":3022,"date":2213,"updatedAt":2213,"sourceType":1698,"source":3170,"tags":3171},"OpenClaw 正在把 Gateway 的 session source-of-truth 地位写得更明确","官方最新 Session 文档更明确地说明 session store、JSONL transcript 和 token 计数都应围绕 Gateway 理解，这会直接影响 WebChat、Dashboard 和远程 operator 的排障方式。","/news/openclaw-gateway-source-of-truth-watch-2026-03-26","https://docs.openclaw.ai/session",[1668,1853,1796,1726,3172],"state",{"title":3174,"description":3175,"path":3176,"category":3022,"date":1849,"updatedAt":1849,"sourceType":1698,"source":3177,"tags":3178},"OpenClaw 开始把群聊入口判断顺序写成可复述规则","官方最近在 Groups、Group Messages 和 Messages 文档里，把群入口的 groupPolicy、allowlist 和 mention gating 顺序写得更完整了，也让“没回”和“没进系统”首次更容易区分。","/news/openclaw-group-policy-watch-2026-03-25","https://docs.openclaw.ai/channels/groups",[1852,2608,2068,2001,1834],{"title":3180,"description":3181,"path":3182,"category":3022,"date":1859,"updatedAt":1859,"sourceType":1698,"source":3177,"tags":3183},"OpenClaw 正在把群触发从“@一下就行”写成更完整的治理链","官方最近围绕 Groups、Group Messages 和 Broadcast Groups 的文档更新，正在把 reply-to implicit mention、pending history、forum topic session key 和 shared-group rollout 写成更完整的群入口治理链。","/news/openclaw-group-trigger-governance-watch-2026-03-29",[1852,2681,3184,1851,2094],"activation",{"title":3186,"description":3187,"path":3188,"category":3022,"date":1849,"updatedAt":1849,"sourceType":1698,"source":3189,"tags":3190},"OpenClaw 配置观察：include 合并边界正在从“能拆文件”继续走向“能预测最终结果”","基于 2026 年 3 月 25 日可见的官方 Configuration 文档，最近配置层最值得关注的变化之一是 include、数组处理和 sibling override 的顺序正在被官方主动写清。","/news/openclaw-include-merge-boundary-watch-2026-03-25","https://docs.openclaw.ai/gateway/configuration",[1682,2628,2245,2629,1690],{"title":3192,"description":3193,"path":3194,"category":2814,"date":1738,"updatedAt":1738,"sourceType":1698,"source":3195,"tags":3196},"OpenClaw 官方 Showcase 基础设施观察：Home Assistant、Nix 与远程文件流转正在成为高频落地方向","基于 2026 年 3 月 21 日可见的官方 Showcase 页面，整理最近最值得关注的基础设施与部署类案例，观察 OpenClaw 在家庭服务器、可复现部署和远程实例运维上的真实应用。","/news/openclaw-infra-showcase-watch-2026-03-21","https://docs.openclaw.ai/start/showcase",[3197,2751,3198,3199,3200],"showcase","home-assistant","nix","infrastructure",{"title":3202,"description":3203,"path":3204,"category":3022,"date":1831,"updatedAt":1831,"sourceType":1698,"source":3205,"tags":3206},"OpenClaw 的长期会话治理能力正在变完整","官方最近围绕 session、memory、compaction 和 secure DM mode 的文档更新，正在把长期连续性、上下文边界和重置策略拼成一条更完整的治理链。","/news/openclaw-long-session-governance-watch-2026-03-22","https://docs.openclaw.ai/concepts/session",[1970,1672,2170,3093,2094],{"title":3208,"description":3209,"path":3210,"category":3022,"date":1831,"updatedAt":1831,"sourceType":1698,"source":3211,"tags":3212},"OpenClaw 的后台维护生命周期正在变清楚","官方最近围绕 cron、sessions cleanup、doctor 和 retention 的文档更新，正在把长期运行时的会话、日志和作业痕迹分成更清楚的维护层次。","/news/openclaw-maintenance-lifecycle-watch-2026-03-22","https://docs.openclaw.ai/cron",[2373,2260,1970,2261,1690],{"title":3214,"description":3215,"path":3216,"category":2841,"date":2815,"updatedAt":1651,"sourceType":2509,"source":2843,"tags":3217},"OpenClaw 2026年3月版本更新：技能系统与安全性全面升级","OpenClaw 发布重要更新，带来性能优化、全新技能系统和安全性改进。","/news/openclaw-march-2026-update",[2370,2442,2371,1683,1691],{"title":3219,"description":3220,"path":3221,"category":3022,"date":1781,"updatedAt":1781,"sourceType":1698,"source":3222,"tags":3223},"OpenClaw 记忆观察：Markdown 仍然是 source of truth，memory plugin slot 正在把索引层做成可切换能力","基于 2026 年 3 月 24 日可见的官方 Memory、CLI memory 与 Plugins 文档，最近最值得关注的变化之一是记忆体系的文件事实层和插件增强层正在被官方主动拆清。","/news/openclaw-memory-plugin-slot-watch-2026-03-24","https://docs.openclaw.ai/concepts/memory",[1672,1773,2036,2028,2043],{"title":3225,"description":3226,"path":3227,"category":3022,"date":1859,"updatedAt":1859,"sourceType":1698,"source":3222,"tags":3228},"OpenClaw 正在把记忆检索从“向量搜索”写成一条完整流水线","官方最近围绕 Memory 和 memory CLI 的文档更新，正在把 hybrid search、重排、temporal decay、session indexing 和 embedding cache 逐步写成一条更完整的检索链。","/news/openclaw-memory-retrieval-pipeline-watch-2026-03-29",[1672,2644,2641,2044,2133],{"title":3230,"description":3231,"path":3232,"category":2814,"date":1738,"updatedAt":1738,"sourceType":1698,"source":3195,"tags":3233},"OpenClaw 官方 Showcase 记忆观察：WhatsApp Memory Vault、Karakeep 与中文学习 Skill 正在把语音和知识流转成长期资产","基于 2026 年 3 月 21 日可见的官方 Showcase 页面，整理最近最值得中文站关注的记忆与知识类案例，观察 OpenClaw 如何把转录、向量检索和学习流程接成长链路。","/news/openclaw-memory-showcase-watch-2026-03-21",[3197,1672,1941,3234,3235],"vector-search","knowledge",{"title":3237,"description":3238,"path":3239,"category":3022,"date":1849,"updatedAt":1849,"sourceType":1698,"source":3240,"tags":3241},"OpenClaw 的 mention gating 正在从单一 @ 规则变成跨渠道触发层","官方最新 Groups 和 Group Messages 文档显示，mention gating 已经不再只服务 WhatsApp 群，而是在 Telegram、Slack、Discord、iMessage 等入口上逐步形成统一触发层。","/news/openclaw-mention-gating-watch-2026-03-25","https://docs.openclaw.ai/channels/group-messages",[2608,1852,1880,1882,1949],{"title":3243,"description":3244,"path":3245,"category":3022,"date":1831,"updatedAt":1831,"sourceType":1698,"source":3246,"tags":3247},"OpenClaw 的消息入口语义正在变清楚","官方最近围绕 Messages、WebChat 和 Channel Routing 的文档更新，正在把消息入口、上下文桶、历史展示和投递节奏拆成更明确的几层。","/news/openclaw-message-surface-watch-2026-03-22","https://docs.openclaw.ai/messages",[2001,1796,1834,2005,1670],{"title":3249,"description":3250,"path":3251,"category":3022,"date":1781,"updatedAt":1781,"sourceType":1698,"source":3079,"tags":3252},"OpenClaw 模型观察：models status 正在从状态展示继续长成探活入口","基于 2026 年 3 月 24 日可见的官方 CLI 文档，最近模型层最值得关注的变化之一是 models status 已经不只负责展示主模型和 fallback，而是开始承担 auth profile 探测。","/news/openclaw-model-probe-watch-2026-03-24",[1789,2650,1943,1933,2332],{"title":3254,"description":3255,"path":3256,"category":3022,"date":1849,"updatedAt":1849,"sourceType":1698,"source":3257,"tags":3258},"OpenClaw 节点观察：headless node、普通设备节点与 Gateway 的宿主边界正在被官方写清","基于 2026 年 3 月 25 日可见的官方 Nodes、Architecture 与 Pairing 文档，最近节点层最值得关注的变化之一是能力宿主边界正在被主动拆清。","/news/openclaw-node-host-boundary-watch-2026-03-25","https://docs.openclaw.ai/nodes",[1825,1981,1668,1982,1983],{"title":3260,"description":3261,"path":3262,"category":2814,"date":1738,"updatedAt":1738,"sourceType":1698,"source":3263,"tags":3264},"OpenClaw 接入观察：从 2026.1.29 的迁移信号到现在的 Onboarding Wizard，官方已经把“第一次跑通”做成更完整链路","基于 2026 年 3 月 21 日可见的官方 Onboarding、Install 与 Releases 页面，整理 OpenClaw 从命名迁移、路径自动迁移到本地/远程 wizard 分流这条接入链路最近最值得注意的变化。","/news/openclaw-onboarding-migration-watch-2026-03-21","https://docs.openclaw.ai/start/wizard",[1725,2798,3265,2799,2373],"install",{"title":3267,"description":3268,"path":3269,"category":3022,"date":2213,"updatedAt":2213,"sourceType":1698,"source":3098,"tags":3270},"OpenClaw 的远程 operator 正在从“谁都能开网页”转向浏览器级交接管理","随着 Dashboard、Control UI 和 device pairing 文档持续补强，官方越来越清楚地把浏览器 profile、设备 pairing 和控制面交接写成同一条管理面问题。","/news/openclaw-operator-browser-watch-2026-03-26",[2385,1647,1914,1982,1740],{"title":3272,"description":3273,"path":3274,"category":3022,"date":1859,"updatedAt":1859,"sourceType":1698,"source":3275,"tags":3276},"OpenClaw 正在把 Dashboard、WebChat 和 WebSocket 收成一套 operator surface","官方最近围绕 Dashboard、WebChat 和 Gateway Protocol 的文档更新，越来越清楚地把这些入口解释成同一套 operator surface 的不同层，而不是彼此割裂的功能页。","/news/openclaw-operator-surface-convergence-watch-2026-03-29","https://docs.openclaw.ai/gateway/protocol",[1726,1796,2221,2385,1826],{"title":3278,"description":3279,"path":3280,"category":3022,"date":1849,"updatedAt":1849,"sourceType":1698,"source":3122,"tags":3281},"OpenClaw 的 pairing CLI 正在从单条 approve 命令长成正式入口治理面","官方最近把 pairing CLI 的 list、clear、--account 和 --notify 等行为写得更完整了，也让聊天入口审批越来越像一套正式的运营控制面。","/news/openclaw-pairing-cli-scope-watch-2026-03-25",[1982,2487,1670,2488,1690],{"title":3283,"description":3284,"path":3285,"category":2814,"date":1738,"updatedAt":1738,"sourceType":1698,"source":3286,"tags":3287},"OpenClaw 官方插件生态观察：社区插件、内置 Provider 插件与 Hook Pack 正在形成更完整扩展层","基于 2026 年 3 月 21 日可见的官方插件与 hooks 文档，整理 OpenClaw 插件生态最近最值得关注的三个变化：社区插件目录、package pack、多层 hooks 组织方式。","/news/openclaw-plugin-ecosystem-watch-2026-03-21","https://docs.openclaw.ai/plugins",[1773,1906,1775,1905,1907],{"title":3289,"description":3290,"path":3291,"category":3022,"date":1781,"updatedAt":1781,"sourceType":1698,"source":3292,"tags":3293},"OpenClaw 插件观察：安装 spec 和 update tracking 正在决定插件后续会沿哪条轨道走","基于 2026 年 3 月 24 日可见的官方 plugins CLI 文档，最近插件层最值得关注的变化之一是 install spec、--pin 与 plugins.installs 正在被官方主动连成一条生命周期链。","/news/openclaw-plugin-install-tracking-watch-2026-03-24","https://docs.openclaw.ai/cli/plugins",[1773,1888,2662,2663,2372],{"title":3295,"description":3296,"path":3297,"category":3022,"date":1781,"updatedAt":1781,"sourceType":1698,"source":3298,"tags":3299},"OpenClaw 工作流观察：OpenProse 与 Lobster 的上下层分工正在变清楚","基于 2026 年 3 月 24 日可见的官方 Lobster 文档，最近最值得关注的信号是 OpenProse 与 Lobster 的边界正在被官方主动写清，多智能体准备和确定性执行不再混成一层。","/news/openclaw-prose-lobster-watch-2026-03-24","https://docs.openclaw.ai/tools/lobster",[2087,2088,1718,1958,1774],{"title":3301,"description":3302,"path":3303,"category":3022,"date":1859,"updatedAt":1859,"sourceType":1698,"source":3304,"tags":3305},"OpenClaw 正在把 provider、模型和远程执行分成不同治理层","官方最近围绕 Models、Model Failover 和 node 的文档更新，正在把 provider auth、模型 allowlist、多模态能力和远程 node 执行拆成更清楚的治理层。","/news/openclaw-provider-capability-governance-watch-2026-03-29","https://docs.openclaw.ai/concepts/models",[1943,1789,1825,1933,2094],{"title":3307,"description":3308,"path":3309,"category":3022,"date":1859,"updatedAt":1859,"sourceType":1698,"source":3310,"tags":3311},"OpenClaw 的 provider 故障恢复正在变成一条更清楚的梯子","官方最近围绕 Model Failover、Gateway Troubleshooting、LiteLLM 和 Cloudflare AI Gateway 的文档更新，正在把模型故障从“直接换模型”收敛成更清楚的几层：能力条件、profile 轮转、统一网关和跨模型 fallback。","/news/openclaw-provider-recovery-ladder-watch-2026-03-29","https://docs.openclaw.ai/concepts/model-failover",[1943,2456,1789,1668,1690],{"title":3313,"description":3314,"path":3315,"category":2814,"date":1738,"updatedAt":1738,"sourceType":1698,"source":3016,"tags":3316},"OpenClaw 发布观察：2026.3.13 恢复型 Release 暴露出版本跟踪里最容易忽略的三层差异","基于 2026 年 3 月 21 日可见的 GitHub Releases 页面，整理 OpenClaw 2026.3.13 恢复型 Release 的关键信号，以及中文站在跟踪版本时最该注意的 npm 版本、Git tag 和 GitHub Release 名称差异。","/news/openclaw-release-watch-2026-03-21",[2370,2371,2373,2372],{"title":3318,"description":3319,"path":3320,"category":3022,"date":1831,"updatedAt":1831,"sourceType":1698,"source":3036,"tags":3321},"OpenClaw 的远程管理员面边界越来越清楚","官方最近围绕 Dashboard、Pairing、Gateway-owned pairing 与 nodes 的文档更新，正在把远程协作、浏览器入口和设备接入的边界拆得更清楚。","/news/openclaw-remote-admin-watch-2026-03-22",[1726,1982,1825,1740,2275],{"title":3323,"description":3324,"path":3325,"category":3022,"date":1849,"updatedAt":1849,"sourceType":1698,"source":3326,"tags":3327},"OpenClaw 的 routing precedence 正在成为更明确的排障坐标系","官方最近围绕 Channel Routing 的写法，正在把 peer、thread inheritance、guild、team、account 和 channel 等命中层级固定下来，让路由排障越来越像查规则，而不是猜模型。","/news/openclaw-routing-precedence-watch-2026-03-25","https://docs.openclaw.ai/channels/channel-routing",[1834,1833,3328,1670,1835],"threads",{"title":3330,"description":3331,"path":3332,"category":3022,"date":1849,"updatedAt":1849,"sourceType":1698,"source":3333,"tags":3334},"OpenClaw Secret 观察：active snapshot 正在把密钥轮换从“即时取值”收成“原子切换”","基于 2026 年 3 月 25 日可见的官方 Secrets Management 文档，最近 secrets 层最值得关注的变化之一是 active snapshot 与 last-known-good 的边界越来越清楚。","/news/openclaw-secret-snapshot-watch-2026-03-25","https://docs.openclaw.ai/gateway/secrets",[2690,3335,3336,2689,1690],"snapshot","rotation",{"title":3338,"description":3339,"path":3340,"category":3022,"date":1849,"updatedAt":1849,"sourceType":1698,"source":3205,"tags":3341},"OpenClaw 正在把 secure DM mode 写成共享入口的默认安全心智","官方最近围绕 Session、Security 和 CLI Security 的更新，正在把 secure DM mode 从一个可选技巧，推成多人 DM 入口的基础隔离建议。","/news/openclaw-secure-dm-mode-watch-2026-03-25",[1853,1691,2559,1982,2410],{"title":3343,"description":3344,"path":3345,"category":3022,"date":1781,"updatedAt":1781,"sourceType":1698,"source":3346,"tags":3347},"OpenClaw 安全观察：security audit 已经从提醒工具继续长成加固入口","基于 2026 年 3 月 24 日可见的官方安全文档，最近最值得关注的信号是 openclaw security audit 不再只是列问题，而是在形成 audit、deep、fix 三段式加固路径。","/news/openclaw-security-audit-fix-watch-2026-03-24","https://docs.openclaw.ai/gateway/security",[1691,2395,2397,2396,1690],{"title":3349,"description":3350,"path":3351,"category":3352,"date":1664,"updatedAt":1664,"sourceType":1905,"source":3353,"tags":3354},"OpenClaw 安全与合规话题升温：中文团队更在意可审计与本地数据边界","基于 2026 年 3 月 16 日安全方向临时稿，整理 OpenClaw 在中文环境下最受关注的安全议题，包括本地运行、合规要求、可审计性与金融等高敏行业采用。","/news/openclaw-security-compliance-watch-2026-03-16","安全观察","content/tmp/2026-03-16/openclaw-security-audit-milestone.md",[1691,3355,2014,1689],"compliance",{"title":3357,"description":3358,"path":3359,"category":3022,"date":1831,"updatedAt":1831,"sourceType":1698,"source":3333,"tags":3360},"OpenClaw 的安全运维边界继续细化","官方最近围绕 Secrets、approvals forwarding、trusted proxy 和 Control UI 降级开关的文档，正在把安全问题从抽象原则推向更可执行的运维边界。","/news/openclaw-security-ops-watch-2026-03-22",[1691,2689,1958,3361,1690],"proxy",{"title":3363,"description":3364,"path":3365,"category":3022,"date":2701,"updatedAt":2701,"sourceType":1698,"source":3366,"tags":3367},"OpenClaw 正在把 session transcript 从 JSONL 文件写成结构化会话事实层","官方最近新增的 Session Management Deep Dive 文档，把 session header、message tree、compaction entry 和 branch summary 这几层边界写得更清楚了。","/news/openclaw-session-jsonl-deep-dive-watch-2026-04-01","https://docs.openclaw.ai/reference/session-management-compaction",[1853,2704,2170,2703,1668],{"title":3369,"description":3370,"path":3371,"category":3022,"date":2701,"updatedAt":2701,"sourceType":1698,"source":3372,"tags":3373},"OpenClaw 的 sessions CLI 正在从会话列表命令长成 store 巡检入口","官方最近把 sessions CLI 的 scope、all-agents、active 和显式 store 路径写得更完整了，也让它更适合作为长期运维里的 session store 巡检面。","/news/openclaw-sessions-cli-watch-2026-04-01","https://docs.openclaw.ai/cli/sessions",[1970,2115,2710,2395,1690],{"title":3375,"description":3376,"path":3377,"category":3022,"date":1849,"updatedAt":1849,"sourceType":1698,"source":3378,"tags":3379},"OpenClaw 正在把 shared inbox 明确限定为协作硬化，而不是多租户承诺","官方最新 security audit 文档正在更明确地区分协作型 shared inbox 与互不信任多租户环境，并把 secure DM、sandbox 和 workspace-scoped access 组合成更完整的加固建议。","/news/openclaw-shared-inbox-trust-model-watch-2026-03-25","https://docs.openclaw.ai/cli/security",[1691,2410,2411,3380,1668],"sandbox",{"title":3382,"description":3383,"path":3384,"category":2814,"date":1738,"updatedAt":1738,"sourceType":1698,"source":3195,"tags":3385},"OpenClaw 官方 Showcase 更新：Telegram PR 反馈、酒窖 Skill 与 Tesco 自动购物成为新样板","基于 2026 年 3 月 21 日可见的官方 Showcase 页面，整理最近最值得中文站关注的三个社区案例，观察 OpenClaw 在评审、个人数据库和购物自动化上的真实落地方式。","/news/openclaw-showcase-watch-2026-03-21",[3197,1905,1880,1683,1648],{"title":3387,"description":3388,"path":3389,"category":3022,"date":1859,"updatedAt":1859,"sourceType":1698,"source":3378,"tags":3390},"OpenClaw 正在把团队入口治理拆成更细的几层","官方最近围绕 security audit、session、broadcast groups 和 channel routing 的文档更新，正在把 shared-user ingress、identityLinks、broadcast precedence 和 shared inbox 硬化拆成更清楚的治理面。","/news/openclaw-team-ingress-governance-watch-2026-03-29",[2410,2560,1851,1834,1691],{"title":3392,"description":3393,"path":3394,"category":3022,"date":2701,"updatedAt":2701,"sourceType":1698,"source":3395,"tags":3396},"OpenClaw 正在把 transcript hygiene 从隐藏兼容层写成正式参考边界","官方最近单独写出 Transcript Hygiene 文档后，tool call 修补、图片清理和 provider fixups 不再只是内部细节，而成了更清楚的运行前兼容层。","/news/openclaw-transcript-hygiene-watch-2026-04-01","https://docs.openclaw.ai/zh-CN/reference/transcript-hygiene",[2703,1943,2729,2730,3397],"compatibility",{"title":3399,"description":3400,"path":3401,"category":3022,"date":1781,"updatedAt":1781,"sourceType":1698,"source":3055,"tags":3402},"OpenClaw 远程入口观察：trusted-proxy 正在被官方明确定义为高收益但高责任模式","基于 2026 年 3 月 24 日可见的官方 trusted-proxy auth 文档，最近最值得关注的不是怎么把页面转发出来，而是 OpenClaw 正在主动强调 trusted-proxy 的安全责任转移。","/news/openclaw-trusted-proxy-risk-watch-2026-03-24",[2430,1691,1740,1668,1933],{"title":3404,"description":3405,"path":3406,"category":3022,"date":2213,"updatedAt":2213,"sourceType":1698,"source":3170,"tags":3407},"OpenClaw 的 UI 和 API 排障正在越来越像按层定位，而不是猜谁错了","官方最新 Session、WebChat 和 API 文档共同强化了一条思路：状态冲突时先回到 Gateway 事实层，再区分 UI 投影视图和 API 结构化返回。","/news/openclaw-ui-api-debug-watch-2026-03-26",[1668,1796,2215,2544,1853],{"title":3409,"description":3410,"path":3411,"category":3022,"date":1781,"updatedAt":1781,"sourceType":1698,"source":3412,"tags":3413},"OpenClaw 维护观察：卸载边界正在从“删包”变成“服务、状态、profile 与远程主机”的完整收口","基于 2026 年 3 月 24 日可见的官方 Updating 与 uninstall 文档，最近最值得关注的变化之一是 OpenClaw 的卸载和移除边界正在被官方主动写清，不再只是删除 CLI。","/news/openclaw-uninstall-boundaries-watch-2026-03-24","https://docs.openclaw.ai/cli/uninstall",[2778,2373,2475,1668,3172],{"title":3415,"description":3416,"path":3417,"category":3022,"date":1781,"updatedAt":1781,"sourceType":1698,"source":3418,"tags":3419},"OpenClaw 更新观察：stable、beta、dev 正在从版本标签变成正式 rollout 体系","基于 2026 年 3 月 24 日可见的官方 update CLI 与 Updating 文档，最近最值得关注的变化之一是更新通道和 auto-updater 行为已经被官方写成一套明确的 rollout 逻辑。","/news/openclaw-update-channels-watch-2026-03-24","https://docs.openclaw.ai/cli/update",[2442,2443,2444,2445,2446],{"title":3421,"description":3422,"path":3423,"category":2814,"date":1738,"updatedAt":1738,"sourceType":1698,"source":3195,"tags":3424},"OpenClaw 官方 Showcase 语音观察：Phone Bridge、Telegram Voice Notes 与多语言转录正在把语音入口做实","基于 2026 年 3 月 21 日可见的官方 Showcase 页面，整理最近最值得中文站关注的语音与电话类案例，观察 OpenClaw 在电话桥接、TTS 回传和多语言转录上的真实方向。","/news/openclaw-voice-phone-showcase-watch-2026-03-21",[3197,1927,3425,3426,1941],"phone","tts",{"title":3428,"description":3429,"path":3430,"category":3022,"date":1849,"updatedAt":1849,"sourceType":1698,"source":3431,"tags":3432},"OpenClaw 语音观察：全局 wake words 与设备本地 toggle 的分层正在变清楚","基于 2026 年 3 月 25 日可见的官方 Voice Wake 文档，最近语音层最值得关注的变化之一是 Gateway 级词表与设备本地开关的边界正在被官方主动强调。","/news/openclaw-voice-wake-boundary-watch-2026-03-25","https://docs.openclaw.ai/nodes/voice-wake",[1927,2201,2202,1825,1983],{"title":3434,"description":3435,"path":3436,"category":2814,"date":1738,"updatedAt":1738,"sourceType":1698,"source":3036,"tags":3437},"OpenClaw Web 入口观察：Dashboard、WebChat 与 Gateway WebSocket 正在收敛成一套更清晰的使用分工","基于 2026 年 3 月 21 日可见的官方 Dashboard、WebChat 与架构文档，整理最近最值得中文站关注的 Web 入口变化：Dashboard 的快速打开、WebChat 的 Gateway 直连，以及控制面和聊天面的职责分离。","/news/openclaw-web-surfaces-watch-2026-03-21",[1726,1796,2221,1914,3111],{"title":3439,"description":3440,"path":3441,"category":3022,"date":2213,"updatedAt":2213,"sourceType":1698,"source":3442,"tags":3443},"OpenClaw 正在把 WebChat、Dashboard 和 API 的入口职责写得更清楚","官方最近围绕 WebChat、Session 和 API 的写法，让 Dashboard 更像控制面、WebChat 更像会话 UI、API 更像结构化集成面，入口分工正在变得更稳定。","/news/openclaw-webchat-control-surface-watch-2026-03-26","https://docs.openclaw.ai/web/webchat",[1796,1726,2215,1668,1650],{"title":3445,"description":3446,"path":3447,"category":3022,"date":1831,"updatedAt":1831,"sourceType":1698,"source":3298,"tags":3448},"OpenClaw 工作流治理能力继续成型","官方最近的 ClawHub、Lobster、OpenProse 与 Exec approvals 文档，正在把技能发现、确定性执行和审批恢复串成更完整的一条线。","/news/openclaw-workflow-governance-watch-2026-03-22",[1718,2088,1888,1958,2094],{"title":3450,"description":3451,"path":3452,"category":3453,"date":3454,"updatedAt":3454,"sourceType":1665,"source":3455,"tags":3456},"OpenClaw 中文站本周更新：扩展能力地图、案例展示重构与周更内容节奏启动","本周中文站完成扩展目录重排、案例展示页重构，并开始按“教程 + 更新 + 案例”三类节奏持续发布内容。","/news/openclawcn-weekly-update-2026-03-15","站点更新","2026-03-15","openclawcn.xyz",[3457,3458,1671,3197,3459],"site-update","content","weekly",{"title":3461,"description":3462,"path":3463,"category":3464,"date":2815,"updatedAt":1651,"sourceType":1698,"source":2816,"tags":3465},"OpenClaw 隐私优先：数据保留在本地设备","OpenClaw 强调数据本地存储，用户数据保留在自有设备上，不上传到云端。","/news/privacy-first","产品理念",[2014,3466,1691,3467],"local-first","data",{"title":3469,"description":3470,"path":3471,"category":2933,"date":2815,"updatedAt":1651,"sourceType":2509,"source":2934,"tags":3472},"OpenClaw 项目持续活跃：主仓库星标突破 287k","OpenClaw 开源项目持续快速发展，主仓库星标数突破 287,000，ClawHub 技能目录已收录 349 个开源项目。","/news/project-update-march-2026",[2509,2936,1905,2890],{"title":3474,"description":3475,"path":3476,"category":3007,"date":2978,"updatedAt":1697,"sourceType":1698,"source":2816,"tags":3477},"OpenClaw 2026 年第一季度回顾","回顾 OpenClaw 在 2026 年第一季度的重要更新、社区成长和产品里程碑。","/news/q1-2026-review",[3478,3479,3480,2937],"quarterly","review","2026",{"title":3482,"description":3483,"path":3484,"category":2822,"date":1651,"updatedAt":1764,"sourceType":1698,"source":2816,"tags":3485},"OpenClaw 安全架构深度解析","深入了解 OpenClaw 的安全设计理念、数据保护机制和企业级安全特性。","/news/security-architecture",[1691,2014,1689,1681],{"title":3487,"description":3488,"path":3489,"category":3490,"date":1651,"updatedAt":1651,"sourceType":1905,"source":3491,"tags":3492},"OpenClaw 安全最佳实践：保护你的 AI 助手免受风险","随着 OpenClaw 的普及，安全问题日益受到关注。本文整理了保护本地 AI 助手的关键安全措施和最佳实践。","/news/security-best-practices","安全公告","安全社区",[1691,2014,2355,1783],{"title":3494,"description":3495,"path":3496,"category":2895,"date":2815,"updatedAt":1651,"sourceType":1698,"source":2816,"tags":3497},"OpenClaw Signal 隐私通讯集成","了解如何将 OpenClaw 连接到 Signal，实现隐私通讯。","/news/signal-privacy",[2139,2014,2897,1701],{"title":3499,"description":3500,"path":3501,"category":2874,"date":2842,"updatedAt":1697,"sourceType":2509,"source":2843,"tags":3502},"OpenClaw 技能市场突破 400 个技能","OpenClaw 技能市场迎来重要里程碑，社区贡献的技能数量突破 400 个，覆盖更多应用场景。","/news/skills-marketplace-400",[1683,2937,1905,3503],"marketplace",{"title":3505,"description":3506,"path":3507,"category":2895,"date":2815,"updatedAt":1651,"sourceType":1698,"source":2816,"tags":3508},"OpenClaw Slack 工作区集成","了解如何将 OpenClaw 集成到 Slack 工作区，实现团队协作。","/news/slack-workspace",[1949,1817,2897,1701],{"title":3510,"description":3511,"path":3512,"category":2834,"date":2815,"updatedAt":1651,"sourceType":1698,"source":2816,"tags":3513},"OpenClaw Tailscale 远程访问完全指南","了解如何使用 Tailscale 安全远程访问 OpenClaw，包括 Serve、Funnel 和身份认证。","/news/tailscale-integration",[2253,1740,3514,1691],"vpn",{"title":3516,"description":3517,"path":3518,"category":2895,"date":2815,"updatedAt":1651,"sourceType":1698,"source":2816,"tags":3519},"OpenClaw Telegram Bot 配置指南","了解如何创建和配置 Telegram Bot 连接到 OpenClaw。","/news/telegram-bot",[1880,2177,2897,1701],{"title":3521,"description":3522,"path":3523,"category":3524,"date":2815,"updatedAt":1651,"sourceType":1698,"source":2816,"tags":3525},"OpenClaw 与 VirusTotal 合作推出技能安全验证","OpenClaw 宣布与 VirusTotal 合作，为技能（Skills）提供安全验证服务，确保用户使用安全的 AI 技能。","/news/virustotal-integration","安全更新",[1691,3526,1683,3527],"virustotal","verification",{"title":3529,"description":3530,"path":3531,"category":2834,"date":2815,"updatedAt":1651,"sourceType":1698,"source":2816,"tags":3532},"OpenClaw 语音与 Canvas 功能详解","深入了解 OpenClaw 的语音交互能力和实时 Canvas 可视化功能，如何在日常场景中发挥价值。","/news/voice-and-canvas",[1927,2866,2868,3533],"multimodal",{"title":3535,"description":3536,"path":3537,"category":2841,"date":2815,"updatedAt":1651,"sourceType":1698,"source":2816,"tags":3538},"OpenClaw iOS 语音唤醒功能正式发布","OpenClaw iOS 应用现已支持语音唤醒功能，用户可以通过\"Hey Siri\"风格的唤醒词激活助手。","/news/voice-wakeup-ios",[2980,1927,3539,2370],"wakeup",{"title":3541,"description":3542,"path":3543,"category":2895,"date":2815,"updatedAt":1651,"sourceType":1698,"source":2816,"tags":3544},"OpenClaw WhatsApp 连接完全指南","详细了解如何将 WhatsApp 连接到 OpenClaw，包括配对、安全配置和常见问题解决。","/news/whatsapp-connection",[1881,2897,3545,1701],"baileys",{"count":3547,"items":3548},100,[3549,3556,3562,3569,3576,3582,3591,3597,3603,3605,3611,3618,3627,3635,3641,3651,3660,3667,3675,3684,3690,3698,3703,3708,3718,3724,3731,3736,3742,3749,3756,3763,3769,3774,3780,3786,3791,3796,3802,3808,3814,3820,3825,3831,3837,3844,3849,3856,3862,3868,3875,3880,3886,3891,3898,3903,3910,3916,3921,3929,3936,3942,3947,3952,3958,3964,3972,3977,3983,3988,3994,3999,4005,4011,4016,4021,4026,4033,4040,4046,4051,4057,4060,4067,4074,4080,4085,4090,4096,4102,4107,4112,4118,4123,4131,4137,4142,4148,4153,4158],{"title":3550,"description":3551,"path":3552,"category":3553,"difficulty":3554,"updatedAt":1738,"sourceType":1698,"tags":3555},"管理员常用 CLI 值班手册","结合最新官方 CLI Reference、Gateway protocol 和 Dashboard 文档，总结长期运行环境里管理员最常用的 CLI 值班顺序：先看 status、再看 health、最后进 logs 与 gateway RPC。","/best-practices/admin-cli-playbook","运维实践","初级",[2115,2275,1690,2051,1668],{"title":3557,"description":3558,"path":3559,"category":1636,"difficulty":3554,"updatedAt":1651,"sourceType":1644,"tags":3560},"AI 提示词工程指南","优化与 AI 助手的交互效果，包括提示词技巧、角色设定和上下文管理。","/best-practices/ai-prompt-engineering",[3561,2169,1718,2836],"prompting",{"title":3563,"description":3564,"path":3565,"category":3566,"difficulty":3567,"updatedAt":1849,"sourceType":1698,"tags":3568},"API 集成面该怎么选：管理、实时还是嵌入式开发","结合最新官方 API、Gateway Web 与 SDK 文档，整理一套更稳的接口面选择方法，帮助团队区分什么时候走 HTTP API、什么时候走 Gateway WebSocket、什么时候用 SDK。","/best-practices/api-surface-selection","开发治理","中高级",[2215,2221,2622,3025,1681],{"title":3570,"description":3571,"path":3572,"category":3573,"difficulty":3574,"updatedAt":1831,"sourceType":1698,"tags":3575},"需要审批的自动化流程应该怎么设计","结合最新官方 Lobster、Exec approvals 和 OpenProse 文档，整理一套更稳的自动化设计顺序，让分析、审批和副作用执行分层出现。","/best-practices/approval-gated-automation","自动化治理","高级",[1648,1958,2088,1956,2094],{"title":3577,"description":3578,"path":3579,"category":3580,"difficulty":1639,"updatedAt":1651,"sourceType":1644,"tags":3581},"自动化工作流设计","使用 OpenClaw 构建自动化工作流，包括定时任务、事件触发和条件分支。","/best-practices/automation-workflows","自动化",[1648,1650,2269,1990],{"title":3583,"description":3584,"path":3585,"category":3586,"difficulty":3567,"updatedAt":1651,"sourceType":1644,"tags":3587},"备份、恢复与灾难恢复","建立完善的备份策略，包括配置备份、数据备份和灾难恢复方案。","/best-practices/backup-recovery","运维管理",[3588,3589,3590,1690],"backup","recovery","disaster-recovery",{"title":3592,"description":3593,"path":3594,"category":3595,"difficulty":3574,"updatedAt":1849,"sourceType":1698,"tags":3596},"Broadcast Groups 上线前，先把多代理协作边界定清楚","结合最新官方 Broadcast Groups 与 Channel Routing 文档，整理多代理同群运行时的角色拆分、工具权限、响应节奏和群入口触发规则，避免把实验能力直接变成高噪声群机器人。","/best-practices/broadcast-group-governance","渠道治理",[1851,1852,1835,2094,1834],{"title":3598,"description":3599,"path":3600,"category":3601,"difficulty":3574,"updatedAt":1859,"sourceType":1698,"tags":3602},"浏览器管理员面要按信任链分层开放","结合最新官方 Pairing、Remote Access、Trusted Proxy Auth 和 Dashboard 文档，总结浏览器管理面更稳的开放顺序，避免把地址可达、身份认证、设备配对和 operator 权限混成一个问题。","/best-practices/browser-admin-trust-chain","协作运维",[1726,1914,2430,1982,1691],{"title":5,"description":1638,"path":1642,"category":1636,"difficulty":1639,"updatedAt":1651,"sourceType":1644,"tags":3604},[1647,1648,1649,1650],{"title":3606,"description":3607,"path":3608,"category":3609,"difficulty":1639,"updatedAt":1651,"sourceType":1644,"tags":3610},"Canvas 交互式界面开发","学习使用 A2UI 语法创建交互式 Canvas 界面，包括表单、图表和数据展示。","/best-practices/canvas-interactive","可视化开发",[2866,2867,2869,2868],{"title":3612,"description":3613,"path":3614,"category":3615,"difficulty":3574,"updatedAt":1831,"sourceType":1698,"tags":3616},"用 message CLI 和命令入口时，怎么避免发到错误会话","结合最新官方 Messages、Channel Routing 和 WebChat 文档，整理频道目标、session key、reply routing 和 operator 命令入口之间的关系，避免“命令发对了，结果进错桶”。","/best-practices/channel-command-session-targeting","消息治理",[1670,1834,3617,1853,1690],"message-cli",{"title":3619,"description":3620,"path":3621,"category":3622,"difficulty":1639,"updatedAt":1697,"sourceType":1644,"tags":3623},"OpenClaw 中文优化指南","针对中文用户的 OpenClaw 优化配置，包括模型选择、提示词优化和中文技能推荐。","/best-practices/chinese-optimization","最佳实践",[3624,3625,2877,3626],"chinese","optimization","tips",{"title":3628,"description":3629,"path":3630,"category":3631,"difficulty":3567,"updatedAt":1651,"sourceType":1644,"tags":3632},"CI/CD 集成与部署自动化","将 OpenClaw 集成到 CI/CD 流程，实现自动化构建、测试和部署。","/best-practices/ci-cd-integration","开发流程",[3633,2751,3634,1648],"ci-cd","testing",{"title":3636,"description":3637,"path":3638,"category":3639,"difficulty":3574,"updatedAt":1831,"sourceType":1698,"tags":3640},"正式配置、环境变量和一次性 override 应该怎么分层","结合最新官方 Configuration、Environment Variables、Logging 和 Debugging 文档，总结长期环境里怎么区分 on-disk config、env 注入、CLI 覆盖和 /debug 一次性改动，避免把临时修复留成永久配置。","/best-practices/config-layering-and-oneoff-overrides","配置治理",[1682,2156,3087,2544,1690],{"title":3642,"description":3643,"path":3644,"category":3645,"difficulty":3554,"updatedAt":1764,"sourceType":1905,"tags":3646},"内容创作助手","使用 OpenClaw 构建内容创作工作流，实现写作辅助、翻译、内容优化和多平台发布。","/best-practices/content-creation","内容创作",[3458,3647,3648,3649,3650],"writing","translation","publishing","productivity",{"title":3652,"description":3653,"path":3654,"category":3655,"difficulty":1639,"updatedAt":1859,"sourceType":1698,"tags":3656},"内容网络编辑手册：把文档、实践、新闻和专题真正织成一套知识体系","面向内容站运营，把文档、最佳实践、新闻动态、专题页和学习路径放到同一张编辑地图里，帮助持续产出更完整、更可回流的长文和系列内容。","/best-practices/content-network-editorial-playbook","内容运营",[3458,3657,3658,1758,3659,2355],"seo","editorial","news",{"title":3661,"description":3662,"path":3663,"category":3664,"difficulty":3574,"updatedAt":1831,"sourceType":1698,"tags":3665},"Control UI 安全降级开关应该怎样做 break-glass 管理","结合最新官方安全、Dashboard 和 Control UI 文档，总结 allowInsecureAuth、dangerouslyDisableDeviceAuth 这类降级开关在什么情况下可以临时使用，以及怎样快速回滚。","/best-practices/control-ui-break-glass-policy","安全治理",[1914,1691,3666,1933,1680],"break-glass",{"title":3668,"description":3669,"path":3670,"category":3671,"difficulty":1639,"updatedAt":1764,"sourceType":1698,"tags":3672},"自定义技能开发指南","从零开始开发 OpenClaw 自定义技能，包括项目结构、配置文件、处理逻辑、测试方法和发布流程。","/best-practices/custom-skill-development","开发",[1683,3673,3674,1701],"development","custom",{"title":3676,"description":3677,"path":3678,"category":3679,"difficulty":1639,"updatedAt":1764,"sourceType":1905,"tags":3680},"企业客服自动化","使用 OpenClaw 构建智能客服系统，实现自动问答、工单处理、多渠道接入和数据分析。","/best-practices/customer-service-advanced","企业应用",[3681,1689,1648,3682,3683],"customer-service","chatbot","support",{"title":3685,"description":3686,"path":3687,"category":3688,"difficulty":1639,"updatedAt":1651,"sourceType":1644,"tags":3689},"客户服务场景应用","使用 OpenClaw 构建智能客服系统，包括自动回复、工单管理和满意度调查。","/best-practices/customer-service","应用场景",[3681,1650,1648,3683],{"title":3691,"description":3692,"path":3693,"category":3694,"difficulty":3554,"updatedAt":1651,"sourceType":1644,"tags":3695},"界面定制与主题","定制 OpenClaw Control UI 的界面和主题。","/best-practices/customization-ui","定制开发",[2869,3696,3697,1914],"customization","themes",{"title":3699,"description":3700,"path":3701,"category":3553,"difficulty":1639,"updatedAt":1781,"sourceType":1698,"tags":3702},"Dashboard 认证引导与 token 漂移该怎么处理","结合最新官方 dashboard CLI 与 Web Dashboard 文档，整理一套更稳的 Dashboard 打开和鉴权恢复顺序，避免把本地、远程、SecretRef token 和浏览器缓存问题混成一个故障。","/best-practices/dashboard-auth-bootstrap-and-drift",[1726,1933,1934,2536,1647,1690],{"title":3704,"description":3705,"path":3706,"category":3553,"difficulty":1639,"updatedAt":2213,"sourceType":1698,"tags":3707},"Dashboard 出现授权漂移时，先走恢复梯子，不要上来就重装","结合最新官方 Dashboard 文档，整理一套更稳的 Dashboard 恢复梯子，把 localhost、远程、SecretRef token、trusted retry 和实例混淆分开排，避免把简单 drift 升级成大修。","/best-practices/dashboard-recovery-ladder",[1726,3589,1933,3038,1690],{"title":3709,"description":3710,"path":3711,"category":3712,"difficulty":1639,"updatedAt":1764,"sourceType":1905,"tags":3713},"数据分析助手","使用 OpenClaw 构建数据分析助手，实现报表生成、数据可视化、异常检测和智能洞察。","/best-practices/data-analysis-advanced","数据分析",[3714,2868,3715,3716,3717],"data-analysis","reporting","insights","analytics",{"title":3719,"description":3720,"path":3721,"category":3722,"difficulty":1639,"updatedAt":1651,"sourceType":1644,"tags":3723},"数据分析与可视化","使用 OpenClaw 进行数据分析，包括数据收集、处理和可视化展示。","/best-practices/data-analysis","数据处理",[3467,2829,2868,1650],{"title":3725,"description":3726,"path":3727,"category":3728,"difficulty":1639,"updatedAt":1764,"sourceType":1905,"tags":3729},"开发者工作流自动化","使用 OpenClaw 构建开发者工作流，实现代码审查、调试辅助、文档生成和 Git 操作自动化。","/best-practices/developer-workflow","开发效率",[2846,3730,2772,1648,3650],"code-review",{"title":3732,"description":3733,"path":3734,"category":3664,"difficulty":1639,"updatedAt":1849,"sourceType":1698,"tags":3735},"设备配对不是一次性批准，应该有定期复核周期","结合最新官方 Devices CLI 与 Pairing 文档，整理浏览器、桌面设备、移动节点和远程 operator 环境里的设备复核节奏，避免已授权设备集合长期失控。","/best-practices/device-pairing-review-cycle",[1983,1982,3479,2288,3124],{"title":3737,"description":3738,"path":3739,"category":3740,"difficulty":3574,"updatedAt":1849,"sourceType":1698,"tags":3741},"diagnostics.enabled、flags 和 raw stream 该怎么分层","结合最新官方 Diagnostics Flags、Debugging 与 Raw Stream 文档，整理一套更稳的诊断开关分层方法，避免把定向诊断、全局日志和原始流抓包混成一层。","/best-practices/diagnostics-scope-control","排障实践",[2463,2553,2669,2051,2723],{"title":3743,"description":3744,"path":3745,"category":3746,"difficulty":3567,"updatedAt":1651,"sourceType":1644,"tags":3747},"Discord Bot 高级功能开发","深入学习 Discord Bot 的高级功能，包括 Slash 命令、Embed 消息和语音频道集成。","/best-practices/discord-bot-advanced","渠道实践",[1882,2177,1670,3748],"advanced",{"title":3750,"description":3751,"path":3752,"category":3753,"difficulty":1639,"updatedAt":1651,"sourceType":1644,"tags":3754},"Docker 部署与容器化运行","使用 Docker 部署 OpenClaw，包括镜像构建、docker-compose 配置和 Kubernetes 部署。","/best-practices/docker-deployment","部署运维",[2758,2751,3755,1690],"containers",{"title":3757,"description":3758,"path":3759,"category":3760,"difficulty":3574,"updatedAt":1651,"sourceType":1644,"tags":3761},"企业级安全配置","企业环境中的安全配置最佳实践，包括 SSO、审计和合规性。","/best-practices/enterprise-security","企业部署",[1689,1691,3762,3355],"sso",{"title":3764,"description":3765,"path":3766,"category":3767,"difficulty":1639,"updatedAt":1651,"sourceType":1905,"tags":3768},"如何高质量反馈 OpenClaw 问题","把自助排查、站内反馈和 GitHub Issues 用在正确阶段，减少无效沟通并提高问题处理效率。","/best-practices/feedback-loop","社区协作",[2511,2510,1905,2463],{"title":3770,"description":3771,"path":3772,"category":3746,"difficulty":1639,"updatedAt":1677,"sourceType":1698,"tags":3773},"飞书 Bot 接入与团队使用实战","结合官方 Feishu/Lark 文档，整理中文团队接入飞书 Bot 时最值得先确认的事项：长连接模式、群聊边界、额度优化和多人协作时的收口方式。","/best-practices/feishu-bot-development",[2752,2918,2177,1670,1689],{"title":3775,"description":3776,"path":3777,"category":3778,"difficulty":1639,"updatedAt":2213,"sourceType":1698,"tags":3779},"先分清入口职责，再选 Dashboard、WebChat 还是 API","结合最新官方 Dashboard、WebChat、Session 和 API 文档，整理一套更稳的入口选择矩阵，帮助团队在控制面、会话面和集成面之间少走弯路。","/best-practices/gateway-entry-surface-matrix","使用实践",[1668,1726,1796,2215,1776],{"title":3781,"description":3782,"path":3783,"category":3784,"difficulty":1639,"updatedAt":1738,"sourceType":1698,"tags":3785},"群组、私聊与长期记忆的边界怎么守","结合最新官方 Memory 与 Channel Routing 文档，总结 OpenClaw 在群组、私聊、线程和长期记忆之间更稳的边界做法，避免上下文串线和记忆误读。","/best-practices/group-memory-boundaries","协作实践",[1672,1970,1852,2014,1834],{"title":3787,"description":3788,"path":3789,"category":3595,"difficulty":1639,"updatedAt":1849,"sourceType":1698,"tags":3790},"群聊入口上线时，先把 mention 触发策略跑稳","结合最新官方 Groups、Group Messages 和 Messages 文档，整理群聊入口从 allowlist、requireMention 到 /activation 的上线顺序，避免把群机器人一接上就变成高噪声、高成本入口。","/best-practices/group-mention-rollout",[1852,2608,2446,1670,1690],{"title":3792,"description":3793,"path":3794,"category":3580,"difficulty":1639,"updatedAt":1738,"sourceType":1698,"tags":3795},"用 Heartbeat 和 Cron 做低噪音自动化","结合最新官方自动化文档，总结如何用 Heartbeat 承担周期感知、用 Cron 承担精确调度，避免把主会话做成噪音中心。","/best-practices/heartbeat-cron-composition",[1648,2268,2260,2269,1690],{"title":3797,"description":3798,"path":3799,"category":3800,"difficulty":3554,"updatedAt":1738,"sourceType":1698,"tags":3801},"Hooks、插件和 Skills 的启用顺序怎么排","结合最新官方 Hooks、Plugins、Skills 和 Onboarding 文档，总结第一次扩展 OpenClaw 时怎样安排 hooks、插件与 skills 的启用顺序，降低排障复杂度。","/best-practices/hooks-onboarding-sequence","扩展实践",[1775,1773,1683,1725,1907],{"title":3803,"description":3804,"path":3805,"category":3806,"difficulty":1639,"updatedAt":1764,"sourceType":1698,"tags":3807},"Hooks 实战指南","通过实际案例学习 OpenClaw Hooks 的使用，包括消息处理、自动化触发、内容过滤和外部集成。","/best-practices/hooks-practical-guide","实践",[1775,1648,1650,3025],{"title":3809,"description":3810,"path":3811,"category":3812,"difficulty":3574,"updatedAt":1859,"sourceType":1698,"tags":3813},"identityLinks 更适合当成“身份映射表”，而不是联系人备注","结合最新官方 Session、Configuration Reference 和 Security 文档，总结团队里怎样把 identityLinks 当成正式变更对象来维护，避免跨渠道身份映射越配越乱。","/best-practices/identity-links-change-control","会话治理",[2560,1853,1834,2094,2355],{"title":3815,"description":3816,"path":3817,"category":3818,"difficulty":3567,"updatedAt":1651,"sourceType":1644,"tags":3819},"API 集成与二次开发","使用 OpenClaw API 进行二次开发，包括 REST API、WebSocket 和扩展开发。","/best-practices/integration-development","开发指南",[2215,3025,2221,3673],{"title":3821,"description":3822,"path":3823,"category":1636,"difficulty":1639,"updatedAt":1651,"sourceType":1644,"tags":3824},"知识库管理","构建和管理 OpenClaw 知识库，包括知识导入、检索和更新。","/best-practices/knowledge-management",[3235,2644,1672,3458],{"title":3826,"description":3827,"path":3828,"category":3586,"difficulty":1639,"updatedAt":1651,"sourceType":1644,"tags":3829},"日志管理与分析","集中式日志管理、日志分析和日志可视化。","/best-practices/logging-advanced",[2051,3830,2829,1690],"observability",{"title":3832,"description":3833,"path":3834,"category":3835,"difficulty":3574,"updatedAt":1831,"sourceType":1698,"tags":3836},"后台维护任务应该怎么分 lane 和保留周期","结合最新官方 Cron、sessions cleanup、doctor 和 Session 文档，总结长期运行时怎样给 isolated cron、main session、session cleanup 和 run logs 设不同的维护节奏。","/best-practices/maintenance-lanes-and-retention","运维治理",[2373,2260,1970,2261,1690],{"title":3838,"description":3839,"path":3840,"category":3841,"difficulty":3574,"updatedAt":1859,"sourceType":1698,"tags":3842},"索引刷新、embedding cache 和 source of truth 更稳的维护方式","结合最新官方 Memory、memory CLI 和 Session 文档，总结团队里怎样区分 memory files、session transcripts 和检索索引三层对象，避免把“检索层”误当成事实层。","/best-practices/memory-index-refresh-and-trust-boundary","记忆治理",[1672,2044,2133,3843,2355],"source-of-truth",{"title":3845,"description":3846,"path":3847,"category":1636,"difficulty":3567,"updatedAt":1651,"sourceType":1644,"tags":3848},"记忆系统配置与使用","深入了解 OpenClaw 的记忆系统，包括短期记忆、长期记忆和上下文管理。","/best-practices/memory-management",[1672,2169,1970,1818],{"title":3850,"description":3851,"path":3852,"category":3853,"difficulty":3554,"updatedAt":1651,"sourceType":1644,"tags":3854},"移动端使用指南","在 iOS 和 Android 设备上使用 OpenClaw 的完整指南。","/best-practices/mobile-app-usage","入门指南",[1869,2980,2981,3855],"usage",{"title":3857,"description":3858,"path":3859,"category":3860,"difficulty":1639,"updatedAt":1738,"sourceType":1698,"tags":3861},"移动节点感知能力怎么逐步启用","结合最新官方 nodes、camera、voice wake 和 location 文档，总结 iOS/Android 节点在相机、语音、位置三类能力上怎样渐进启用，避免一开始权限过重。","/best-practices/mobile-node-sensors","设备实践",[1869,1825,1868,2020,1927,2021],{"title":3863,"description":3864,"path":3865,"category":3866,"difficulty":3574,"updatedAt":1738,"sourceType":1698,"tags":3867},"Model Health 与 Auth 监控怎么做","结合最新官方 Models CLI、Auth Monitoring 和 Model Failover 文档，总结长期运行时怎样监控 OAuth 过期、缺失凭据和 profile 轮转问题。","/best-practices/model-auth-monitoring","模型治理",[1789,1933,2332,2331,2456,1690],{"title":3869,"description":3870,"path":3871,"category":3586,"difficulty":3567,"updatedAt":1651,"sourceType":1644,"tags":3872},"监控与告警系统","建立完整的监控和告警系统，包括指标收集、告警规则和通知渠道。","/best-practices/monitoring-alerting",[2332,3873,3874,1690],"alerting","metrics",{"title":3876,"description":3877,"path":3878,"category":3595,"difficulty":1639,"updatedAt":1849,"sourceType":1698,"tags":3879},"多账号渠道的 pairing 和 allowFrom 需要分开治理","结合最新官方 Pairing 文档，整理多账号 Telegram、WhatsApp 等渠道下的 pending 审批、allowFrom 文件和账号 scope 的治理顺序，避免默认账号心智把多入口运营带偏。","/best-practices/multi-account-pairing-operations",[1982,2487,2488,1670,1690],{"title":3881,"description":3882,"path":3883,"category":3884,"difficulty":1639,"updatedAt":1651,"sourceType":1644,"tags":3885},"多代理路由配置指南","学习配置 OpenClaw 的多代理路由，实现按渠道、用户或内容类型分配不同代理。","/best-practices/multi-agent-routing","代理配置",[1834,1835,1670,1682],{"title":3887,"description":3888,"path":3889,"category":3860,"difficulty":3567,"updatedAt":1849,"sourceType":1698,"tags":3890},"团队里如何渐进启用 node 能力","结合最新官方 Nodes、Pairing、Camera、Location 与 Voice Wake 文档，整理一套更稳的 node 能力启用顺序，避免一开始就把相机、位置和语音一起打开。","/best-practices/node-capability-rollout",[1825,2446,1868,1927,2020,2021],{"title":3892,"description":3893,"path":3894,"category":3586,"difficulty":1639,"updatedAt":1651,"sourceType":1644,"tags":3895},"通知系统配置","配置 OpenClaw 的通知系统，包括邮件、短信、推送和 Webhook 通知。","/best-practices/notification-system",[3896,1844,3897,1690],"notifications","email",{"title":3899,"description":3900,"path":3901,"category":3601,"difficulty":3574,"updatedAt":1831,"sourceType":1698,"tags":3902},"多人协作时怎么管理 Operator 浏览器入口","结合最新官方 Dashboard、pairing、remote access 和 devices 文档，总结团队在浏览器 Control UI、多 operator 接力和值班环境里最需要的使用纪律。","/best-practices/operator-browser-discipline",[2385,1726,1647,1982,1680],{"title":3904,"description":3905,"path":3906,"category":3907,"difficulty":1639,"updatedAt":2213,"sourceType":1698,"tags":3908},"多个 operator 轮流进 Dashboard 时，浏览器交接不要靠记忆","结合最新官方 Dashboard、Control UI 和设备 pairing 文档，整理团队里多个 operator 轮流接管浏览器控制面的交接顺序，避免把 gateway URL、token 来源和已配对浏览器状态混成口口相传的经验。","/best-practices/operator-browser-handoff","协作治理",[2385,1726,1647,1982,3909],"handoff",{"title":3911,"description":3912,"path":3913,"category":3914,"difficulty":3574,"updatedAt":1859,"sourceType":1698,"tags":3915},"operator 入口更稳的升级梯子：先看 UI，再下沉协议和 API","结合最新官方 Dashboard、WebChat、Gateway Protocol 和 API 文档，总结 operator 在排障和协作时怎样按层使用 Dashboard、WebChat、Gateway WebSocket 和 HTTP API，避免一上来就切到过深入口。","/best-practices/operator-surface-escalation-ladder","运维协作",[2385,1726,1796,2215,1650,2355],{"title":3917,"description":3918,"path":3919,"category":3664,"difficulty":3574,"updatedAt":1781,"sourceType":1698,"tags":3920},"团队里如何做 per-agent 执行白名单治理","结合最新官方 approvals CLI 与 Exec Approvals 文档，整理一套更稳的 per-agent allowlist 管理方法，避免一个 agent 的执行权限外溢到整个团队。","/best-practices/per-agent-allowlist-governance",[1958,2068,1956,1691,2094],{"title":3922,"description":3923,"path":3924,"category":3925,"difficulty":3567,"updatedAt":1651,"sourceType":1644,"tags":3926},"性能优化与监控","优化 OpenClaw 性能，包括缓存策略、资源管理和监控配置。","/best-practices/performance-tuning","运维优化",[2983,3927,3928,2332],"tuning","caching",{"title":3930,"description":3931,"path":3932,"category":3688,"difficulty":1639,"updatedAt":1697,"sourceType":1644,"tags":3933},"个人知识管理助手","使用 OpenClaw 构建个人知识管理系统，实现笔记整理、知识检索和智能问答。","/best-practices/personal-knowledge-assistant",[3934,3935,1748,3650],"knowledge-management","notes",{"title":3937,"description":3938,"path":3939,"category":3940,"difficulty":3574,"updatedAt":1738,"sourceType":1698,"tags":3941},"团队里如何管理插件包和 Hook Pack","结合最新官方插件与 hooks 文档，总结团队在使用 package pack、hook pack 和插件托管 hooks 时，怎样降低升级、冲突和安全成本。","/best-practices/plugin-bundle-governance","扩展治理",[1773,1775,2094,1680,1690],{"title":3943,"description":3944,"path":3945,"category":3940,"difficulty":3574,"updatedAt":1781,"sourceType":1698,"tags":3946},"插件更新轨道和卸载回收应该怎么安排","结合最新官方 plugins CLI 文档，整理一套更稳的插件生命周期治理方法，帮助团队管理 install spec、update track、卸载回收以及 memory slot 回退行为。","/best-practices/plugin-lifecycle-governance",[1773,1989,2372,2778,2094],{"title":3948,"description":3949,"path":3950,"category":3601,"difficulty":3574,"updatedAt":1859,"sourceType":1698,"tags":3951},"团队长期运行蓝图：把 OpenClaw 从可用做成可运营","把控制面、渠道、模型、记忆、自动化、安全和维护整合成一套长期运行蓝图，帮助团队把 OpenClaw 从“能跑”推进到“能稳定运营”。","/best-practices/production-operations-blueprint",[1690,1680,1691,1943,1648,2373],{"title":3953,"description":3954,"path":3955,"category":3956,"difficulty":3574,"updatedAt":1781,"sourceType":1698,"tags":3957},"从 Prose 准备到 Lobster 执行，交接线怎么画","结合最新官方 Lobster 文档，整理一套从多智能体准备到确定性执行的交接方法，避免 OpenProse 和 Lobster 混层使用。","/best-practices/prose-to-lobster-handoff","工作流实践",[2087,2088,1718,1958,1774],{"title":3959,"description":3960,"path":3961,"category":3962,"difficulty":3574,"updatedAt":1859,"sourceType":1698,"tags":3963},"团队里怎么分层放开 provider、模型和 node 能力","结合最新官方 Models、Model Failover 和 node 文档，总结团队环境里怎样把 provider auth、模型 allowlist、图片能力和远程 node 执行分成不同放开层级，避免一开始给太大权限面。","/best-practices/provider-and-node-capability-lanes","权限与治理",[1943,1789,1825,1958,2094,2355],{"title":3965,"description":3966,"path":3967,"category":3866,"difficulty":3574,"updatedAt":1738,"sourceType":1698,"tags":3968},"团队里如何给 Provider 加统一网关层","结合最新官方 providers、LiteLLM 和 Cloudflare AI Gateway 文档，总结长期运行时怎样把上游模型与统一网关分层，兼顾成本、回退和可观测性。","/best-practices/provider-gateway-layering",[1943,3969,3970,3971,1834,1690],"gateways","litellm","cloudflare",{"title":3973,"description":3974,"path":3975,"category":3866,"difficulty":3574,"updatedAt":1859,"sourceType":1698,"tags":3976},"Provider 故障时先按恢复阶梯排，不要直接乱切模型","结合最新官方 Model Failover、Gateway Troubleshooting、LiteLLM 和 Cloudflare AI Gateway 文档，总结模型调用异常时更稳的恢复顺序，避免把长上下文、认证轮转、网关鉴权和跨模型 fallback 混成一件事。","/best-practices/provider-recovery-ladder",[1943,2456,3589,1789,1690],{"title":3978,"description":3979,"path":3980,"category":3981,"difficulty":3554,"updatedAt":1651,"sourceType":1698,"tags":3982},"版本升级与内容运营节奏","如何持续跟踪 OpenClaw 的版本变化，并建立稳定的内容运营节奏。","/best-practices/publishing-rhythm","更新跟踪",[2370,2372,1718,2373],{"title":3984,"description":3985,"path":3986,"category":3580,"difficulty":1639,"updatedAt":1859,"sourceType":1698,"tags":3987},"用 quiet hours 和 manual wake 控制自动化节奏","结合最新官方 Heartbeat 与 Automation Troubleshooting 文档，总结如何让 heartbeat 在该安静时安静、在需要时再手动唤醒，避免把自动化做成全天噪音源。","/best-practices/quiet-hours-and-manual-wake",[2268,2615,1648,1690,2355],{"title":3989,"description":3990,"path":3991,"category":3553,"difficulty":3992,"updatedAt":1677,"sourceType":1698,"tags":3993},"把版本观察变成升级决策，而不是看见更新就立刻替换环境","结合最新 release 观察、配置变化和迁移信号，建立一套更稳的升级判断顺序：先看影响层，再看风险，再决定是否马上升级。","/best-practices/release-watch-to-upgrade-decision","基础",[2370,2799,2798,1690,2371],{"title":3995,"description":3996,"path":3997,"category":3835,"difficulty":3574,"updatedAt":1781,"sourceType":1698,"tags":3998},"远程值守时如何设计聊天审批路由","结合最新官方 Exec Approvals 与 Remote Operators 文档，整理一套更稳的远程审批路由设计，避免把远程值守便利性直接变成高权限扩散。","/best-practices/remote-approval-routing",[1958,1740,1880,1882,2385,1834],{"title":4000,"description":4001,"path":4002,"category":3688,"difficulty":3554,"updatedAt":1651,"sourceType":1644,"tags":4003},"远程工作场景应用","使用 OpenClaw 支持远程工作场景，包括分布式团队协作和远程办公。","/best-practices/remote-work",[4004,2989,3650,1680],"remote-work",{"title":4006,"description":4007,"path":4008,"category":4009,"difficulty":3574,"updatedAt":1831,"sourceType":1698,"tags":4010},"从巡检到修复的排障阶梯应该怎么走","结合最新官方 Doctor、Diagnostics Flags、Debugging 和 Troubleshooting 文档，总结一条更稳的 repair ladder，让 status、doctor、flags、repair 和 cleanup 各司其职。","/best-practices/repair-ladder-playbook","排障治理",[2294,2463,2723,2295,1690],{"title":4012,"description":4013,"path":4014,"category":4009,"difficulty":1639,"updatedAt":1738,"sourceType":1698,"tags":4015},"Raw Stream 调试的安全做法","结合最新官方 Debugging 文档，总结在 OpenClaw 里抓 raw stream、provider chunk 和诊断日志时，怎样控制范围、保留最小样本并避免泄露 prompt、密钥和用户数据。","/best-practices/safe-debug-capture",[2544,2552,2014,1691,2723],{"title":4017,"description":4018,"path":4019,"category":3664,"difficulty":3574,"updatedAt":1849,"sourceType":1698,"tags":4020},"Secret rotation 和 active snapshot 应该怎么配合","结合最新官方 Secrets Management 文档，整理一套更稳的密钥轮换方法，帮助团队理解 SecretRef eager resolve、active snapshot 和 reload 失败时的 last-known-good 边界。","/best-practices/secret-rotation-with-active-snapshot",[2690,2689,3336,3335,1690],{"title":4022,"description":4023,"path":4024,"category":3664,"difficulty":1639,"updatedAt":1849,"sourceType":1698,"tags":4025},"共享 DM 入口上线前的 secure DM 检查清单","结合最新官方 Session、Security 和 CLI Security 文档，整理共享 DM、配对审批、多账号入口和跨渠道身份映射的上线前核查清单，避免把单人默认配置直接带进多人环境。","/best-practices/secure-dm-rollout-checklist",[1691,2559,1982,1853,2446],{"title":4027,"description":4028,"path":4029,"category":4030,"difficulty":3574,"updatedAt":1651,"sourceType":1644,"tags":4031},"OpenClaw 安全加固指南","生产环境中 OpenClaw 的安全加固最佳实践，包括认证、授权和网络配置。","/best-practices/security-hardening","安全配置",[1691,2396,1933,4032],"networking",{"title":4034,"description":4035,"path":4036,"category":4037,"difficulty":3574,"updatedAt":1831,"sourceType":1698,"tags":4038},"长期使用时 session reset 策略怎么定","结合最新官方会话管理文档，整理 daily reset、idle reset、resetByType、resetByChannel 和 resetTriggers 的组合思路，让长期使用既不失连续性，也不把上下文拖到失控。","/best-practices/session-reset-policy","长期治理",[1853,4039,3093,1680,1690],"reset",{"title":4041,"description":4042,"path":4043,"category":4044,"difficulty":3574,"updatedAt":1859,"sourceType":1698,"tags":4045},"共享群入口更稳的放开顺序：allowlist、mention、activation 和 broadcast","结合最新官方 Groups、Group Messages 和 Broadcast Groups 文档，总结团队在群聊里怎样从最窄入口逐步放开到 topic、多 agent 和 always activation，避免一开始就把共享群入口做成高噪音面。","/best-practices/shared-group-entry-rollout","群入口治理",[1852,2681,3184,1851,2094,2355],{"title":4047,"description":4048,"path":4049,"category":3664,"difficulty":3574,"updatedAt":1849,"sourceType":1698,"tags":4050},"shared inbox 能共用入口，但不要共用不该共用的边界","结合最新官方 Security 与 Groups 文档，整理 shared inbox 场景下 operator、工具、宿主文件系统和私有身份的分层建议，避免把协作入口误用成弱隔离的多租户平台。","/best-practices/shared-inbox-operator-separation",[2410,1691,3380,2385,2094],{"title":4052,"description":4053,"path":4054,"category":4055,"difficulty":3574,"updatedAt":1651,"sourceType":1644,"tags":4056},"技能开发进阶：Hook 与事件处理","学习 OpenClaw 技能系统的高级用法，包括 Hook、事件监听和自定义工作流。","/best-practices/skill-development-advanced","技能开发",[1683,1775,1990,3748],{"title":1562,"description":4058,"path":1561,"category":1636,"difficulty":3567,"updatedAt":1651,"sourceType":1644,"tags":4059},"深入了解 OpenClaw 技能系统，学习如何开发和自定义专属技能。",[1683,3673,3696,1671],{"title":4061,"description":4062,"path":4063,"category":3688,"difficulty":1639,"updatedAt":1697,"sourceType":1644,"tags":4064},"OpenClaw 家庭自动化应用","使用 OpenClaw 构建智能家居控制中心，实现语音控制、自动化场景和设备管理。","/best-practices/smart-home-automation",[4065,1648,3198,4066],"smart-home","iot",{"title":4068,"description":4069,"path":4070,"category":4071,"difficulty":1639,"updatedAt":1738,"sourceType":1698,"tags":4072},"升级窗口怎么安排更稳","结合最新官方 Install、Updating、Migration 和 Release 文档，总结长期运行时怎样安排 OpenClaw 的升级窗口、验证顺序和回滚边界，避免把升级变成线上事故。","/best-practices/staged-upgrade-windows","维护实践",[2799,2798,2370,2373,4073],"rollback",{"title":4075,"description":4076,"path":4077,"category":4078,"difficulty":1639,"updatedAt":1651,"sourceType":1644,"tags":4079},"团队协作与工作区管理","配置团队工作区，实现多用户协作、权限管理和团队知识共享。","/best-practices/team-collaboration","团队协作",[1680,1817,2021,2989],{"title":4081,"description":4082,"path":4083,"category":3907,"difficulty":3574,"updatedAt":1738,"sourceType":1698,"tags":4084},"团队里如何管理 Gateway、Operator 与浏览器控制面","结合最新官方 remote、Control UI、pairing 和 security 文档，总结团队环境里怎样定义主 Gateway、operator 设备和浏览器控制面，降低多人协作时的运维混乱。","/best-practices/team-gateway-operator-playbook",[1668,2385,1914,1982,1680,1690],{"title":4086,"description":4087,"path":4088,"category":3746,"difficulty":3567,"updatedAt":1651,"sourceType":1644,"tags":4089},"Telegram Bot 开发进阶指南","深入学习 Telegram Bot 的高级功能，包括自定义键盘、Inline 模式和群组管理。","/best-practices/telegram-bot-development",[1880,2177,1670,3748],{"title":4091,"description":4092,"path":4093,"category":3631,"difficulty":3567,"updatedAt":1651,"sourceType":1644,"tags":4094},"测试策略与质量保障","建立 OpenClaw 的测试策略，包括单元测试、集成测试和端到端测试。","/best-practices/testing-strategies",[3634,4095,3025,1718],"quality",{"title":4097,"description":4098,"path":4099,"category":4100,"difficulty":3574,"updatedAt":1651,"sourceType":1644,"tags":4101},"高级故障排除与诊断","深入排查 OpenClaw 复杂问题，包括性能问题、渠道故障和系统崩溃。","/best-practices/troubleshooting-advanced","故障排除",[2723,2463,2983,1670],{"title":4103,"description":4104,"path":4105,"category":3664,"difficulty":3574,"updatedAt":1781,"sourceType":1698,"tags":4106},"Trusted Proxy 上线前应该过哪些检查","结合最新官方 trusted-proxy auth 与 security audit 文档，整理一套上线前检查顺序，避免把只是做 TLS 的反向代理误当成可托付身份的安全代理。","/best-practices/trusted-proxy-rollout-checklist",[2430,2431,1933,1691,2446],{"title":4108,"description":4109,"path":4110,"category":3553,"difficulty":1639,"updatedAt":2213,"sourceType":1698,"tags":4111},"UI 和 API 看到的状态对不上时，先查哪一层","结合最新官方 Session、WebChat 和 API 文档，整理一套更稳的排障顺序，帮助团队区分 Gateway 事实层、UI 投影视图和结构化接口之间的差异。","/best-practices/ui-vs-api-state-debugging",[1668,1796,2215,2544,1853],{"title":4113,"description":4114,"path":4115,"category":3835,"difficulty":3574,"updatedAt":1781,"sourceType":1698,"tags":4116},"团队里如何给 stable、beta、dev 分层","结合最新官方 update CLI 与 Updating 文档，整理一套更稳的更新分层策略，帮助团队把 stable、beta、dev 变成有职责分工的 rollout 体系。","/best-practices/update-channel-staging",[2442,2443,2444,2445,4117,2446],"staging",{"title":4119,"description":4120,"path":4121,"category":3586,"difficulty":1639,"updatedAt":1651,"sourceType":1698,"tags":4122},"版本升级与迁移","OpenClaw 版本升级步骤、迁移指南和回滚方案。","/best-practices/upgrade-migration",[2799,2798,4073,2373],{"title":4124,"description":4125,"path":4126,"category":4127,"difficulty":3554,"updatedAt":1651,"sourceType":1644,"tags":4128},"语音助手配置与使用指南","全面了解 OpenClaw 语音功能的配置和使用，包括语音唤醒、连续对话和语音合成。","/best-practices/voice-assistant-setup","语音交互",[1927,4129,4130,1733],"wakeword","speech",{"title":4132,"description":4133,"path":4134,"category":4135,"difficulty":3554,"updatedAt":1651,"sourceType":1644,"tags":4136},"语音功能最佳实践","如何在日常场景中高效使用 OpenClaw 的语音功能，提升工作和生活效率。","/best-practices/voice-usage","使用技巧",[1927,3855,3650,1767],{"title":4138,"description":4139,"path":4140,"category":3778,"difficulty":3554,"updatedAt":1738,"sourceType":1698,"tags":4141},"Web 入口怎么选：Dashboard、WebChat、message CLI","结合最新官方 Dashboard、WebChat 和 CLI 文档，总结什么时候该用 Dashboard、什么时候用 WebChat、什么时候更适合用 openclaw message 做验证与自动化。","/best-practices/web-entry-selection",[1726,1796,2115,3111,1650],{"title":4143,"description":4144,"path":4145,"category":3778,"difficulty":1639,"updatedAt":1781,"sourceType":1698,"tags":4146},"WebChat 更适合当什么，不适合当什么","结合最新官方 WebChat 文档，整理一套更稳的 WebChat 使用策略，帮助团队把它作为 operator 和验证入口，而不是过早承担所有长期协作场景。","/best-practices/webchat-operator-usage-policy",[1796,1726,4147,1834,1650],"operator",{"title":4149,"description":4150,"path":4151,"category":3580,"difficulty":1639,"updatedAt":1738,"sourceType":1698,"tags":4152},"用 Webhooks 做安全的外部事件接入","结合最新官方 Webhooks 文档，总结如何把 Gmail、表单、工单和内部系统事件安全送进 OpenClaw，同时避免会话污染和误投递。","/best-practices/webhook-ingest-routing",[2229,1775,1648,2230,1691],{"title":4154,"description":4155,"path":4156,"category":3655,"difficulty":3992,"updatedAt":3454,"sourceType":1665,"tags":4157},"用 OpenClaw 搭建每周“教程 + 更新 + 案例”内容流水线","把教程、版本更新和案例拆成固定节奏，用一套低成本流程持续为中文站带来搜索流量、时效内容和转化素材。","/best-practices/weekly-content-pipeline",[3458,3649,1718,3657,3459],{"title":4159,"description":4160,"path":4161,"category":3746,"difficulty":1639,"updatedAt":1651,"sourceType":1644,"tags":4162},"WhatsApp 自动化工作流实战","利用 OpenClaw 的 WhatsApp 渠道实现自动化工作流，包括自动回复、消息转发和定时提醒。","/best-practices/whatsapp-automation",[1881,1648,1670,1718],{"all":4164,"docs":1657,"news":2808,"bestPractices":3547},372,1775051170306]