LobsterBoard adds theme system and template gallery

Theme system implementation
LobsterBoard has added a theme system that provides five visual options. The original dark mode remains the default. Users can switch themes from a dropdown menu while in edit mode, and the system remembers their choice.
- Terminal theme: Green CRT monitor aesthetic
- Paper theme: Warm cream/sepia color scheme
- Feminine light theme: Soft pinks and lavenders
- Feminine dark theme: Dark background with purple accents
Template gallery functionality
The template gallery allows users to export their entire dashboard layout as a template, complete with an auto-captured screenshot preview. Users can browse other templates and import them in two ways:
- Full replacement of existing dashboard
- Merge below existing widgets
The system automatically strips sensitive data including API keys and calendar URLs during export, preventing accidental exposure of credentials like Google Calendar tokens.
📖 Read the full source: r/openclaw
👀 See Also

ClaudeClaw: Free Claude Code Plugin for Persistent AI Agents on Messaging Platforms
ClaudeClaw is a free, open-source MIT-licensed Claude Code plugin that runs Claude as a persistent agent on Slack, WhatsApp, and Telegram. It requires Node.js 20+, Claude Code, and your own Anthropic API key, with OS-level sandbox isolation via Anthropic's sandbox-runtime.

Hybrid search with RRF improves AI memory system over pure vector search
An open-source AI memory system using PostgreSQL with pgvector found pure vector search insufficient for exact matches, so it added full-text search and merged results using Reciprocal Rank Fusion (RRF) with k=60, plus query enrichment via tokenizer.

Obsidian Integration for Persistent Memory in OpenClaw and Claude Code
A Reddit user demonstrates how connecting OpenClaw and Claude Code to an Obsidian vault creates persistent long-term memory across sessions. The setup automatically links memories, context, project files, and notes, with all instances able to access shared memory when needed.

Open-source Specialist Dispatch adapter delegates complex tasks to Claude Code
expert-dispatch is a ~500-line bash script that lets a cheap AI assistant delegate complex coding tasks to Claude Code CLI. It uses commands like dispatch-cc run to send tasks and maintains per-project directories with CLAUDE.md for persistent context.