Langsearch

PassAudited by ClawScan on May 1, 2026.

Overview

Langsearch appears to be a coherent web search and reranking API skill, with expected considerations around using a LangSearch API key and sending search or reranking inputs to the LangSearch service.

This skill looks reasonable for web search and reranking. Before installing, confirm you trust LangSearch with the queries or documents you send, keep the API key protected, and treat returned web content as untrusted information rather than instructions.

Findings (4)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

The skill can make requests under your LangSearch account or quota when invoked.

Why it was flagged

The script uses a LangSearch API key from the environment and sends it as a bearer token to the LangSearch API, which is expected for this integration.

Skill content
api_key = os.getenv("LANGSEARCH_API_KEY") ... "Authorization": f"Bearer {api_key}"
Recommendation

Use a dedicated LangSearch API key if possible, keep it out of source control, and rotate it if it is exposed.

What this means

Sensitive search queries, and any documents used with the reranking API, may be visible to the external provider.

Why it was flagged

User-provided search queries are sent to the external LangSearch API endpoint; this is purpose-aligned but means query contents leave the local environment.

Skill content
payload = {"query": query, "count": min(count, 100), "summary": include_summary} ... requests.post(url, headers=headers, json=payload, timeout=30)
Recommendation

Avoid sending secrets, private documents, or regulated data as search/reranking inputs unless LangSearch’s data-handling terms are acceptable.

What this means

Web results or summaries could contain inaccurate content or prompt-like text that should not be treated as trusted instructions.

Why it was flagged

The skill is intended to feed retrieved web content into LLM/RAG workflows, where untrusted web text can influence model context.

Skill content
Includes integration examples for building RAG (Retrieval-Augmented Generation) pipelines and LLM applications that require real-world context.
Recommendation

Use retrieved results as evidence to verify, not as authority; keep source attribution and avoid letting web content override user or system instructions.

What this means

Users have less registry-level provenance information for confirming that the skill is associated with the LangSearch service.

Why it was flagged

The registry metadata lacks a populated source or homepage even though the skill describes an external service integration.

Skill content
Source: unknown; Homepage: none
Recommendation

Verify the API endpoint and key signup URL independently before entering credentials.