qry-search

qry-search is a skill for Claude Code, Codex from justEstif/qry. It costs 110 tokens per session (591 once invoked), scanned A, original, MIT.

A web-search skill that uses the terminal tool qry and returns results as JSON.

In plain words
What is it for?
Use it to look up documentation, APIs, error messages, packages, changelogs, and other current information.
Why use it?
It provides a consistent, machine-readable way to find current web information without manually opening search pages.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to look up documentation, APIs, error messages, packages, changelogs, and other current information.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/justestif/qry/qry-search
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add justEstif/qry --skill qry-search
Clone the repo
git clone --depth 1 https://github.com/justEstif/qry

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for qry-search

README.md
[![agentmods](https://agentmods.dev/badge/skills/justestif/qry/qry-search/github.svg)](https://agentmods.dev/skills/justestif/qry/qry-search)
Your own site
<a href="https://agentmods.dev/skills/justestif/qry/qry-search"><img src="https://agentmods.dev/badge/skills/justestif/qry/qry-search/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for qry-search

Your own site · 80×15
<a href="https://agentmods.dev/skills/justestif/qry/qry-search"><img src="https://agentmods.dev/badge/skills/justestif/qry/qry-search.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 110 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 591 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00110 $0.00591
Opus 5 $0.00055 $0.00296
Sonnet 5 $0.00022 $0.00118
Haiku 4.5 $0.00011 $0.00059

Measured 9d ago against content hash 53df88d9ef3d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

qry-search scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- **After searching** — fetch the most relevant URL for full content: `curl -s <url> | cat`
qry-search/SKILL.md · 69 lines

What it actually says

qry Search Skill

qry routes search queries through pluggable adapter binaries and always outputs JSON.

Check availability

qry --agent-info   # prints tool description + your current config as JSON

If qry is not found, install it and at least one adapter:

# Install qry
mise use -g go:github.com/justestif/qry@latest && mise reshim

# Install an adapter (no API key required)
mise use -g go:github.com/justestif/qry/adapters/ddg-scrape@latest && mise reshim

See the qry README for all available adapters and config.

Core usage

# Basic search
qry "your query here"

# Limit results (default from config, usually 5–10)
qry --num 5 "your query"

# Force a specific adapter (bypass routing)
qry --adapter ddg-scrape "your query"

# Merge results from all pool adapters
qry --mode merge "your query"

Output format

first mode (default) — array of results:

[
  { "title": "...", "url": "https://...", "snippet": "..." }
]

merge mode — object with results (and optional warnings):

{
  "results": [{ "title": "...", "url": "https://...", "snippet": "..." }],
  "warnings": ["brave-api failed: rate_limited — results may be incomplete"]
}

Tips

  • Be specific"python requests post json body example" beats "python http"
  • Version lookups"numpy latest release site:pypi.org"
  • Error messages — wrap in quotes: qry '"ModuleNotFoundError: No module named X"'
  • Docs"site:docs.python.org pathlib" gives cleaner results
  • After searching — fetch the most relevant URL for full content: curl -s <url> | cat
  • Partial failures in merge mode are non-fatal — results from successful adapters are returned alongside warnings
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 69 lines · 110 tokens per session scan A 53df88d9ef3d

Subscribe to this mod's changes

qry-search is a skill published in the GitHub repository justEstif/qry (11 stars, last pushed 4mo ago), licensed MIT. It adds 110 tokens to every session and 591 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

knowledge-browser-automation

A browser-automation component that gives each session an isolated Chromium browser for navigating pages, inspecting them, interacting with them, and taking diagnostic screenshots.

echoVic/blade-code · 162 tokens

web-search

This skill should be used when users need to search the web for information, find current content, look up news articles, search for images, or find videos. It uses DuckDuckGo's search API to return results in clean, formatted output (text, markdown, or JSON). Use for research, fact-checking, finding recent…

opensquilla/opensquilla · 76 tokens

imaging-data-commons

Query and download public cancer imaging data from NCI Imaging Data Commons using idc-index. Use for accessing large-scale radiology (CT, MR, PET) and pathology datasets for AI training or research. No authentication required. Query by metadata, visualize in browser, check licenses.

synthetic-sciences/openscience · 62 tokens

clinical-reports

Write comprehensive clinical reports including case reports (CARE guidelines), diagnostic reports (radiology/pathology/lab), clinical trial reports (ICH-E3, SAE, CSR), and patient documentation (SOAP, H&P, discharge summaries). Full support with templates, regulatory compliance (HIPAA, FDA, ICH-GCP), and validation…

synthetic-sciences/openscience · 71 tokens

clinical-decision-support

Generate professional clinical decision support (CDS) documents for pharmaceutical and clinical research settings, including patient cohort analyses (biomarker-stratified with outcomes) and treatment recommendation reports (evidence-based guidelines with decision algorithms). Supports GRADE evidence grading…

synthetic-sciences/openscience · 97 tokens

geo-database

Access NCBI GEO for gene expression/genomics data. Search/download microarray and RNA-seq datasets (GSE, GSM, GPL), retrieve SOFT/Matrix files, for transcriptomics and expression analysis.

synthetic-sciences/openscience · 47 tokens