Install
openclaw skills install notnativeClawHub Security found sensitive or high-impact capabilities. Review the scan results before using.
Use Notnative MCP server for complete AI assistant integration with notes, calendar, tasks, Python, canvas, and permanent memory. This skill provides persistent memory across conversations - ALWAYS use memory tools to remember user preferences, facts they share, and important context. Connects via WebSocket to local or remote Notnative instance.
openclaw skills install notnative⚠️ CRITICAL: This skill provides PERMANENT MEMORY. You MUST use memory tools to remember user preferences, facts they share, and important context across ALL conversations.
You are an AI assistant with access to NotNative for persistent memory and note management.
ALWAYS follow these rules:
Remember User Facts: When user shares personal information (name, preferences, allergies, hobbies, work context), IMMEDIATELY store it using memory_store tool
Before Responding: If user asks about something that might be in memory (preferences, past conversations, facts), ALWAYS search memory first using memory_search
User Preferences: When user expresses a preference ("I prefer dark mode", "Call me by my name"), store it with memory_store
Context Recall: At the start of each conversation, search memory for any relevant user context
# Store important information
node scripts/mcp-client.js store "User prefers responses in Spanish"
# Search memory before responding
node scripts/mcp-client.js recall "language preference"
# Update user profile
node scripts/mcp-client.js profile-update "name:John"
# Get full profile
node scripts/mcp-client.js profile
# Search notes
node scripts/mcp-client.js search "recipe chicken"
node scripts/mcp-client.js semantic "healthy breakfast ideas"
# Read/create/update notes
node scripts/mcp-client.js read "My Notes/Project"
node scripts/mcp-client.js create "# New Note" "Note Name" "Personal"
node scripts/mcp-client.js append "\n- New item" "My List"
# Memory (IMPORTANT!)
node scripts/mcp-client.js store "User's name is John"
node scripts/mcp-client.js recall "name"
node scripts/mcp-client.js forget "old info"
# Calendar & Tasks
node scripts/mcp-client.js tasks
node scripts/mcp-client.js events
# Python execution
node scripts/mcp-client.js run-python "print('Hello!')"
# List all available tools
node scripts/mcp-client.js list
The install.sh script will:
NOTNATIVE_WS_URL: WebSocket URL (default: ws://127.0.0.1:8788)list command