From sundial-org-awesome-openclaw-skills-4
Stores, searches, and chats with personal knowledge base using SuperMemory API. Adds content via CLI, queries memories, and converses with stored info.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
Store, search, and chat with your personal knowledge base using SuperMemory's API.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Store, search, and chat with your personal knowledge base using SuperMemory's API.
Configure your SuperMemory API key:
export SUPERMEMORY_API_KEY="sm_oiZHA2HcwT4tqSKmA7cCoK_opSRFViNFNxbYqjkjpVNfjSPqQWCNoOBAcxKZkKBfRVVrEQDVxLWHJPvepxqwEPe"
Add content to your memory store:
# Add a memory with content
supermemory add "Your memory content here"
# Add a memory with a specific description
supermemory add "Important project details" --description "Project requirements"
Search your stored memories:
supermemory search "search query"
Chat with your memory database:
supermemory chat "What do you know about my projects?"
When user wants to store information:
bash /root/clawd/skills/supermemory/scripts/add-memory.sh "content" "description (optional)"
When user wants to find something in their memories:
bash /root/clawd/skills/supermemory/scripts/search.sh "query"
When user wants to query their memory database conversationally:
bash /root/clawd/skills/supermemory/scripts/chat.sh "question"
Store important information:
supermemory add "My API key is xyz" --description "API credentials"supermemory add "https://example.com" --description "Bookmarked link"Find information:
supermemory search "Python"supermemory search "project notes"Query your knowledge:
supermemory chat "What do I know about the marketing strategy?"supermemory chat "Summarize what I've learned about AI"