← 返回 Skills 市场
zhouzhonglu8-png

alphaear-search

作者 zhouzhonglu8-png · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
131
总下载
0
收藏
3
当前安装
1
版本数
在 OpenClaw 中安装
/install alphaear-search
功能描述
Perform finance web searches and local context searches. Use when the user needs general finance info from the web (Jina/DDG/Baidu) or needs to retrieve fina...
使用说明 (SKILL.md)

AlphaEar Search Skill

Overview

Unified search capabilities: web search (Jina/DDG/Baidu) and local RAG search.

Capabilities

1. Web Search

Use scripts/search_tools.py via SearchTools.

  • Search: search(query, engine, max_results)
    • Engines: jina, ddg, baidu, local.
    • Returns: JSON string (summary) or List[Dict] (via search_list).
  • Smart Cache (Agentic): If you want to avoid redundant searches, use the Search Cache Relevance Prompt in references/PROMPTS.md. Read the cache first and decide if it's usable.
  • Aggregate: aggregate_search(query)
    • Combines results from multiple engines.

2. Local RAG

Use scripts/hybrid_search.py or SearchTools with engine='local'.

  • Search: Searches local daily_news database.

Dependencies

  • duckduckgo-search, requests
  • scripts/database_manager.py (search cache & local news)
安全使用建议
This skill's code does more than a minimal web search helper: it will perform outbound network requests, may call external LLM providers if API keys exist in your environment, can download transformer/embedding models, and will create a local SQLite database. Before installing or enabling it: - Review and restrict environment variables: do not place high-privilege API keys (cloud credentials, wide-scope LLM keys) in the environment unless you trust the code. Prefer using a dedicated, limited-scope key if needed. - Run in an isolated environment (container/VM) to observe network activity and file writes (the skill writes data/signal_flux.db by default). - If you only need basic web search, ask the author to produce a trimmed build that omits LLM/sentiment/model-router code or to explicitly document all required env vars and Python dependencies. - Be aware of large model downloads (transformers / SentenceTransformer) which may occur at runtime and consume bandwidth/storage. - If you need extra assurance, request from the publisher: (1) an explicit dependency list or install script, (2) a list of environment variables the skill will read/use, and (3) confirmation of no hidden external endpoints. Given the metadata omits the environment/dependency footprint, treat this skill as suspicious until those gaps are clarified.
功能分析
Type: OpenClaw Skill Name: alphaear-search Version: 1.0.0 The alphaear-search skill bundle is a comprehensive search and Retrieval-Augmented Generation (RAG) toolset designed for financial information retrieval. It integrates multiple search engines (Jina, DuckDuckGo, Baidu), implements a local SQLite-based caching system in `database_manager.py`, and provides hybrid search capabilities (BM25 and vector-based) in `hybrid_search.py`. The code includes legitimate utility functions for content extraction via Jina Reader (`content_extractor.py`) and sentiment analysis using BERT or LLMs (`sentiment_tools.py`). No evidence of data exfiltration, malicious execution, or harmful prompt injection was found; the instructions in `SKILL.md` and `PROMPTS.md` are strictly aligned with the stated purpose of optimizing search efficiency and information retrieval.
能力评估
Purpose & Capability
Name/description (finance web + local RAG search) is broadly consistent with the code: SearchTools, Jina/DDG/Baidu adapters, and Local RAG exist. However the package also contains sentiment analysis, an LLM factory/router, and model capability tests that go beyond a minimal search helper. Those extra capabilities are plausible for a finance search product (sentiment scoring, LLM-driven summarization), but they increase the runtime footprint and credential needs compared to what's declared in the metadata and SKILL.md.
Instruction Scope
SKILL.md instructs using SearchTools for web/local search but does not mention that runtime code will: perform outbound HTTP requests to multiple external services (Jina, search engines), read many environment variables (various LLM provider keys, JINA_API_KEY, EMBEDDING_MODEL, SEARCH_CACHE_TTL, etc.), download large ML models (transformers / SentenceTransformer when BERT/vector modes are used), and write a local SQLite DB (default path data/signal_flux.db). The instructions do not enumerate those side-effects or the extra modules (sentiment, LLM routing) that may trigger network calls or model downloads.
Install Mechanism
There is no install spec (instruction-only in registry), but the skill bundle includes many Python source files requiring heavy third-party packages (sentence_transformers, transformers, sklearn, rank_bm25, agno.*, duckduckgo-search, etc.). The absence of an install script or declared dependencies means runtime may fail or implicitly perform network downloads (Hugging Face model pulls). This is not an outright malicious install vector, but it's a practical risk and an inconsistency with registry metadata.
Credentials
Registry lists no required env vars, yet the code reads many secrets and config variables (e.g., JINA_API_KEY, UST_KEY_API, DEEPSEEK_API_KEY, DASHSCOPE_API_KEY, OPENROUTER_API_KEY, ZAI_KEY_API, UST_URL, EMBEDDING_MODEL, BERT_SENTIMENT_MODEL, SENTIMENT_MODE, SEARCH_CACHE_TTL). Some are relevant for optional backends, but their presence is not documented in SKILL.md or metadata. That mismatch is a red flag: the skill can use any API key present in the environment to call external LLMs or services.
Persistence & Privilege
The skill does not request always:true and does not modify other skills. It creates and writes a local SQLite DB (default data/signal_flux.db) and persists cached search results and daily_news entries; that is expected for a search/cache capability but should be disclosed. Autonomous invocation (disable-model-invocation=false) is the platform default and not by itself a concern.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install alphaear-search
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /alphaear-search 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
AlphaEar Search Skill v1.0.0 - Introduces unified search for finance information via web (Jina, DDG, Baidu) and local document retrieval (RAG). - Supports engine selection for queries: web engines or local database. - Includes smart cache checking to avoid redundant searches. - Aggregates search results from multiple engines if needed. - Requires dependencies: duckduckgo-search, requests, and local script/database management.
元数据
Slug alphaear-search
版本 1.0.0
许可证 MIT-0
累计安装 3
当前安装数 3
历史版本数 1
常见问题

alphaear-search 是什么?

Perform finance web searches and local context searches. Use when the user needs general finance info from the web (Jina/DDG/Baidu) or needs to retrieve fina... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 131 次。

如何安装 alphaear-search?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install alphaear-search」即可一键安装,无需额外配置。

alphaear-search 是免费的吗?

是的,alphaear-search 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

alphaear-search 支持哪些平台?

alphaear-search 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 alphaear-search?

由 zhouzhonglu8-png(@zhouzhonglu8-png)开发并维护,当前版本 v1.0.0。

💬 留言讨论