SKILLEMALL.ai

DF star-search

Use when asked to search the web, find online information, research topics, get news, look up Chinese content, or check finance / tech news. **v20.42 - LangChain + Dify + 5 分钟安装体验**: 新增 LangChain Tool 适配器 (`integrations/langchain/star_search_tool.py`) + Dify plugin (`integrations/dify/manifest.yaml`), 一键安装脚本 `install.sh`, `.env.example` 模板, 5 分钟快速开始. **v20.41 基础**: English coverage + open scholarly sources (pure-English queries auto-route to Bing HTTP backend; OpenAlex + CrossRef merge). 16 plus engines, intent understanding, observable per-call metrics. The public service exposes standard MCP (4 tools) plus JSON-RPC and SSE. v20 series highlights: sub-second SSE streaming, multi-turn dialog, 4 output formats, Prometheus monitoring, semantic search, AI orchestration layer (intent classification, entity card, cross-source verification), bot-protection workarounds, and a 4-stage end-to-end pipeline that defaults to LLM answer + auto-fetched snippets. 16 plus engines, intent understanding, and observable per-call metrics.

Not recommendedlow grade D
ClawHub Hermes author: muchenhengxin v20.42.1 MIT-0 50 files · 1 script body ≈ 5 975 tokens Open the sourceclawhub.ai analyzed 3 d ago

As a process F 35/100 · Will not run — References files that are not bundled: references/cloudflare-bot-protection.md, scripts/test_intent_108.py, references/v20-40-intent-strat-rule-pitfalls.md

ProcedureInfrastructureAI and agentsData and analyticstype and topics are labelled automatically from the skill text
JSON
Technical rating
D
40/100
safety, quality, tests
Safety 60%
52
Quality 40%
22
Run on models
none yet
Process rating
F
35/100
Will not run
References files that are not bundled: references/cloudflare-bot-protection.md, scripts/test_intent_108.py, references/v20-40-intent-strat-rule-pitfalls.md
Tools and files w 18
0
Result and completion w 14
0
Inputs and preconditions w 11
0
the three weakest of ten parameters · all ten

What is at stake

Medium-severity findings: the skill is probably honest, but read what alarmed the scanner.

Dangerous commands medium severity

Below is the worst case for this category. The finding here is medium: the guard saw a sign, not a proof.

If you install

The skill contains commands that delete files, rewrite disks or execute code fetched from the network. The agent may run them without asking if it believes the instructions require it.

For the author

Replace destructive commands with safe equivalents that ask for confirmation, scope them to one folder, and stop piping curl into a shell: pin a version and a checksum.

Exfiltration medium severity

Below is the worst case for this category. The finding here is medium: the guard saw a sign, not a proof.

If you install

The instructions or scripts send data out: environment variables, keys, file contents, chat history. You may never notice, because the agent performs the upload as "part of the task".

For the author

If the upload is not needed for the task, remove it: catalogs flag such skills and delist them. If it is needed, name the destination explicitly, say what leaves the machine, and give the user a switch.

How to improve

  1. Shorten the description to 1024 characters.
  2. For Hermes the description must be one sentence under 60 characters; move the conditions to a "When to Use" section.
  3. The SKILL.md body is over 5,000 tokens: move reference detail into references/ and load it when needed.
  4. The text references files that are not there: add them or drop the references.
For the model run — optional
  • Your own cases (evals/evals.json, 4–6 real requests with expected answers): the full check would then run those instead of a model-drafted suite.
  • A spec.yaml with trigger phrases and assertions — a behaviour contract for CI; `skilltest init` writes a template.

Guard findings · 16

✓ No critical or high findings

Medium and low: 16
  • medium Dangerous commands cmd-privilege install.sh:70
    Privilege escalation / world-writable permissions
    sudo cp deploy/star-search.service /etc/systemd/system/
  • medium Exfiltration net-redirectable-api-key scripts/answer.py:60
    Helper sends the API key to a host configured by an environment variable — the key can be redirected to another server
    API key + configurable base URL from environment
  • medium Exfiltration net-redirectable-api-key scripts/deep_research.py:16
    Helper sends the API key to a host configured by an environment variable — the key can be redirected to another server
    API key + configurable base URL from environment
  • medium Exfiltration net-redirectable-api-key scripts/discover.py:143
    Helper sends the API key to a host configured by an environment variable — the key can be redirected to another server
    API key + configurable base URL from environment
  • medium Exfiltration net-redirectable-api-key scripts/entity_card.py:23
    Helper sends the API key to a host configured by an environment variable — the key can be redirected to another server
    API key + configurable base URL from environment
  • medium Exfiltration net-redirectable-api-key scripts/query_rewrite.py:17
    Helper sends the API key to a host configured by an environment variable — the key can be redirected to another server
    API key + configurable base URL from environment
  • medium Exfiltration net-redirectable-api-key scripts/super_brain.py:21
    Helper sends the API key to a host configured by an environment variable — the key can be redirected to another server
    API key + configurable base URL from environment
  • medium Dangerous commands cmd-privilege SKILL.md:347
    Privilege escalation / world-writable permissions
    # 推荐: 把 server 文件属主改成 ubuntu 用户 (sudo chown -R ubuntu:ubuntu <install-dir>),
  • low Exfiltration read-dotenv install.sh:35
    Reads a .env file
    cp .env.example .env
  • low Dangerous commands cmd-background-process install.sh:72
    Starts a background / autostarted process
    sudo systemctl enable star-search
  • low Dangerous commands cmd-privilege scripts/search.py:103
    Privilege escalation / world-writable permissions (string literal in code, not executed)
    '--no-sandbox', '--disable-setuid-sandbox',
    code literal
  • low Secrets in code secret-labelled-token scripts/verify.py:6
    Labelled token / key literal (vendor format unknown — verify it is not a live credential) (quoted — discussed, not commanded)
    - 测试 secret_key: 1x00…0AA (始终通过)
    quoted
  • low Secrets in code secret-high-entropy-token scripts/verify.py:6
    High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)
    - 测试 secret_key: 1x00…0AA (始终通过)
    quoted
  • low Secrets in code secret-password-literal scripts/verify.py:6
    Hard-coded password / key literal (may be an example) (quoted — discussed, not commanded)
    - 测试 secret_key: 1x00…0AA (始终通过)
    quoted
  • low Secrets in code secret-high-entropy-token scripts/verify.py:19
    High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)
    TURNSTILE_SECRET_KEY = os.environ.get('TURNSTILE_SECRET_KEY', '1x00…0AA')
    quoted
  • low Dangerous commands cmd-privilege SKILL_EN.md:413
    Privilege escalation / world-writable permissions (quoted — discussed, not commanded)
    - **docker container mount data dir**: `user:"0"` + `chmod 777` solve mmap permissions
    quoted

Files scanned: 50. Evidence is masked. Grey chips explain why severity was lowered.

Against the Agent Skills spec

  • error description-long description is 1034 chars, limit 1024
  • warning description-long-hermes description is 1034 chars; the Hermes authoring standard requires ≤ 60 (one sentence, ending with a period)
  • warning body-long SKILL.md body ≈ 5975 tokens (recommended < 5000); move details to references/
  • warning missing-ref reference to a missing file: references/cloudflare-bot-protection.md
  • warning missing-ref reference to a missing file: scripts/test_intent_108.py
  • warning missing-ref reference to a missing file: references/v20-40-intent-strat-rule-pitfalls.md

Process rating: all ten parameters 35/100

Will not run. References files that are not bundled: references/cloudflare-bot-protection.md, scripts/test_intent_108.py, references/v20-40-intent-strat-rule-pitfalls.md
  • 0Tools and files. 3 referenced file(s) missing: references/cloudflare-bot-protection.md, scripts/test_intent_108.py, references/v20-40-intent-strat-rule-pitfalls.md
  • 0Result and completion. Does not say what the result is
  • 0Inputs and preconditions. Does not say what the process needs to start
  • 20When it triggers. No condition that starts the skill
  • 30Running it twice. 1 mutating operations with no state check
  • 50Failures and branches. 0 branches, has a failure section
  • 60Consistency. The Hermes dialect needs category and tags
  • 70Execution cost. Instruction body is 5975 tokens
  • 100Steps. 117 steps
  • 100Progress reporting. Reports progress
  • low 13 top-level sections: this looks like several domains in one skill
  • low The response is described with custom markup (13 tags): a typed call is more reliable

Everything here is measured from the skill text rather than judged by a model, so the numbers are checkable. A parameter weighs more when it is a more common reason for the process to stall.

Quality signals

  • +5Description has no quoted example phrases that should trigger the skill
  • +4Description does not say when NOT to use the skill (false activations)
  • +3Description length 1034: 120–800 characters recommended
  • +3Output format is not stated: the model decides each time
  • -47 reference files, but SKILL.md never points to them: the model will not open them
  • -317 of 27 scripts are never mentioned in SKILL.md
  • +2Single-language instructions
  • +4Structure: 52 headings
  • +3Step-by-step instructions: 117 items
  • +4Has examples (8 code blocks)
  • +1License stated

Quality base 70; lint remarks subtract, signals add up to 100. Result: 22.

External checks

ClawHub: suspicious
This is a real search tool, but it bundles unsafe account, payment, credential, upload, and broad web-fetching behavior that needs careful review before installation.
LLM: suspicious (high) · 10 Sept 2026