Install
openclaw skills install line-rich-messagesComprehensive guide for LINE Rich UI features (Flex Messages, buttons, quick replies, and markdown auto-conversion). Use this skill to provide a professional, low-friction experience for LINE users, prioritizing interactive elements over manual text input.
openclaw skills install line-rich-messagesThis skill transforms the agent from a text-only bot into a professional LINE assistant with native UI capabilities.
Typing on mobile is slow and error-prone. Always prioritize Rich UI elements to minimize the user's need to reply with text.
Detailed guides for each feature:
[[quick_replies: ...]].[[confirm: ...]] for actions like "Delete Memory" or "Cancel Project".LINE_CHANNEL_ACCESS_TOKEN / LINE_CHANNEL_SECRET.若系統標籤轉換失敗,請使用 手工構建 JSON。這是最穩定且能 100% 呈現自定義 UI 的方式。
將此 JSON 作為純文字發送,若系統支援自動偵測則會轉換;若不支援,請改走 OpenClaw 的 LINE plugin 正規發送路徑(或由管理員在已授權的環境中操作),避免在 skill 內容中引導直接 curl 呼叫外部 API。
{
"type": "bubble",
"body": {
"type": "box",
"layout": "vertical",
"contents": [
{ "type": "text", "text": "標題", "weight": "bold", "size": "lg" },
{ "type": "text", "text": "內文描述", "wrap": true },
{
"type": "button",
"style": "primary",
"color": "#1DB446",
"action": {
"type": "message",
"label": "按鈕文字",
"text": "回傳指令"
}
}
]
}
}