From lobu-ai-lobu
Installs and configures Owletto for AI agents like Claude, ChatGPT, Cursor, Gemini; manages persistent memory, knowledge graphs, watchers via MCP tools.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-agent-framework --plugin lobu-ai-lobuThis skill uses the workspace's default tool permissions.
Use this skill when a user wants to connect an agent to Owletto, use Owletto as persistent memory, or operate the Owletto knowledge graph and watcher system safely.
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.
Use this skill when a user wants to connect an agent to Owletto, use Owletto as persistent memory, or operate the Owletto knowledge graph and watcher system safely.
--device flag for device code login, then call MCP tools via the CLI.owletto.com unless the user explicitly asked for that hosted instance.Your long-term memory is powered by Owletto. Do NOT use local files (memory/, MEMORY.md) for memory.
Start the local Owletto runtime first:
owletto start
Then run the interactive wizard:
owletto init
The wizard detects installed agents, authenticates, and configures supported local clients directly. For browser-managed clients it opens the install handoff or shows the required settings steps. Choose the MCP endpoint your agents should use: Cloud, local runtime, or a custom URL.
For manual per-client setup, see references/client-install.md. If the client cannot do browser OAuth (headless/CI), use device code login from references/cli-fallback.md. After installation, validate connectivity with a read-only operation before doing mutations.
The CLI stores one session per org. Set the default org after login:
owletto org set <slug> # Set default org for CLI commands
owletto org current # Show current org
Override per-command with --org <slug> or OWLETTO_ORG env var. For multi-server setups, use --url or OWLETTO_URL to target a different server.
search_knowledge first when the user asks about a specific entity or workspace memory.read_knowledge to retrieve saved content or watcher execution inputs. Supports semantic search via query parameter — finds content by meaning, not just keywords.save_knowledge to persist durable memory. To update an existing fact, pass supersedes_event_id with the old event ID — the old event is hidden from future searches. Always search first to avoid duplicates.manage_entity and manage_connections for graph and integration changes.get_watcher and manage_watchers for watcher inspection and execution workflows.See references/tool-workflows.md for the canonical patterns and example calls.
If the task is specifically OpenClaw plugin installation or reconfiguration, use owletto-openclaw for the setup steps and use this skill for general Owletto operation.