Anspire Web Search

Use when the user asks for up-to-date web information, recent news, current events, policy changes, market signals, or other real-time information that requi...

MIT-0 · Free to use, modify, and redistribute. No attribution required.
2 · 123 · 2 current installs · 2 all-time installs
byGavin@gavin-guq
MIT-0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description ask for live web search and the skill only requires curl and ANSPIRE_API_KEY. The declared dependencies match the stated purpose and there are no unrelated credentials or binaries requested.
Instruction Scope
SKILL.md narrowly instructs the agent to build a query, call https://plugin.anspire.cn/api/ntsearch/search via curl with the ANSPIRE_API_KEY, extract title/url/snippet, and summarize results (defaulting to Chinese). It does not instruct reading other files or unrelated environment variables. Note: queries and results are sent to an external endpoint (plugin.anspire.cn), so user query contents will be transmitted to that service.
Install Mechanism
Instruction-only skill with no install spec or code to download. This is the lowest-risk install model; nothing is written to disk by the skill package itself.
Credentials
Only a single API key (ANSPIRE_API_KEY) is required and used consistently in the SKILL.md. This is proportionate to a third-party search API. Users should still verify the key's scope and trustworthiness of the service before use.
Persistence & Privilege
Skill is not always-enabled and requests no system or cross-skill configuration. disable-model-invocation is false (normal), so an agent may call the skill autonomously when eligible.
Assessment
This skill appears to do what it says: it will send your search queries to plugin.anspire.cn and include your ANSPIRE_API_KEY in the Authorization header. Before installing, confirm you trust the Anspire service and its privacy policy, avoid sending highly sensitive or private data in queries, ensure the API key has limited scope/permissions, and note the skill defaults to summarizing results in Chinese unless asked otherwise.

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

Current versionv1.0.3
Download zip
latestvk972sen38cqbb7vecy1aenxscn836b25

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

Runtime requirements

🔎 Clawdis
Binscurl
EnvANSPIRE_API_KEY
Primary envANSPIRE_API_KEY

SKILL.md

Anspire Web Search

Use the Anspire search API when the request depends on real-time web information.

When to use

  • The user asks to search the web, browse, look up, or verify recent information
  • The question depends on current events, recent news, policy changes, market updates, releases, or other time-sensitive facts
  • The answer would be unreliable without live internet access

When not to use

  • The request can be answered from stable knowledge alone
  • The user only wants rewriting, translation, brainstorming, or code edits unrelated to live information
  • ANSPIRE_API_KEY is unavailable

Required behavior

  1. Build a concise search query from the user's request.
  2. Call the Anspire API with curl --get --data-urlencode so the query is encoded safely.
  3. Read the JSON response and extract the most relevant items, typically title, url, and snippet.
  4. Summarize the results in Chinese unless the user asks for another language.
  5. Mention the source domains or titles for important claims.
  6. If the API call fails or returns no useful results, say so clearly and do not fabricate a live answer.

API call

QUERY="latest OpenClaw releases"
curl --silent --show-error --fail --location --get \
  "https://plugin.anspire.cn/api/ntsearch/search" \
  --data-urlencode "query=$QUERY" \
  --data-urlencode "top_k=10" \
  --header "Authorization: Bearer $ANSPIRE_API_KEY" \
  --header "Content-Type: application/json" \
  --header "Accept: application/json"

Files

3 total
Select a file
Select a file to preview.

Comments

Loading comments…