Four ClawHub Skills for Real-Time Search Data in AI Agents

Four new skills for the ClawHub platform enable AI agents to perform real-time searches across Google, Amazon, Walmart, and YouTube with structured JSON output.
Available Skills and Features
- Google Skill: Provides web, news, images, and maps search. Returns structured JSON instead of requiring HTML parsing. Includes country and language filters.
- Amazon Skill: Offers product search and ASIN lookup across 12 Amazon marketplaces. Returns price, rating, Prime status, and availability data.
- Walmart Skill: Provides product search with delivery speed and ZIP code filters. Useful for checking same-day or next-day availability.
- YouTube Skill: Includes video search, metadata retrieval, full transcripts, and AI trainability checks. Particularly useful for RAG (Retrieval-Augmented Generation) pipelines.
Installation Commands
Install each skill using the following ClawHub commands:
clawhub install scavio-google
clawhub install scavio-amazon
clawhub install scavio-youtube
clawhub install scavio-walmartAll four skills are covered by a single API key. Documentation for installation and usage is available through the source link.
📖 Read the full source: r/openclaw
👀 See Also

Recall: A Persistent Memory MCP Server for Claude Code
Recall is an open-source MCP server that gives Claude Code persistent memory across sessions via semantic search with embeddings. It includes four lifecycle hooks: session-start, observe, pre-compact, and session-end.

LLMock: HTTP-based mocking server for deterministic LLM testing across processes
LLMock is a real HTTP server that mocks OpenAI, Claude, and Gemini APIs, allowing developers to run deterministic tests across multiple processes without hitting real APIs. It supports SSE streaming, tool calls, predicate routing, and request journaling with zero dependencies.

Chat Saver CG: Browser Extension Built with Claude Exports Conversations Across 12 AI Platforms
A developer built Chat Saver CG, a browser extension that exports and transfers conversations between Claude, ChatGPT, Gemini, and 9 other AI platforms, using Claude extensively for development including architecture decisions, debugging DOM parsing issues, and writing adapter logic.

Mouse: Coordinate-Based Editing Staged Changes and Atomic Rollback for AI Coding Agents
Mouse replaces string-replacement editing with six coordinate-based operations (INSERT, DELETE, ADJUST) plus staged changes with atomic rollback for AI agents.