| name | webshop-product-detail-check |
| description | Examines a specific product's detailed page to verify it matches the user's requirements, checking price, description, features, and reviews. Use when you have navigated to a product detail page from search results and need to confirm the product meets all user-specified constraints before purchasing. It provides a final suitability assessment with a clear proceed-or-reject recommendation. |
Skill: Product Detail Verification
Trigger
Activate this skill when the agent has navigated to a specific product's detailed page from a search results list. The agent should have a user query containing specific requirements (e.g., product type, attributes, price constraints).
Core Objective
Analyze the product detail page to confirm if the product meets all user-specified constraints. Provide a clear "Proceed" or "Reject" recommendation.
Execution Workflow
-
Parse User Requirements: Extract key constraints from the user's instruction. Primary constraints are typically Price and Key Attributes (e.g., "long", "clip-in", "natural looking"). Store these in a structured format.
-
Scrape Product Page Data: Systematically extract the following information from the current page observation:
- Product Title
- Price
- Key Description Snippets (from Description/Features sections)
- Rating (if available)
- Availability of "Buy Now" action.
-
Constraint Verification: Compare the scraped data against the user's requirements.
- Price Check: Is the product price strictly less than the user's maximum? (e.g., < $40.00).
- Attribute Check: Do the title and description contain terms matching the user's key attributes? (e.g., confirm "clip-in" and "natural looking" are present).