ReMe is a local-first memory management system that turns conversations and other resources into searchable, editable Markdown knowledge shared across AI agents. It is for users and agent runtimes that need durable, interconnected knowledge they can inspect and maintain. The catalogue add-ons connect coding agents and other agents to ReMe through skills, hooks, plugins, MCP, and related interfaces.
Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add agentscope-ai/ReMe --skill serper-searchgit clone --depth 1 https://github.com/agentscope-ai/ReMeWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/agentscope-ai/reme/serper-search)<a href="https://agentmods.dev/skills/agentscope-ai/reme/serper-search"><img src="https://agentmods.dev/badge/skills/agentscope-ai/reme/serper-search/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/agentscope-ai/reme/serper-search"><img src="https://agentmods.dev/badge/skills/agentscope-ai/reme/serper-search.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Data Exfiltration · line 24 Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00053 | $0.00412 |
| Opus 5 | $0.00026 | $0.00206 |
| Sonnet 5 | $0.00011 | $0.00082 |
| Haiku 4.5 | $0.00005 | $0.00041 |
Grade A, and why
serper-search scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s --location "https://google.serper.dev/search" \ What it actually says
Serper Search
Use Serper whenever external web search is needed. Prefer local files and project APIs when they already contain the required information.
Rules
- Do not use the built-in WebSearch tool.
- Do not expose the API key in answers, logs, committed fixtures, or browser/client code.
- Prefer authoritative and primary sources in the returned results.
- Refine the query when freshness, date, company, product, or source type matters.
API
- Endpoint:
POST https://google.serper.dev/search - Auth header:
X-API-KEY: $SERPER_API_KEY - Content type:
application/json - Required body:
{"q":"query text"}
Curl
curl -s --location "https://google.serper.dev/search" \
--header "X-API-KEY: $SERPER_API_KEY" \
--header "Content-Type: application/json" \
--data '{"q":"apple inc"}'
Response Use
- Prefer
organicresults for normal search answers. - Use
searchParametersto confirm the query actually sent. - Treat
creditsas usage accounting. - Verify important claims against the linked source rather than treating snippets as complete evidence.
- Summarize results with source titles and links; do not copy large passages from snippets or pages.
Failure Handling
- If DNS/network fails, report it as an environment/network issue and retry only when external network is available.
- If authentication fails, report that
SERPER_API_KEYis missing or invalid without printing its value. - If results are irrelevant, refine the query with names, dates, locations, or source domains.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 46 lines · 53 tokens per session scan A dfc0042e227a
serper-search is a skill published in the GitHub repository agentscope-ai/ReMe (3,432 stars, last pushed 2d ago), licensed Apache-2.0. It adds 53 tokens to every session and 412 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
browserwing-executor
Control browser automation through HTTP API. Supports page navigation, element interaction (click, type, select), data extraction, accessibility snapshot analysis, screenshot, JavaScript execution, and batch operations.
dev-browser
Browser automation with persistent page state. Use when users ask to navigate websites, fill forms, take screenshots, extract web data, test web apps, or automate browser workflows. Trigger phrases include "go to [url]", "click on", "fill out the form", "take a screenshot", "scrape", "automate", "test the website"…
browserwing-admin
Manage and operate BrowserWing — an intelligent browser automation platform. Install dependencies, configure LLM, create/manage/execute automation scripts, use AI-driven exploration to generate scripts, browse the script marketplace, and troubleshoot issues.
ask-user-question
Ask users questions via the UI. Use when you need clarification, user preferences, or confirmation before proceeding. The user CANNOT see CLI output - this tool is the ONLY way to communicate with them.
memos-memory-guide
Use the MemOS Local memory system to search and use the user's past conversations. Use this skill whenever the user refers to past chats, their own preferences or history, or when you need to answer from prior context. When auto-recall returns nothing (long or unclear user query), generate your own short search query…
wegent-knowledge
Knowledge base management and search tools for Wegent. Provides capabilities to list, create, update, and search knowledge bases and documents using RAG retrieval. Use this skill when the user wants to manage knowledge bases, documents, or search for information programmatically.