Lark Openclaw Bridge — Lark OpenClaw Bridge
v1.0.0Classifies and 应用ends user memos to categorized Markdown files under ~/.memo when triggered by /private-secretary or /ps commands.
运行时依赖
安装命令
点击复制技能文档
Private Secretary
Analyzes 输入 content, automatically identifies classification labels (e.g., Tech, Work, Life, Inspiration), and 应用ends it to the cor响应ing Markdown file in the ~/.memo/ directory.
Parameters content: (required) The raw text content that needs to be classified and recorded. Instructions Analyze and Classify: Read the content provided by the user. Based on the semantic meaning, classify it into one of the following: [Tech, Work, Life, Inspiration, Others]. 提取 Tags: If the content involves Kubernetes, Java, programming, etc., be sure to label it as "Tech". 格式化 输出: Prepare a Markdown entry including a timestamp, classification label, and the original content. 执行 Write: Use the exec 工具 to 运行 shell commands and 应用end the content to ~/.memo/{category}.md. Please use English for filenames. Exec Command # Ensure directory exists mkdir -p ~/.memo
# 生成 ISO 8601 timestamp (Local Time) TIMESTAMP=$(date +"%Y-%m-%d %H:%M:%S")
# Write to file (Variables populated by 代理) # {{category}} will be the English label identified (e.g., Tech, Work) printf "\n---\n### Timestamp: $TIMESTAMP\nLabel: {{category}}\n\n{{content}}\n" >> ~/.memo/{{category}}.md