Brave Search

v0.1.0

Auto-generated skill for brave-search tools via OneKey Gateway.

0· 149·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for ai-hub-admin/brave-search-onekey-gating.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Brave Search" (ai-hub-admin/brave-search-onekey-gating) from ClawHub.
Skill page: https://clawhub.ai/ai-hub-admin/brave-search-onekey-gating
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install brave-search-onekey-gating

ClawHub CLI

Package manager switcher

npx clawhub@latest install brave-search-onekey-gating
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
The name/description (Brave Search via OneKey Gateway) matches the implementation: two small Python scripts that call OneKeyAgentRouter.invoke with api_id values 'brave_web_search' and 'brave_local_search'. Required packages (onekey gateway client and ai-agent-marketplace) align with the described gateway integration.
Instruction Scope
The SKILL.md and the scripts limit actions to reading JSON input (from CLI argument or file), validating a 'query' field, and forwarding that payload to the OneKey Gateway. The scripts do not access other system files, environment variables beyond the gateway key, or contact arbitrary endpoints themselves (networking is via the OneKey client).
Install Mechanism
There is no registry-level install spec, but SKILL.md instructs installing npm package '@aiagenta2z/onekey-gateway' and Python package 'ai-agent-marketplace' from standard registries. This is a typical, moderate-risk approach (packages come from public registries). It's odd that the registry metadata said 'no install spec' while SKILL.md contains install instructions.
Credentials
The skill requires a single env var DEEPNLP_ONEKEY_ROUTER_ACCESS (OneKey Gateway API key), which is proportionate for a gateway-based search wrapper. Two points to note: (1) registry metadata earlier listed 'no required env vars' which conflicts with SKILL.md, and (2) both scripts fall back to a demo key ('BETA_TEST_KEY_MARCH_2026') if the env var is absent — that means queries may be routed through the maintainer's/demo service if you don't provide your own key.
Persistence & Privilege
The skill does not request always:true, does not modify other skill configs, and has no special config path or system privileges. It is user-invocable and can be invoked autonomously by the model per platform defaults, which is expected for skills.
Assessment
This skill is a simple wrapper that sends your JSON payloads to the OneKey Gateway (brave_web_search or brave_local_search). Before installing: (1) confirm you trust the OneKey provider (deepnlp/aiagenta names shown) because queries and results transit their service; do not send sensitive secrets or private data through the skill; (2) prefer to set your own DEEPNLP_ONEKEY_ROUTER_ACCESS key rather than using the demo fallback key (demo usage routes traffic through the provider/demo account); (3) verify the referenced packages (@aiagenta2z/onekey-gateway and ai-agent-marketplace) come from the official projects you expect (check their repos) before pip/npm install; (4) be aware of the small manifest inconsistencies (registry metadata vs SKILL.md) — likely packaging sloppiness but worth noting. If you want stronger assurance, ask the publisher for repository/homepage and the provenance of the pip/npm packages.

Like a lobster shell, security has layers — review code before you run it.

latestvk97eg70jhmqbfj4smsbe02wwx983dh46
149downloads
0stars
1versions
Updated 1mo ago
v0.1.0
MIT-0

OneKey Gateway

Use One Access Key to connect to various commercial APIs. Please visit the OneKey Gateway Keys and read the docs OneKey MCP Router Doc and OneKey Gateway Doc.

brave-search Skill

Use the OneKey Gateway to access tools for this server via a unified access key.

Quick Start

Set your OneKey access key:

export DEEPNLP_ONEKEY_ROUTER_ACCESS=YOUR_API_KEY

If no key is provided, the scripts fall back to the demo key BETA_TEST_KEY_MARCH_2026. Common settings:

  • unique_id: brave-search/brave-search
  • api_id: one of the tools listed below ``## Tools

brave_web_search

Performs a web search using the Brave Search API, ideal for general queries, news, articles, and online content. Use this for broad information gathering, recent events, or when you need diverse web sources. Supports pagination, content filtering, and freshness controls. Maximum 20 results per request, with offset for pagination.

``Parameters:

  • query (string, required): Search query (max 400 chars, 50 words)
  • count (number, optional): Number of results (1-20, default 10)
  • offset (number, optional): Pagination offset (max 9, default 0)

brave_local_search

Searches for local businesses and places using Brave's Local Search API. Best for queries related to physical locations, businesses, restaurants, services, etc. Returns detailed information including:

  • Business names and addresses
  • Ratings and review counts
  • Phone numbers and opening hours Use this when the query implies 'near me' or mentions specific locations. Automatically falls back to web search if no local results are found.

Parameters:

  • query (string, required): Local search query (e.g. 'pizza near Central Park')
  • count (number, optional): Number of results (1-20, default 5)

Usage

CLI

brave_web_search

npx onekey agent brave-search/brave-search brave_web_search '{"query": "latest AI research 2026"}'

brave_local_search

npx onekey agent brave-search/brave-search brave_local_search '{"query": "coffee near Times Square"}'

Scripts

Each tool has a dedicated script in this folder:

  • skills/brave-search/scripts/brave_web_search.py
  • skills/brave-search/scripts/brave_local_search.py

Example

python3 scripts/<tool_name>.py --data '{"key": "value"}'

Related DeepNLP OneKey Gateway Documents

AI Agent Marketplace
Skills Marketplace AI Agent A2Z Deployment
PH AI Agent A2Z Infra
GitHub AI Agent Marketplace

Dependencies

CLI Dependency

Install onekey-gateway from npm

npm install @aiagenta2z/onekey-gateway

Script Dependency

Install the required Python package before running any scripts.

pip install ai-agent-marketplace

Alternatively, install dependencies from the requirements file:

pip install -r requirements.txt

If the package is already installed, skip installation.

Agent rule

Before executing command lines or running any script in the scripts/ directory, ensure the dependencies are installed. Use the onekey CLI as the preferred method to run the skills.

Comments

Loading comments...