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