← ClaudeAtlas

product-searchlisted

Deep-verified supplement and product recommendations that enforce ingredient-by-ingredient cross-checking against the user's documented constraints in MEMORY.md and medical-history.md. Prevents the common failure mode of recommending products based on brand reputation or search-result titles without actually reading the product page. Every recommendation requires fetching the real product page, extracting the full "Other Ingredients" list, checking each ingredient against the user's hard-no list, reading user reviews, and verifying brand reputation. Maintains persistent state (verified-products, brand-database, search-log) so repeat searches don't redo work. Use this skill WHENEVER the user says `/product-search`, asks "find me a source for X", "where do I buy X", "what's the best brand of X", "compare [product A] and [product B]", "which [product] should I get", "direct URLs for those products", or explicitly asks for a product recommendation, supplement source, or brand comparison. Do NOT use proactively —
OpenBioHack/openbiohack · ★ 0 · Data & Documents · score 75
Install: claude install-skill OpenBioHack/openbiohack
# Product Search — Verified Supplement Sourcing ## Why this skill exists This skill exists because of a specific, repeatable failure mode: recommending supplements based on **brand name as a proxy for clean formulation** or **Amazon search titles as if they were ingredient facts**. The typical failure looks like: "Nootropics Depot PEA is a clean brand" → recommend URL → user opens the actual product page → the supplement facts panel lists **rice** as an excipient → rice is on the user's hard-no list → recommendation was worthless. The fix is not "try harder." The fix is **structural discipline**: every recommendation must survive a real fetch of the actual product page, a full extraction of every ingredient (active AND excipient), and a cross-check against the user's current documented constraints. No shortcuts. No assumptions from brand reputation. No guessing when a page fails to load. This skill also builds **persistent institutional memory** — a brand database and a verified-products list — so that 3 months from now when the user asks about the same brand or SKU, the work already done is reused rather than redone. ## Core principle Three words the skill operates under: **Fetch. Cross-check. Persist.** - **Fetch**: every candidate product gets its actual page fetched and parsed — no shortcuts from search results. - **Cross-check**: every ingredient is tagged against the user's current constraints, which are pulled fresh from their memory files at the time of invocat