Qryma Search

Qryma AI Search retrieves Web information and returns LLM-friendly data. Get started for free, just sign up.

MIT-0 · Free to use, modify, and redistribute. No attribution required.
1 · 115 · 0 current installs · 0 all-time installs
MIT-0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (web search) match the actual behavior: the script issues POST requests to a Qryma search endpoint and formats results. Required binary (python) and primary env var (QRYMA_API_KEY) are proportional to this purpose.
Instruction Scope
SKILL.md and the script are consistent about where the API key may come from (env var or ~/.qryma/.env / .env) and available options. The script also honors an optional QRYMA_ENDPOINT env var (documented in the README), which is not listed among the required env vars in metadata — this is reasonable but worth noting.
Install Mechanism
No install spec; this is an instruction-only skill with a single small Python script. Nothing is downloaded or written by an installer, so install risk is low.
Credentials
Only a single service credential (QRYMA_API_KEY) is required, matching the functionality. The script may read QRYMA_ENDPOINT from env or config for an alternate endpoint (optional). There are no unrelated secrets or broad system credentials requested.
Persistence & Privilege
The skill does not request always:true or modify other skills or system-wide settings. It runs as a normal, user-invocable skill and requires an explicit API key to operate.
Assessment
This skill is internally coherent: it needs a QRYMA_API_KEY and sends search queries to Qryma's API (default endpoint https://search.qryma.com/api/web). Before installing, verify you trust qryma.com and their privacy policy because search queries (and the API key in request headers) will be sent to that endpoint. Do not paste your real API key into chat with the assistant; configure the key via environment variable or the ~/.qryma/.env file as advised. If you want extra caution, create a restricted/ephemeral API key on Qryma (if supported), monitor usage, and rotate the key if you stop using the skill. If you require the skill to use a different endpoint, note it accepts QRYMA_ENDPOINT (documented) — only set that to a trusted URL.

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

Current versionv1.1.9
Download zip
latestvk97e0xsr50kmm25wgwmtsbq38n83n47v

License

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

Runtime requirements

🔍 Clawdis
Binspython
EnvQRYMA_API_KEY
Primary envQRYMA_API_KEY

SKILL.md

Qryma Search

Qryma AI Web Search SKILL, The World's Fastest and Cheapest Search API for LLM and AI Agents.

Search the web using the Qryma API - fast, reliable, and built for developers.

Start free now. Get your free key now qryma.com.

Setup

Authenticate

Get your free QRYMA_API_KEY from qryma.com. Chat with your AI assistant and ask it to help you complete the configuration.

Please configure qryma search with the QRYMA_API_KEY set to ak-your-api-key-here.

从 qryma.com 获取免费的 QRYMA_API_KEY,直接发送给你的 AI 助手,让他帮你自动配置。

请帮我配置好 qryma search,设置 QRYMA_API_KEY 为 ak-your-api-key-here

Manual Configuration

First, configure your API key. Choose one of these methods:

Option 1 - Environment Variable

Linux/macOS:

export QRYMA_API_KEY="your-key-here"

Windows (PowerShell):

$env:QRYMA_API_KEY="your-key-here"

Option 2 - Config File

Create ~/.qryma/.env with:

QRYMA_API_KEY=your-key-here

Quick Start

# Default: human-readable Markdown
python scripts/qryma_search.py --query "how to learn Python" --format md

# With specific language
python scripts/qryma_search.py --query "Python编程学习" --lang "zh-CN" --format md

# Safe search enabled
python scripts/qryma_search.py --query "adult content" --safe --format md

# Detailed results
python scripts/qryma_search.py --query "AI research" --detail --format raw

# Brave-compatible JSON
python scripts/qryma_search.py --query "latest AI news" --format brave

# Raw API response
python scripts/qryma_search.py --query "top tech trends" --format raw

Options

  • --api-key (string): Qryma API key

  • --query (string, required): Search query text

  • --max-results (number, default: 5): Results to return (1-10)

  • --lang (string, default: "en"): Language code - See available languages

  • --start (number, default: 0): Start offset for pagination

  • --safe (flag, default: false): Enable safe search

  • --detail (flag, default: false): Enable detailed results

  • --format (raw/brave/md, default: md): Output format

Output Formats

md (default)

Clean, readable Markdown list:

1. Page Title Here
   https://example.com/page
   - Brief snippet from the page...

brave

Brave Search compatible JSON for easy integration:

{
  "query": "search term",
  "results": [{"title": "...", "url": "...", "snippet": "..."}]
}

raw

Full API response with all available fields.

Best Practices

  • Use --max-results 3-5 for most queries

  • Prefer --format md for human consumption

  • Use --format brave when integrating with other tools

  • Use --safe for family-friendly content

  • Use --lang to search in specific languages

Advanced Configuration

  • Custom endpoint: Set QRYMA_ENDPOINT env var or config line

  • Default endpoint: https://search.qryma.com/api/web

Files

2 total
Select a file
Select a file to preview.

Comments

Loading comments…