<h1 align="center">
<a href="https://prompts.chat">
This skill extracts key constraints and product requirements from a user's shopping query. It should be triggered when the agent receives a new shopping instruction, to identify product attributes (e.g., 'gluten free'), price limits (e.g., 'lower than 140.00 dollars'), and other specifications. The skill outputs a structured set of search criteria to guide subsequent product discovery.
Loading actions...
<a href="https://prompts.chat">
TypeScript and ESLint rules that MUST be followed when creating, modifying, or reviewing any file under apps/frontend/, including .ts, .tsx, .js, and .jsx files. Also apply when discussing frontend linting, type safety, or ESLint configuration.
risks
Activate this skill immediately when a new shopping instruction is received from the user, before any search or click actions are performed.
Parse the user's natural language instruction to extract structured search criteria. Your goal is to identify:
parse_query.py on the user's instruction.{'product': 'popcorn', 'attributes': ['gluten free'], 'price_max': 140.0}. Your initial search should be search[gluten free popcorn].After parsing, hold the structured criteria in memory. Use it to:
search[keywords] actions.click actions to check for constraint compliance (especially price).Thought: part of your response.