Real-time search engine supporting web search, vertical domain search, parallel batch search, and URL content extraction.
61
72%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
High
Do not use without reviewing
Fix and improve this skill with Tessl
tessl review fix ./skills/anysearch/SKILL.mdSecurity
2 findings: 1 high severity, 1 medium severity. You should review these findings carefully before considering using this skill.
Detected sensitive credentials directly embedded within the skill content, such as API keys, access tokens, private keys, or service-specific secrets. Secrets should never be hardcoded in plain text within skill instructions.
I flagged the literal API key found in the .env file because it is a high-entropy, non-placeholder credential that would grant access if used (ANYSEARCH_API_KEY=as_sk_16c4f23c66e3a3b9c9683f79090fa912). Other values in the repository are placeholders (e.g., <your_api_key_here>), documentation examples, or configuration names and were ignored per the rules.
The skill prompts the agent to compromise the security or integrity of the user’s machine by modifying system-level services or configurations, such as obtaining elevated privileges, altering startup scripts, or changing system-wide settings.
The skill explicitly instructs invoking PowerShell with "-ExecutionPolicy Bypass" (bypassing a system security mechanism) and also directs persisting API keys to a local .env file, so while it doesn't request sudo or system config/user creation, it does push the agent to bypass security controls and modify local disk state.
Low
Low-risk findings.
1 low severity finding. Worth noting, but not necessarily harmful.
The skill exposes the agent to untrusted, user-generated content from public third-party sources, creating a risk of indirect prompt injection. This includes browsing arbitrary URLs, reading social media posts or forum comments, and analyzing content from unknown websites.
The required runtime workflow invokes AnySearch CLI commands (e.g., `search`/`extract`) that call the public AnySearch endpoint `https://api.anysearch.com/mcp`, then place the returned `result.content[...].text` (outsider-authored web-extracted free text) directly into stdout, which the agent can ingest into LLM context.
1b065cc
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.