[{"data":1,"prerenderedAt":1992},["ShallowReactive",2],{"\u002Fmemos_cloud\u002Ffeatures\u002Fadvanced\u002Fskill":3,"surround-\u002Fmemos_cloud\u002Ffeatures\u002Fadvanced\u002Fskill":1976},{"id":4,"title":5,"avatar":6,"banner":6,"body":7,"category":6,"desc":1969,"description":169,"extension":1970,"links":6,"meta":1971,"navigation":6,"path":1972,"seo":1973,"stem":1974,"__hash__":1975},"docs\u002Fen\u002Fmemos_cloud\u002Ffeatures\u002Fadvanced\u002Fskill.md","Skills",null,{"type":8,"value":9,"toc":1955},"minimark",[10,15,26,33,69,72,76,83,86,130,132,136,139,141,149,152,163,829,831,838,841,1189,1191,1198,1201,1212,1583,1606,1608,1615,1618,1629,1632,1643,1924,1951],[11,12,14],"h2",{"id":13},"_1-what-are-memos-skills","1. What are MemOS Skills?",[16,17,18,21,22,25],"p",{},[19,20,5],"strong",{}," are ",[19,23,24],{},"modular capability packages"," that an Agent can dynamically invoke while executing tasks. They are automatically dispatched and injected by the Agent based on the conversation context, requiring no manual intervention from the user. These skills are typically built by developers collaborating with LLMs, based on open-source projects or original concepts, and are continuously optimized through actual use.",[16,27,28,29,32],{},"MemOS advocates that \"Memory is Asset.\" We believe that the resolution paths and user preferences precipitated in real conversations are essentially the most valuable materials for skills. Based on this philosophy, MemOS ",[19,30,31],{},"now supports automatically extracting skills from user memories","—solidifying fragmented interaction histories into reusable, personalized professional capabilities.",[34,35,36,41,50,53,56,63,66],"note",{},[16,37,38],{},[19,39,40],{},"How are MemOS Skills different from existing memories?",[42,43,44],"ul",{},[45,46,47],"li",{},[19,48,49],{},"Static Facts → Dynamic Execution",[16,51,52],{},"Memories are usually static and factual, such as: \"I live in Shanghai\" or \"I like concise replies.\" This information provides the necessary context for Agent reasoning.",[16,54,55],{},"Skills are executable behavioral capabilities built upon memory. They encapsulate a clear set of task-processing logic, such as \"How to plan a complete travel itinerary,\" guiding the Agent's decisions and actions.",[42,57,58],{},[45,59,60],{},[19,61,62],{},"Fragmented → Structured",[16,64,65],{},"Memories are often fragmented, with each entry describing a single fact or preference.",[16,67,68],{},"Skills are highly structured, integrating multiple related memories into a complete task solution that can be reused across different tasks.",[70,71],"br",{},[11,73,75],{"id":74},"_2-how-it-works","2. How It Works",[16,77,78],{},[79,80],"img",{"alt":81,"src":82},"image.png","https:\u002F\u002Fcdn.memtensor.com.cn\u002Fimg\u002F1769759436251_3tx57c_compressed.png",[16,84,85],{},"The diagram above illustrates the complete interaction flow between the end-user, your AI Agent, and MemOS:",[87,88,89,97,121,127],"ol",{},[45,90,91,92,96],{},"Call the ",[93,94,95],"code",{},"add\u002Fmessage"," interface to pass the user's conversation messages into MemOS.",[45,98,99,100,102,103,106,107,109,110,113,114,116,117,120],{},"Upon receiving the request, MemOS processes it in sequence to generate a Skill file:",[70,101],{},"a.  ",[19,104,105],{},"Intelligent Slicing",": Identifies task boundaries in historical conversations and slices them into task text blocks.",[70,108],{},"b.  ",[19,111,112],{},"Clustering & Extraction",": Clusters similar task blocks and combines them with the user's historical memory to extract structured skill text.",[70,115],{},"c.  ",[19,118,119],{},"Skill Transformation",": Converts the skill into an executable and recognizable Skill file.",[45,122,91,123,126],{},[93,124,125],{},"search\u002Fmemory"," interface to retrieve memories. MemOS will return a unified result including context-related user facts, preferences, tool memories, and matching Skill files.",[45,128,129],{},"Download the Skill file and pass both the memories and the Skill file to your self-deployed LLM, enabling the effective utilization of long-term experience and automatically generated skills.",[70,131],{},[11,133,135],{"id":134},"_3-usage-example","3. Usage Example",[16,137,138],{},"The following demonstrates an example of MemOS generating a \"Travel Planning\" skill based on historical conversations.",[70,140],{},[142,143,145,146],"h3",{"id":144},"_1-add-messages","1. ",[19,147,148],{},"Add Messages",[16,150,151],{},"Add a conversation between a \"High-Energy J-type person\" and a \"Travel Planning Assistant.\" The user expresses several requirements for the trip:",[42,153,154,157,160],{},[45,155,156],{},"Dislikes backtracking; \"Special Forces\" style (intensive) travel.",[45,158,159],{},"Prefers cultural attractions.",[45,161,162],{},"Needs to confirm weather and temperature in advance.",[164,165,170],"pre",{"className":166,"code":167,"language":168,"meta":169,"style":169},"language-python shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import os\nimport requests\nimport json\n\n# Replace with your API Key\nos.environ[\"MEMOS_API_KEY\"] = \"YOUR_API_KEY\"\nos.environ[\"MEMOS_BASE_URL\"] = \"https:\u002F\u002Fmemos.memtensor.cn\u002Fapi\u002Fopenmem\u002Fv1\"\n\ndata = {\n    \"user_id\": \"memos_user_123\",\n    \"conversation_id\": \"0127\",\n    \"messages\": [\n      {\"role\": \"user\", \"content\": \"I'm going to Chengdu next week. Help me plan a 5-day trip. I like 'Special Forces' style travel without backtracking. Please mark delicious local food along the way.\"},\n      {\"role\": \"assistant\", \"content\": \"...omitted...\"},\n      {\"role\": \"user\", \"content\": \"I prefer visiting cultural sites; I'm not very interested in shopping malls.\"},\n      {\"role\": \"assistant\", \"content\": \"...omitted...\"},\n      {\"role\": \"user\", \"content\": \"When planning, please check the weather and temperature in advance so I can pack my luggage.\"},\n      {\"role\": \"assistant\", \"content\": \"...omitted...\"}\n    ]\n  }\nheaders = {\n  \"Content-Type\": \"application\u002Fjson\",\n  \"Authorization\": f\"Token {os.environ['MEMOS_API_KEY']}\"\n}\nurl = f\"{os.environ['MEMOS_BASE_URL']}\u002Fadd\u002Fmessage\"\n\nres = requests.post(url=url, headers=headers, data=json.dumps(data))\n\nprint(f\"result: {res.json()}\")\n\n","python","",[93,171,172,185,193,201,208,215,256,285,290,302,326,347,362,406,445,483,520,558,596,602,608,618,640,685,690,725,730,791,796],{"__ignoreMap":169},[173,174,177,181],"span",{"class":175,"line":176},"line",1,[173,178,180],{"class":179},"s7zQu","import",[173,182,184],{"class":183},"sTEyZ"," os\n",[173,186,188,190],{"class":175,"line":187},2,[173,189,180],{"class":179},[173,191,192],{"class":183}," requests\n",[173,194,196,198],{"class":175,"line":195},3,[173,197,180],{"class":179},[173,199,200],{"class":183}," json\n",[173,202,204],{"class":175,"line":203},4,[173,205,207],{"emptyLinePlaceholder":206},true,"\n",[173,209,211],{"class":175,"line":210},5,[173,212,214],{"class":213},"sHwdD","# Replace with your API Key\n",[173,216,218,221,225,229,232,235,239,241,244,247,250,253],{"class":175,"line":217},6,[173,219,220],{"class":183},"os",[173,222,224],{"class":223},"sMK4o",".",[173,226,228],{"class":227},"swJcz","environ",[173,230,231],{"class":223},"[",[173,233,234],{"class":223},"\"",[173,236,238],{"class":237},"sfazB","MEMOS_API_KEY",[173,240,234],{"class":223},[173,242,243],{"class":223},"]",[173,245,246],{"class":223}," =",[173,248,249],{"class":223}," \"",[173,251,252],{"class":237},"YOUR_API_KEY",[173,254,255],{"class":223},"\"\n",[173,257,259,261,263,265,267,269,272,274,276,278,280,283],{"class":175,"line":258},7,[173,260,220],{"class":183},[173,262,224],{"class":223},[173,264,228],{"class":227},[173,266,231],{"class":223},[173,268,234],{"class":223},[173,270,271],{"class":237},"MEMOS_BASE_URL",[173,273,234],{"class":223},[173,275,243],{"class":223},[173,277,246],{"class":223},[173,279,249],{"class":223},[173,281,282],{"class":237},"https:\u002F\u002Fmemos.memtensor.cn\u002Fapi\u002Fopenmem\u002Fv1",[173,284,255],{"class":223},[173,286,288],{"class":175,"line":287},8,[173,289,207],{"emptyLinePlaceholder":206},[173,291,293,296,299],{"class":175,"line":292},9,[173,294,295],{"class":183},"data ",[173,297,298],{"class":223},"=",[173,300,301],{"class":223}," {\n",[173,303,305,308,311,313,316,318,321,323],{"class":175,"line":304},10,[173,306,307],{"class":223},"    \"",[173,309,310],{"class":237},"user_id",[173,312,234],{"class":223},[173,314,315],{"class":223},":",[173,317,249],{"class":223},[173,319,320],{"class":237},"memos_user_123",[173,322,234],{"class":223},[173,324,325],{"class":223},",\n",[173,327,329,331,334,336,338,340,343,345],{"class":175,"line":328},11,[173,330,307],{"class":223},[173,332,333],{"class":237},"conversation_id",[173,335,234],{"class":223},[173,337,315],{"class":223},[173,339,249],{"class":223},[173,341,342],{"class":237},"0127",[173,344,234],{"class":223},[173,346,325],{"class":223},[173,348,350,352,355,357,359],{"class":175,"line":349},12,[173,351,307],{"class":223},[173,353,354],{"class":237},"messages",[173,356,234],{"class":223},[173,358,315],{"class":223},[173,360,361],{"class":223}," [\n",[173,363,365,368,370,373,375,377,379,382,384,387,389,392,394,396,398,401,403],{"class":175,"line":364},13,[173,366,367],{"class":223},"      {",[173,369,234],{"class":223},[173,371,372],{"class":237},"role",[173,374,234],{"class":223},[173,376,315],{"class":223},[173,378,249],{"class":223},[173,380,381],{"class":237},"user",[173,383,234],{"class":223},[173,385,386],{"class":223},",",[173,388,249],{"class":223},[173,390,391],{"class":237},"content",[173,393,234],{"class":223},[173,395,315],{"class":223},[173,397,249],{"class":223},[173,399,400],{"class":237},"I'm going to Chengdu next week. Help me plan a 5-day trip. I like 'Special Forces' style travel without backtracking. Please mark delicious local food along the way.",[173,402,234],{"class":223},[173,404,405],{"class":223},"},\n",[173,407,409,411,413,415,417,419,421,424,426,428,430,432,434,436,438,441,443],{"class":175,"line":408},14,[173,410,367],{"class":223},[173,412,234],{"class":223},[173,414,372],{"class":237},[173,416,234],{"class":223},[173,418,315],{"class":223},[173,420,249],{"class":223},[173,422,423],{"class":237},"assistant",[173,425,234],{"class":223},[173,427,386],{"class":223},[173,429,249],{"class":223},[173,431,391],{"class":237},[173,433,234],{"class":223},[173,435,315],{"class":223},[173,437,249],{"class":223},[173,439,440],{"class":237},"...omitted...",[173,442,234],{"class":223},[173,444,405],{"class":223},[173,446,448,450,452,454,456,458,460,462,464,466,468,470,472,474,476,479,481],{"class":175,"line":447},15,[173,449,367],{"class":223},[173,451,234],{"class":223},[173,453,372],{"class":237},[173,455,234],{"class":223},[173,457,315],{"class":223},[173,459,249],{"class":223},[173,461,381],{"class":237},[173,463,234],{"class":223},[173,465,386],{"class":223},[173,467,249],{"class":223},[173,469,391],{"class":237},[173,471,234],{"class":223},[173,473,315],{"class":223},[173,475,249],{"class":223},[173,477,478],{"class":237},"I prefer visiting cultural sites; I'm not very interested in shopping malls.",[173,480,234],{"class":223},[173,482,405],{"class":223},[173,484,486,488,490,492,494,496,498,500,502,504,506,508,510,512,514,516,518],{"class":175,"line":485},16,[173,487,367],{"class":223},[173,489,234],{"class":223},[173,491,372],{"class":237},[173,493,234],{"class":223},[173,495,315],{"class":223},[173,497,249],{"class":223},[173,499,423],{"class":237},[173,501,234],{"class":223},[173,503,386],{"class":223},[173,505,249],{"class":223},[173,507,391],{"class":237},[173,509,234],{"class":223},[173,511,315],{"class":223},[173,513,249],{"class":223},[173,515,440],{"class":237},[173,517,234],{"class":223},[173,519,405],{"class":223},[173,521,523,525,527,529,531,533,535,537,539,541,543,545,547,549,551,554,556],{"class":175,"line":522},17,[173,524,367],{"class":223},[173,526,234],{"class":223},[173,528,372],{"class":237},[173,530,234],{"class":223},[173,532,315],{"class":223},[173,534,249],{"class":223},[173,536,381],{"class":237},[173,538,234],{"class":223},[173,540,386],{"class":223},[173,542,249],{"class":223},[173,544,391],{"class":237},[173,546,234],{"class":223},[173,548,315],{"class":223},[173,550,249],{"class":223},[173,552,553],{"class":237},"When planning, please check the weather and temperature in advance so I can pack my luggage.",[173,555,234],{"class":223},[173,557,405],{"class":223},[173,559,561,563,565,567,569,571,573,575,577,579,581,583,585,587,589,591,593],{"class":175,"line":560},18,[173,562,367],{"class":223},[173,564,234],{"class":223},[173,566,372],{"class":237},[173,568,234],{"class":223},[173,570,315],{"class":223},[173,572,249],{"class":223},[173,574,423],{"class":237},[173,576,234],{"class":223},[173,578,386],{"class":223},[173,580,249],{"class":223},[173,582,391],{"class":237},[173,584,234],{"class":223},[173,586,315],{"class":223},[173,588,249],{"class":223},[173,590,440],{"class":237},[173,592,234],{"class":223},[173,594,595],{"class":223},"}\n",[173,597,599],{"class":175,"line":598},19,[173,600,601],{"class":223},"    ]\n",[173,603,605],{"class":175,"line":604},20,[173,606,607],{"class":223},"  }\n",[173,609,611,614,616],{"class":175,"line":610},21,[173,612,613],{"class":183},"headers ",[173,615,298],{"class":223},[173,617,301],{"class":223},[173,619,621,624,627,629,631,633,636,638],{"class":175,"line":620},22,[173,622,623],{"class":223},"  \"",[173,625,626],{"class":237},"Content-Type",[173,628,234],{"class":223},[173,630,315],{"class":223},[173,632,249],{"class":223},[173,634,635],{"class":237},"application\u002Fjson",[173,637,234],{"class":223},[173,639,325],{"class":223},[173,641,643,645,648,650,652,656,659,663,665,667,669,671,674,676,678,680,683],{"class":175,"line":642},23,[173,644,623],{"class":223},[173,646,647],{"class":237},"Authorization",[173,649,234],{"class":223},[173,651,315],{"class":223},[173,653,655],{"class":654},"spNyl"," f",[173,657,658],{"class":237},"\"Token ",[173,660,662],{"class":661},"sbssI","{",[173,664,220],{"class":183},[173,666,224],{"class":223},[173,668,228],{"class":227},[173,670,231],{"class":223},[173,672,673],{"class":223},"'",[173,675,238],{"class":237},[173,677,673],{"class":223},[173,679,243],{"class":223},[173,681,682],{"class":661},"}",[173,684,255],{"class":237},[173,686,688],{"class":175,"line":687},24,[173,689,595],{"class":223},[173,691,693,696,698,700,702,704,706,708,710,712,714,716,718,720,722],{"class":175,"line":692},25,[173,694,695],{"class":183},"url ",[173,697,298],{"class":223},[173,699,655],{"class":654},[173,701,234],{"class":237},[173,703,662],{"class":661},[173,705,220],{"class":183},[173,707,224],{"class":223},[173,709,228],{"class":227},[173,711,231],{"class":223},[173,713,673],{"class":223},[173,715,271],{"class":237},[173,717,673],{"class":223},[173,719,243],{"class":223},[173,721,682],{"class":661},[173,723,724],{"class":237},"\u002Fadd\u002Fmessage\"\n",[173,726,728],{"class":175,"line":727},26,[173,729,207],{"emptyLinePlaceholder":206},[173,731,733,736,738,741,743,747,750,754,756,758,760,763,765,768,770,773,775,778,780,783,785,788],{"class":175,"line":732},27,[173,734,735],{"class":183},"res ",[173,737,298],{"class":223},[173,739,740],{"class":183}," requests",[173,742,224],{"class":223},[173,744,746],{"class":745},"s2Zo4","post",[173,748,749],{"class":223},"(",[173,751,753],{"class":752},"sHdIc","url",[173,755,298],{"class":223},[173,757,753],{"class":745},[173,759,386],{"class":223},[173,761,762],{"class":752}," headers",[173,764,298],{"class":223},[173,766,767],{"class":745},"headers",[173,769,386],{"class":223},[173,771,772],{"class":752}," data",[173,774,298],{"class":223},[173,776,777],{"class":745},"json",[173,779,224],{"class":223},[173,781,782],{"class":745},"dumps",[173,784,749],{"class":223},[173,786,787],{"class":745},"data",[173,789,790],{"class":223},"))\n",[173,792,794],{"class":175,"line":793},28,[173,795,207],{"emptyLinePlaceholder":206},[173,797,799,802,804,807,810,812,815,817,819,822,824,826],{"class":175,"line":798},29,[173,800,801],{"class":745},"print",[173,803,749],{"class":223},[173,805,806],{"class":654},"f",[173,808,809],{"class":237},"\"result: ",[173,811,662],{"class":661},[173,813,814],{"class":745},"res",[173,816,224],{"class":223},[173,818,777],{"class":745},[173,820,821],{"class":223},"()",[173,823,682],{"class":661},[173,825,234],{"class":237},[173,827,828],{"class":223},")\n",[70,830],{},[142,832,834,835],{"id":833},"_2-retrieve-memory","2. ",[19,836,837],{},"Retrieve Memory",[16,839,840],{},"Suppose the user makes another travel planning request. Pass the user's query and enable skill recall:",[164,842,844],{"className":166,"code":843,"language":168,"meta":169,"style":169},"import os\nimport requests\nimport json\n\n# Replace with your API Key\nos.environ[\"MEMOS_API_KEY\"] = \"YOUR_API_KEY\"\nos.environ[\"MEMOS_BASE_URL\"] = \"https:\u002F\u002Fmemos.memtensor.cn\u002Fapi\u002Fopenmem\u002Fv1\"\ndata = {\n  \"query\": \"I plan to go to Yunnan during the Qingming Festival. Help me plan a 7-day itinerary.\",\n  \"user_id\": \"memos_user_123\",\n  \"conversation_id\": \"0301\",\n  \"include_skill\": True # Enable skill\n}\nheaders = {\n  \"Content-Type\": \"application\u002Fjson\",\n  \"Authorization\": f\"Token {os.environ['MEMOS_API_KEY']}\"\n}\nurl = f\"{os.environ['MEMOS_BASE_URL']}\u002Fsearch\u002Fmemory\"\n\nres = requests.post(url=url, headers=headers, data=json.dumps(data))\n\nprint(f\"result: {res.json()}\")\n\n",[93,845,846,852,858,864,868,872,898,924,932,952,970,989,1006,1010,1018,1036,1072,1076,1109,1113,1159,1163],{"__ignoreMap":169},[173,847,848,850],{"class":175,"line":176},[173,849,180],{"class":179},[173,851,184],{"class":183},[173,853,854,856],{"class":175,"line":187},[173,855,180],{"class":179},[173,857,192],{"class":183},[173,859,860,862],{"class":175,"line":195},[173,861,180],{"class":179},[173,863,200],{"class":183},[173,865,866],{"class":175,"line":203},[173,867,207],{"emptyLinePlaceholder":206},[173,869,870],{"class":175,"line":210},[173,871,214],{"class":213},[173,873,874,876,878,880,882,884,886,888,890,892,894,896],{"class":175,"line":217},[173,875,220],{"class":183},[173,877,224],{"class":223},[173,879,228],{"class":227},[173,881,231],{"class":223},[173,883,234],{"class":223},[173,885,238],{"class":237},[173,887,234],{"class":223},[173,889,243],{"class":223},[173,891,246],{"class":223},[173,893,249],{"class":223},[173,895,252],{"class":237},[173,897,255],{"class":223},[173,899,900,902,904,906,908,910,912,914,916,918,920,922],{"class":175,"line":258},[173,901,220],{"class":183},[173,903,224],{"class":223},[173,905,228],{"class":227},[173,907,231],{"class":223},[173,909,234],{"class":223},[173,911,271],{"class":237},[173,913,234],{"class":223},[173,915,243],{"class":223},[173,917,246],{"class":223},[173,919,249],{"class":223},[173,921,282],{"class":237},[173,923,255],{"class":223},[173,925,926,928,930],{"class":175,"line":287},[173,927,295],{"class":183},[173,929,298],{"class":223},[173,931,301],{"class":223},[173,933,934,936,939,941,943,945,948,950],{"class":175,"line":292},[173,935,623],{"class":223},[173,937,938],{"class":237},"query",[173,940,234],{"class":223},[173,942,315],{"class":223},[173,944,249],{"class":223},[173,946,947],{"class":237},"I plan to go to Yunnan during the Qingming Festival. Help me plan a 7-day itinerary.",[173,949,234],{"class":223},[173,951,325],{"class":223},[173,953,954,956,958,960,962,964,966,968],{"class":175,"line":304},[173,955,623],{"class":223},[173,957,310],{"class":237},[173,959,234],{"class":223},[173,961,315],{"class":223},[173,963,249],{"class":223},[173,965,320],{"class":237},[173,967,234],{"class":223},[173,969,325],{"class":223},[173,971,972,974,976,978,980,982,985,987],{"class":175,"line":328},[173,973,623],{"class":223},[173,975,333],{"class":237},[173,977,234],{"class":223},[173,979,315],{"class":223},[173,981,249],{"class":223},[173,983,984],{"class":237},"0301",[173,986,234],{"class":223},[173,988,325],{"class":223},[173,990,991,993,996,998,1000,1003],{"class":175,"line":349},[173,992,623],{"class":223},[173,994,995],{"class":237},"include_skill",[173,997,234],{"class":223},[173,999,315],{"class":223},[173,1001,1002],{"class":223}," True",[173,1004,1005],{"class":213}," # Enable skill\n",[173,1007,1008],{"class":175,"line":364},[173,1009,595],{"class":223},[173,1011,1012,1014,1016],{"class":175,"line":408},[173,1013,613],{"class":183},[173,1015,298],{"class":223},[173,1017,301],{"class":223},[173,1019,1020,1022,1024,1026,1028,1030,1032,1034],{"class":175,"line":447},[173,1021,623],{"class":223},[173,1023,626],{"class":237},[173,1025,234],{"class":223},[173,1027,315],{"class":223},[173,1029,249],{"class":223},[173,1031,635],{"class":237},[173,1033,234],{"class":223},[173,1035,325],{"class":223},[173,1037,1038,1040,1042,1044,1046,1048,1050,1052,1054,1056,1058,1060,1062,1064,1066,1068,1070],{"class":175,"line":485},[173,1039,623],{"class":223},[173,1041,647],{"class":237},[173,1043,234],{"class":223},[173,1045,315],{"class":223},[173,1047,655],{"class":654},[173,1049,658],{"class":237},[173,1051,662],{"class":661},[173,1053,220],{"class":183},[173,1055,224],{"class":223},[173,1057,228],{"class":227},[173,1059,231],{"class":223},[173,1061,673],{"class":223},[173,1063,238],{"class":237},[173,1065,673],{"class":223},[173,1067,243],{"class":223},[173,1069,682],{"class":661},[173,1071,255],{"class":237},[173,1073,1074],{"class":175,"line":522},[173,1075,595],{"class":223},[173,1077,1078,1080,1082,1084,1086,1088,1090,1092,1094,1096,1098,1100,1102,1104,1106],{"class":175,"line":560},[173,1079,695],{"class":183},[173,1081,298],{"class":223},[173,1083,655],{"class":654},[173,1085,234],{"class":237},[173,1087,662],{"class":661},[173,1089,220],{"class":183},[173,1091,224],{"class":223},[173,1093,228],{"class":227},[173,1095,231],{"class":223},[173,1097,673],{"class":223},[173,1099,271],{"class":237},[173,1101,673],{"class":223},[173,1103,243],{"class":223},[173,1105,682],{"class":661},[173,1107,1108],{"class":237},"\u002Fsearch\u002Fmemory\"\n",[173,1110,1111],{"class":175,"line":598},[173,1112,207],{"emptyLinePlaceholder":206},[173,1114,1115,1117,1119,1121,1123,1125,1127,1129,1131,1133,1135,1137,1139,1141,1143,1145,1147,1149,1151,1153,1155,1157],{"class":175,"line":604},[173,1116,735],{"class":183},[173,1118,298],{"class":223},[173,1120,740],{"class":183},[173,1122,224],{"class":223},[173,1124,746],{"class":745},[173,1126,749],{"class":223},[173,1128,753],{"class":752},[173,1130,298],{"class":223},[173,1132,753],{"class":745},[173,1134,386],{"class":223},[173,1136,762],{"class":752},[173,1138,298],{"class":223},[173,1140,767],{"class":745},[173,1142,386],{"class":223},[173,1144,772],{"class":752},[173,1146,298],{"class":223},[173,1148,777],{"class":745},[173,1150,224],{"class":223},[173,1152,782],{"class":745},[173,1154,749],{"class":223},[173,1156,787],{"class":745},[173,1158,790],{"class":223},[173,1160,1161],{"class":175,"line":610},[173,1162,207],{"emptyLinePlaceholder":206},[173,1164,1165,1167,1169,1171,1173,1175,1177,1179,1181,1183,1185,1187],{"class":175,"line":620},[173,1166,801],{"class":745},[173,1168,749],{"class":223},[173,1170,806],{"class":654},[173,1172,809],{"class":237},[173,1174,662],{"class":661},[173,1176,814],{"class":745},[173,1178,224],{"class":223},[173,1180,777],{"class":745},[173,1182,821],{"class":223},[173,1184,682],{"class":661},[173,1186,234],{"class":237},[173,1188,828],{"class":223},[70,1190],{},[142,1192,1194,1195],{"id":1193},"_3-result-display","3. ",[19,1196,1197],{},"Result Display",[16,1199,1200],{},"In the retrieval results below, the skill includes:",[42,1202,1203,1206,1209],{},[45,1204,1205],{},"Planning \"Special Forces\" itineraries.",[45,1207,1208],{},"Recommending cultural attractions.",[45,1210,1211],{},"Focusing on weather\u002Ftemperature and recommending suitable clothing.",[164,1213,1217],{"className":1214,"code":1215,"language":1216,"meta":169,"style":169},"language-markdown shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Below is the Skill.md generated by MemOS \n\n---\nname: Travel Itinerary Planning\ndescription: Design multi-day itineraries for travelers, including attraction arrangements, transportation, and weather adaptation suggestions.\n---\n\n## Procedure\n1. Determine the traveler's interests and preferences 2. Gather information on attractions and activities at the destination 3. Plan the daily itinerary, ensuring high efficiency and no backtracking 4. Add local food recommendations to enrich the experience 5. Provide transportation and accommodation suggestions, balancing convenience and comfort 6. Check weather forecasts, adjust the itinerary, and prepare luggage\n\n## Experience\n1. Efficient route design reduces commute time\n2. Prioritize attractions; avoid overly commercialized places\n3. Food recommendations increase the richness of the experience\n4. Weather adaptation ensures comfortable travel\n\n## User Preferences\n- Itinerary arrangements without backtracking\n- Priority for cultural attractions, focusing on history and cultural experiences\n- Adjust itinerary and prepare luggage based on weather\n\n## Examples\n\n### Example 1\n\n# Travel Itinerary Planning Example\n## Day 1\n- **Itinerary**: Panda Base → Eastern Suburb Memory → Jianshe Road Food Street\n- **Weather Adaptation**: Cloudy and windy, suitable for visiting cultural districts\n- **Food Recommendation**: Juntun Guokui (Pot-baked pancake), Soy milk\n- **Transportation**: Subway + Walking\n\n## Day 2\n- **Itinerary**: People's Park → Chengdu Museum → Wenshu Monastery\n- **Weather Adaptation**: Light rain, focus on indoor museums\n- **Food Recommendation**: Zhong Dumplings, Chen Mapo Tofu\n- **Transportation**: Subway + Ride-hailing\n\n...\n\n## Additional Information\n\n### Luggage Preparation Guide\nBased on destination weather characteristics, use the \"onion layering\" method for easy adjustment.\n\n### Cultural Attraction Reservation Guide\nProvide reservation channels, ticket prices, and opening hours.\n\n","markdown",[93,1218,1219,1231,1235,1240,1245,1250,1254,1258,1266,1274,1278,1285,1292,1300,1308,1316,1320,1327,1335,1342,1349,1353,1360,1364,1372,1376,1383,1390,1408,1422,1437,1452,1457,1465,1479,1493,1507,1521,1526,1532,1537,1545,1550,1558,1564,1569,1577],{"__ignoreMap":169},[173,1220,1221,1224,1228],{"class":175,"line":176},[173,1222,1223],{"class":223},"# ",[173,1225,1227],{"class":1226},"sBMFI","Below is the Skill.md generated by MemOS",[173,1229,1230],{"class":223}," \n",[173,1232,1233],{"class":175,"line":187},[173,1234,207],{"emptyLinePlaceholder":206},[173,1236,1237],{"class":175,"line":195},[173,1238,1239],{"class":183},"---\n",[173,1241,1242],{"class":175,"line":203},[173,1243,1244],{"class":183},"name: Travel Itinerary Planning\n",[173,1246,1247],{"class":175,"line":210},[173,1248,1249],{"class":183},"description: Design multi-day itineraries for travelers, including attraction arrangements, transportation, and weather adaptation suggestions.\n",[173,1251,1252],{"class":175,"line":217},[173,1253,1239],{"class":223},[173,1255,1256],{"class":175,"line":258},[173,1257,207],{"emptyLinePlaceholder":206},[173,1259,1260,1263],{"class":175,"line":287},[173,1261,1262],{"class":223},"## ",[173,1264,1265],{"class":1226},"Procedure\n",[173,1267,1268,1271],{"class":175,"line":292},[173,1269,1270],{"class":223},"1.",[173,1272,1273],{"class":183}," Determine the traveler's interests and preferences 2. Gather information on attractions and activities at the destination 3. Plan the daily itinerary, ensuring high efficiency and no backtracking 4. Add local food recommendations to enrich the experience 5. Provide transportation and accommodation suggestions, balancing convenience and comfort 6. Check weather forecasts, adjust the itinerary, and prepare luggage\n",[173,1275,1276],{"class":175,"line":304},[173,1277,207],{"emptyLinePlaceholder":206},[173,1279,1280,1282],{"class":175,"line":328},[173,1281,1262],{"class":223},[173,1283,1284],{"class":1226},"Experience\n",[173,1286,1287,1289],{"class":175,"line":349},[173,1288,1270],{"class":223},[173,1290,1291],{"class":183}," Efficient route design reduces commute time\n",[173,1293,1294,1297],{"class":175,"line":364},[173,1295,1296],{"class":223},"2.",[173,1298,1299],{"class":183}," Prioritize attractions; avoid overly commercialized places\n",[173,1301,1302,1305],{"class":175,"line":408},[173,1303,1304],{"class":223},"3.",[173,1306,1307],{"class":183}," Food recommendations increase the richness of the experience\n",[173,1309,1310,1313],{"class":175,"line":447},[173,1311,1312],{"class":223},"4.",[173,1314,1315],{"class":183}," Weather adaptation ensures comfortable travel\n",[173,1317,1318],{"class":175,"line":485},[173,1319,207],{"emptyLinePlaceholder":206},[173,1321,1322,1324],{"class":175,"line":522},[173,1323,1262],{"class":223},[173,1325,1326],{"class":1226},"User Preferences\n",[173,1328,1329,1332],{"class":175,"line":560},[173,1330,1331],{"class":223},"-",[173,1333,1334],{"class":183}," Itinerary arrangements without backtracking\n",[173,1336,1337,1339],{"class":175,"line":598},[173,1338,1331],{"class":223},[173,1340,1341],{"class":183}," Priority for cultural attractions, focusing on history and cultural experiences\n",[173,1343,1344,1346],{"class":175,"line":604},[173,1345,1331],{"class":223},[173,1347,1348],{"class":183}," Adjust itinerary and prepare luggage based on weather\n",[173,1350,1351],{"class":175,"line":610},[173,1352,207],{"emptyLinePlaceholder":206},[173,1354,1355,1357],{"class":175,"line":620},[173,1356,1262],{"class":223},[173,1358,1359],{"class":1226},"Examples\n",[173,1361,1362],{"class":175,"line":642},[173,1363,207],{"emptyLinePlaceholder":206},[173,1365,1366,1369],{"class":175,"line":687},[173,1367,1368],{"class":223},"### ",[173,1370,1371],{"class":1226},"Example 1\n",[173,1373,1374],{"class":175,"line":692},[173,1375,207],{"emptyLinePlaceholder":206},[173,1377,1378,1380],{"class":175,"line":727},[173,1379,1223],{"class":223},[173,1381,1382],{"class":1226},"Travel Itinerary Planning Example\n",[173,1384,1385,1387],{"class":175,"line":732},[173,1386,1262],{"class":223},[173,1388,1389],{"class":1226},"Day 1\n",[173,1391,1392,1394,1398,1402,1405],{"class":175,"line":793},[173,1393,1331],{"class":223},[173,1395,1397],{"class":1396},"sHepR"," **",[173,1399,1401],{"class":1400},"so75L","Itinerary",[173,1403,1404],{"class":1396},"**",[173,1406,1407],{"class":183},": Panda Base → Eastern Suburb Memory → Jianshe Road Food Street\n",[173,1409,1410,1412,1414,1417,1419],{"class":175,"line":798},[173,1411,1331],{"class":223},[173,1413,1397],{"class":1396},[173,1415,1416],{"class":1400},"Weather Adaptation",[173,1418,1404],{"class":1396},[173,1420,1421],{"class":183},": Cloudy and windy, suitable for visiting cultural districts\n",[173,1423,1425,1427,1429,1432,1434],{"class":175,"line":1424},30,[173,1426,1331],{"class":223},[173,1428,1397],{"class":1396},[173,1430,1431],{"class":1400},"Food Recommendation",[173,1433,1404],{"class":1396},[173,1435,1436],{"class":183},": Juntun Guokui (Pot-baked pancake), Soy milk\n",[173,1438,1440,1442,1444,1447,1449],{"class":175,"line":1439},31,[173,1441,1331],{"class":223},[173,1443,1397],{"class":1396},[173,1445,1446],{"class":1400},"Transportation",[173,1448,1404],{"class":1396},[173,1450,1451],{"class":183},": Subway + Walking\n",[173,1453,1455],{"class":175,"line":1454},32,[173,1456,207],{"emptyLinePlaceholder":206},[173,1458,1460,1462],{"class":175,"line":1459},33,[173,1461,1262],{"class":223},[173,1463,1464],{"class":1226},"Day 2\n",[173,1466,1468,1470,1472,1474,1476],{"class":175,"line":1467},34,[173,1469,1331],{"class":223},[173,1471,1397],{"class":1396},[173,1473,1401],{"class":1400},[173,1475,1404],{"class":1396},[173,1477,1478],{"class":183},": People's Park → Chengdu Museum → Wenshu Monastery\n",[173,1480,1482,1484,1486,1488,1490],{"class":175,"line":1481},35,[173,1483,1331],{"class":223},[173,1485,1397],{"class":1396},[173,1487,1416],{"class":1400},[173,1489,1404],{"class":1396},[173,1491,1492],{"class":183},": Light rain, focus on indoor museums\n",[173,1494,1496,1498,1500,1502,1504],{"class":175,"line":1495},36,[173,1497,1331],{"class":223},[173,1499,1397],{"class":1396},[173,1501,1431],{"class":1400},[173,1503,1404],{"class":1396},[173,1505,1506],{"class":183},": Zhong Dumplings, Chen Mapo Tofu\n",[173,1508,1510,1512,1514,1516,1518],{"class":175,"line":1509},37,[173,1511,1331],{"class":223},[173,1513,1397],{"class":1396},[173,1515,1446],{"class":1400},[173,1517,1404],{"class":1396},[173,1519,1520],{"class":183},": Subway + Ride-hailing\n",[173,1522,1524],{"class":175,"line":1523},38,[173,1525,207],{"emptyLinePlaceholder":206},[173,1527,1529],{"class":175,"line":1528},39,[173,1530,1531],{"class":183},"...\n",[173,1533,1535],{"class":175,"line":1534},40,[173,1536,207],{"emptyLinePlaceholder":206},[173,1538,1540,1542],{"class":175,"line":1539},41,[173,1541,1262],{"class":223},[173,1543,1544],{"class":1226},"Additional Information\n",[173,1546,1548],{"class":175,"line":1547},42,[173,1549,207],{"emptyLinePlaceholder":206},[173,1551,1553,1555],{"class":175,"line":1552},43,[173,1554,1368],{"class":223},[173,1556,1557],{"class":1226},"Luggage Preparation Guide\n",[173,1559,1561],{"class":175,"line":1560},44,[173,1562,1563],{"class":183},"Based on destination weather characteristics, use the \"onion layering\" method for easy adjustment.\n",[173,1565,1567],{"class":175,"line":1566},45,[173,1568,207],{"emptyLinePlaceholder":206},[173,1570,1572,1574],{"class":175,"line":1571},46,[173,1573,1368],{"class":223},[173,1575,1576],{"class":1226},"Cultural Attraction Reservation Guide\n",[173,1578,1580],{"class":175,"line":1579},47,[173,1581,1582],{"class":183},"Provide reservation channels, ticket prices, and opening hours.\n",[34,1584,1585,1590],{},[16,1586,1587],{},[19,1588,1589],{},"Two Ways to Use Skills",[42,1591,1592,1599],{},[45,1593,1594,1595,1598],{},"If the Model\u002FAgent you call has the capability to use Skill files, you can directly download the file from the ",[93,1596,1597],{},"skill_url"," link.",[45,1600,1601,1602,1605],{},"If the Model\u002FAgent you call does not have the capability to use Skill files, you can directly convert ",[93,1603,1604],{},"skill_value"," into a string and add it to the prompt.",[70,1607],{},[142,1609,1611,1612],{"id":1610},"_4-build-your-personalized-skills","4. ",[19,1613,1614],{},"Build Your Personalized Skills",[16,1616,1617],{},"Based on different users' conversation messages, MemOS can create skills exclusive to individuals. For instance, we constructed another conversation between a \"Low-Energy P-type person\" and a \"Travel Planning Assistant.\" When they requested:",[42,1619,1620,1623,1626],{},[45,1621,1622],{},"Night owl, can't get up early.",[45,1624,1625],{},"Doesn't want to go to far-off places that require rushing.",[45,1627,1628],{},"Interspersed with niche attractions, off the beaten path.",[16,1630,1631],{},"The Skill file built by MemOS included:",[42,1633,1634,1637,1640],{},[45,1635,1636],{},"Planning afternoon-to-evening, relaxed itineraries.",[45,1638,1639],{},"Recommending routes that aren't too far or rushed.",[45,1641,1642],{},"Interspersing niche attractions.",[164,1644,1646],{"className":1214,"code":1645,"language":1216,"meta":169,"style":169},"# Below is the Skill.md generated by MemOS \n---\nname: Travel Itinerary Planning\ndescription: Help users plan travel itineraries, ensuring comfortable and efficient exploration of the destination.\n\n---\n\n## Procedure\n\n1. Determine travel purpose and preferences 2. Gather information on destination attractions and activities 3. Filter attractions based on user preferences 4. Arrange daily schedules, including transportation and dining 5. Provide tips and precautions\n\n## Experience\n\n1. Avoid long-distance travel; choose attractions with convenient transportation\n2. Reasonably arrange daily schedules, balancing leisure and exploration\n3. Fully utilize nighttime activities and attractions to enhance the travel experience\n4. Discover niche attractions to avoid crowds and enjoy unique experiences\n\n## User Preferences\n\n- User prefers waking up late and avoiding long-distance travel\n- Priority for attractions directly accessible by subway\n- Values nighttime activities and experiences\n- Explores niche and non-traditional travel routes\n\n## Examples\n\n### Example 1\n\n### Day 1: Giant Panda Afternoon + Niche Old Street Night Tour\n- **Noon**: Wake up naturally + Huixinglou Street Food\n- **Afternoon**: Chengdu Research Base of Giant Panda Breeding\n- **Evening**: Night tour of Shizi Alley + Guihua Alley + Paotongshu Street\n...\n\n### Example 2\n\n### Day 2: Three Kingdoms Culture + Dongmen Market Night Market\n- **Noon**: Wake up naturally + Wuhouci Street Food\n- **Afternoon**: Wuhou Shrine + Red Walls and Bamboo Shadows\n- **Evening**: Dongmen Market + Jiuyanqiao Bar Street\n...\n\n",[93,1647,1648,1656,1660,1664,1669,1673,1677,1681,1687,1691,1698,1702,1708,1712,1719,1726,1733,1740,1744,1750,1754,1761,1768,1775,1782,1786,1792,1796,1802,1806,1813,1827,1841,1855,1859,1863,1870,1874,1881,1894,1907,1920],{"__ignoreMap":169},[173,1649,1650,1652,1654],{"class":175,"line":176},[173,1651,1223],{"class":223},[173,1653,1227],{"class":1226},[173,1655,1230],{"class":223},[173,1657,1658],{"class":175,"line":187},[173,1659,1239],{"class":183},[173,1661,1662],{"class":175,"line":195},[173,1663,1244],{"class":183},[173,1665,1666],{"class":175,"line":203},[173,1667,1668],{"class":183},"description: Help users plan travel itineraries, ensuring comfortable and efficient exploration of the destination.\n",[173,1670,1671],{"class":175,"line":210},[173,1672,207],{"emptyLinePlaceholder":206},[173,1674,1675],{"class":175,"line":217},[173,1676,1239],{"class":223},[173,1678,1679],{"class":175,"line":258},[173,1680,207],{"emptyLinePlaceholder":206},[173,1682,1683,1685],{"class":175,"line":287},[173,1684,1262],{"class":223},[173,1686,1265],{"class":1226},[173,1688,1689],{"class":175,"line":292},[173,1690,207],{"emptyLinePlaceholder":206},[173,1692,1693,1695],{"class":175,"line":304},[173,1694,1270],{"class":223},[173,1696,1697],{"class":183}," Determine travel purpose and preferences 2. Gather information on destination attractions and activities 3. Filter attractions based on user preferences 4. Arrange daily schedules, including transportation and dining 5. Provide tips and precautions\n",[173,1699,1700],{"class":175,"line":328},[173,1701,207],{"emptyLinePlaceholder":206},[173,1703,1704,1706],{"class":175,"line":349},[173,1705,1262],{"class":223},[173,1707,1284],{"class":1226},[173,1709,1710],{"class":175,"line":364},[173,1711,207],{"emptyLinePlaceholder":206},[173,1713,1714,1716],{"class":175,"line":408},[173,1715,1270],{"class":223},[173,1717,1718],{"class":183}," Avoid long-distance travel; choose attractions with convenient transportation\n",[173,1720,1721,1723],{"class":175,"line":447},[173,1722,1296],{"class":223},[173,1724,1725],{"class":183}," Reasonably arrange daily schedules, balancing leisure and exploration\n",[173,1727,1728,1730],{"class":175,"line":485},[173,1729,1304],{"class":223},[173,1731,1732],{"class":183}," Fully utilize nighttime activities and attractions to enhance the travel experience\n",[173,1734,1735,1737],{"class":175,"line":522},[173,1736,1312],{"class":223},[173,1738,1739],{"class":183}," Discover niche attractions to avoid crowds and enjoy unique experiences\n",[173,1741,1742],{"class":175,"line":560},[173,1743,207],{"emptyLinePlaceholder":206},[173,1745,1746,1748],{"class":175,"line":598},[173,1747,1262],{"class":223},[173,1749,1326],{"class":1226},[173,1751,1752],{"class":175,"line":604},[173,1753,207],{"emptyLinePlaceholder":206},[173,1755,1756,1758],{"class":175,"line":610},[173,1757,1331],{"class":223},[173,1759,1760],{"class":183}," User prefers waking up late and avoiding long-distance travel\n",[173,1762,1763,1765],{"class":175,"line":620},[173,1764,1331],{"class":223},[173,1766,1767],{"class":183}," Priority for attractions directly accessible by subway\n",[173,1769,1770,1772],{"class":175,"line":642},[173,1771,1331],{"class":223},[173,1773,1774],{"class":183}," Values nighttime activities and experiences\n",[173,1776,1777,1779],{"class":175,"line":687},[173,1778,1331],{"class":223},[173,1780,1781],{"class":183}," Explores niche and non-traditional travel routes\n",[173,1783,1784],{"class":175,"line":692},[173,1785,207],{"emptyLinePlaceholder":206},[173,1787,1788,1790],{"class":175,"line":727},[173,1789,1262],{"class":223},[173,1791,1359],{"class":1226},[173,1793,1794],{"class":175,"line":732},[173,1795,207],{"emptyLinePlaceholder":206},[173,1797,1798,1800],{"class":175,"line":793},[173,1799,1368],{"class":223},[173,1801,1371],{"class":1226},[173,1803,1804],{"class":175,"line":798},[173,1805,207],{"emptyLinePlaceholder":206},[173,1807,1808,1810],{"class":175,"line":1424},[173,1809,1368],{"class":223},[173,1811,1812],{"class":1226},"Day 1: Giant Panda Afternoon + Niche Old Street Night Tour\n",[173,1814,1815,1817,1819,1822,1824],{"class":175,"line":1439},[173,1816,1331],{"class":223},[173,1818,1397],{"class":1396},[173,1820,1821],{"class":1400},"Noon",[173,1823,1404],{"class":1396},[173,1825,1826],{"class":183},": Wake up naturally + Huixinglou Street Food\n",[173,1828,1829,1831,1833,1836,1838],{"class":175,"line":1454},[173,1830,1331],{"class":223},[173,1832,1397],{"class":1396},[173,1834,1835],{"class":1400},"Afternoon",[173,1837,1404],{"class":1396},[173,1839,1840],{"class":183},": Chengdu Research Base of Giant Panda Breeding\n",[173,1842,1843,1845,1847,1850,1852],{"class":175,"line":1459},[173,1844,1331],{"class":223},[173,1846,1397],{"class":1396},[173,1848,1849],{"class":1400},"Evening",[173,1851,1404],{"class":1396},[173,1853,1854],{"class":183},": Night tour of Shizi Alley + Guihua Alley + Paotongshu Street\n",[173,1856,1857],{"class":175,"line":1467},[173,1858,1531],{"class":183},[173,1860,1861],{"class":175,"line":1481},[173,1862,207],{"emptyLinePlaceholder":206},[173,1864,1865,1867],{"class":175,"line":1495},[173,1866,1368],{"class":223},[173,1868,1869],{"class":1226},"Example 2\n",[173,1871,1872],{"class":175,"line":1509},[173,1873,207],{"emptyLinePlaceholder":206},[173,1875,1876,1878],{"class":175,"line":1523},[173,1877,1368],{"class":223},[173,1879,1880],{"class":1226},"Day 2: Three Kingdoms Culture + Dongmen Market Night Market\n",[173,1882,1883,1885,1887,1889,1891],{"class":175,"line":1528},[173,1884,1331],{"class":223},[173,1886,1397],{"class":1396},[173,1888,1821],{"class":1400},[173,1890,1404],{"class":1396},[173,1892,1893],{"class":183},": Wake up naturally + Wuhouci Street Food\n",[173,1895,1896,1898,1900,1902,1904],{"class":175,"line":1534},[173,1897,1331],{"class":223},[173,1899,1397],{"class":1396},[173,1901,1835],{"class":1400},[173,1903,1404],{"class":1396},[173,1905,1906],{"class":183},": Wuhou Shrine + Red Walls and Bamboo Shadows\n",[173,1908,1909,1911,1913,1915,1917],{"class":175,"line":1539},[173,1910,1331],{"class":223},[173,1912,1397],{"class":1396},[173,1914,1849],{"class":1400},[173,1916,1404],{"class":1396},[173,1918,1919],{"class":183},": Dongmen Market + Jiuyanqiao Bar Street\n",[173,1921,1922],{"class":175,"line":1547},[173,1923,1531],{"class":183},[34,1925,1926,1931],{},[16,1927,1928],{},[19,1929,1930],{},"Start exploring MemOS Skills now! 🚀",[42,1932,1933,1944],{},[45,1934,1935,1936,1943],{},"Go to the ",[1937,1938,1942],"a",{"href":1939,"rel":1940},"https:\u002F\u002Fmemos-dashboard.openmem.net\u002Fskill\u002F",[1941],"nofollow","Console - Skill Page"," to view Skill files automatically generated based on user conversation history.",[45,1945,1946,1947,1950],{},"Don't have any skills yet? Just ",[1937,1948,148],{"href":1949},"\u002Fmemos_cloud\u002Fmem_operations\u002Fadd_message"," to trigger generation.",[1952,1953,1954],"style",{},"html pre.shiki code .s7zQu, html code.shiki .s7zQu{--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic}html pre.shiki code .sTEyZ, html code.shiki .sTEyZ{--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8}html pre.shiki code .sHwdD, html code.shiki .sHwdD{--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic}html pre.shiki code .sMK4o, html code.shiki .sMK4o{--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF}html pre.shiki code .swJcz, html code.shiki .swJcz{--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178}html pre.shiki code .sfazB, html code.shiki .sfazB{--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D}html pre.shiki code .spNyl, html code.shiki .spNyl{--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA}html pre.shiki code .sbssI, html code.shiki .sbssI{--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C}html pre.shiki code .s2Zo4, html code.shiki .s2Zo4{--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF}html pre.shiki code .sHdIc, html code.shiki .sHdIc{--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic}html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}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);}html pre.shiki code .sBMFI, html code.shiki .sBMFI{--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B}html pre.shiki code .sHepR, html code.shiki .sHepR{--shiki-light:#39ADB5;--shiki-light-font-weight:bold;--shiki-default:#89DDFF;--shiki-default-font-weight:bold;--shiki-dark:#89DDFF;--shiki-dark-font-weight:bold}html pre.shiki code .so75L, html code.shiki .so75L{--shiki-light:#E53935;--shiki-light-font-weight:bold;--shiki-default:#F07178;--shiki-default-font-weight:bold;--shiki-dark:#F07178;--shiki-dark-font-weight:bold}",{"title":169,"searchDepth":187,"depth":187,"links":1956},[1957,1958,1959],{"id":13,"depth":187,"text":14},{"id":74,"depth":187,"text":75},{"id":134,"depth":187,"text":135,"children":1960},[1961,1963,1965,1967],{"id":144,"depth":195,"text":1962},"1. Add Messages",{"id":833,"depth":195,"text":1964},"2. Retrieve Memory",{"id":1193,"depth":195,"text":1966},"3. Result Display",{"id":1610,"depth":195,"text":1968},"4. Build Your Personalized Skills","Generate reusable Skill files for Agents by adding user conversation messages.","md",{},"\u002Fen\u002Fmemos_cloud\u002Ffeatures\u002Fadvanced\u002Fskill",{"title":5,"description":169},"en\u002Fmemos_cloud\u002Ffeatures\u002Fadvanced\u002Fskill","c45ZXaFGNWAXqXzcrBFsXkGesTzdsp5FqEsnDsmAFSA",[1977,1985],{"title":1978,"path":1979,"stem":1980,"icon":1981,"framework":6,"module":6,"class":1982,"target":-1,"active":1983,"defaultOpen":1983,"children":-1,"description":1984},"Custom Tags","\u002Fmemos_cloud\u002Ffeatures\u002Fbasic\u002Fcustom_tags","memos_cloud\u002Ffeatures\u002Fbasic\u002Fcustom_tags","i-ri-price-tag-3-line",[],false,"Use tags according to your business needs when adding messages.",{"title":1986,"path":1987,"stem":1988,"icon":1989,"framework":6,"module":6,"class":1990,"target":-1,"active":1983,"defaultOpen":1983,"children":-1,"description":1991},"Knowledge Base","\u002Fmemos_cloud\u002Ffeatures\u002Fadvanced\u002Fknowledge_base","memos_cloud\u002Ffeatures\u002Fadvanced\u002Fknowledge_base","i-ri-book-read-line",[],"Create a knowledge base associated with the project, and combine user memory with knowledge base to supplement knowledge when retrieving memories.",1775811151077]