Agent skill

webshop-query-interpreter

Interprets a user's shopping query to extract key product requirements such as item type, attributes, and constraints. Use when a new shopping instruction is received and you need to parse natural language into structured criteria (product category, desired features, price limits) before performing a search. The output is a clear set of search parameters for use in subsequent product lookup steps.

zjunlpgithub.com/zjunlpGitHub ↗
claude-codeMIT
Install
npx skills add zjunlp/SkillNet --skill webshop-query-interpreter --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 3
SKILL.md size: 2 KB
Bundled scripts: none
Path: experiments/src/skills/webshop/webshop-query-interpreter/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,117
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Instructions ## Trigger Activate this skill when a new shopping instruction is received from the user. The instruction will be a natural language request for a product. ## Core Process 1. **Parse the Instruction:** Analyze the user's query to identify the following key components: * **Primary Product Type:** The main item being requested (e.g., "hair extension"). * **Key Attributes/Features:** Descriptive requirements (e.g., "long", "clip-in", "natural looking"). * **Constraints:** Hard limits, especially price (e.g., "price lower than 40.00 dollars"). 2. **Structure the Output:** Format the extracted information into a clear, structured set of search parameters. Use the following template: ``` Product Type: <primary item> Attributes: <comma-separated features> Constraints: <price limits or other hard requirements> Search Query: <recommended search string> ``` 3. **Hand Off:** Pass the structured parameters to the search execution skill (e.g., `webshop-search-executor` or `webshop-product-search`) to perform the actual query. ## Example **Instruction:** "i need a long clip-in hair extension which is natural looking, and price lower than 40.00 dollars" **Thought:** The user wants

What's inside
Steps it walks through
  1. Trigger
  2. Core Process
  3. Example
Ships with 2 files
  • references/execution_example.md
  • references/query_patterns.md
More from SkillNet
All skills →
About this skill
What does the webshop-query-interpreter skill do?

Interprets a user's shopping query to extract key product requirements such as item type, attributes, and constraints. Use when a new shopping instruction is received and you need to parse natural language into structured criteria (product category, desired features, price limits) before performing a search. The output is a clear set of search parameters for use in subsequent product lookup steps.

How do I install it?

Run `npx skills add zjunlp/SkillNet --skill webshop-query-interpreter --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From zjunlp/SkillNet, a repository with 1,117 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going