Install
openclaw skills install memo-assistantClassifies and appends user memos to categorized Markdown files under ~/.memo when triggered by /private-secretary or /ps commands.
openclaw skills install memo-assistantAnalyzes input content, automatically identifies classification labels (e.g., Tech, Work, Life, Inspiration), and appends it to the corresponding Markdown file in the ~/.memo/ directory.
content: (required) The raw text content that needs to be classified and recorded.content provided by the user. Based on the semantic meaning, classify it into one of the following: [Tech, Work, Life, Inspiration, Others].exec tool to run shell commands and append the content to ~/.memo/{category}.md. Please use English for filenames.# Ensure directory exists
mkdir -p ~/.memo
# Generate ISO 8601 timestamp (Local Time)
TIMESTAMP=$(date +"%Y-%m-%d %H:%M:%S")
# Write to file (Variables populated by Agent)
# {{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