emerging-concepts
Agentic Discovery
Why It Matters
The End of Direct Discovery Traditional discovery: Human → Search Engine → Browse Results → Visit Websites → Evaluate → Decide Agentic discovery: Human → AI Agent → Agent Evaluates Options → Agent Presents Recommendation → Human Confirms
Users increasingly skip the middle steps, delegating discovery to AI agents.
Implications for Content and Commerce
- Visibility shifts from humans to agents: If your content isn't discoverable or usable by AI agents, it effectively doesn't exist for a growing segment of activity.
- Persuasion targets change: Instead of convincing humans, content must convince AI agents to select and recommend it.
- User experience becomes agent experience: The "customer journey" is now often an agent journey, with human interaction only at key decision points.
The Trust Delegation Users are increasingly willing to delegate discovery because:
- Information overload makes manual research exhausting
- AI agents can process more options in seconds than humans can in hours
- Personalization based on comprehensive preference understanding
- Consistency in applying criteria humans might forget or overlook
Competitive Dynamics Organizations optimized for agentic discovery will capture disproportionate share as agent usage grows. Those not optimized become invisible to agent-driven activity.
Use Cases
Shopping Agents
AI assistants that search, compare, and recommend products across multiple retailers based on user preferences, budget, and requirements
Travel Planning
Agents that explore flights, hotels, and activities, applying complex preferences (layover times, amenities, reviews) to find optimal itineraries
Research Agents
AI researchers that explore academic literature, news, and reports to compile comprehensive briefings on topics
Service Matching
Agents that discover and evaluate service providers (contractors, professionals, businesses) based on capability, availability, and reputation
Content Curation
Agents that browse content across platforms to surface relevant articles, videos, and resources matching user interests
Investment Research
Financial agents that discover and analyze investment opportunities, companies, and market data to surface candidates for human review
Key Metrics
Agent referral traffic
visits/conversions originating from AI agents
Agent discovery rate
how often agents find and consider your content
Agent selection rate
how often agents choose to recommend you
Agent comparison inclusion
frequency of inclusion in agent-generated comparisons
Agent task completion rate
successful end-to-end agent interactions
Time to agent indexing
how quickly new content becomes agent-discoverable
Agent sentiment
qualitative assessment of how agents describe your brand
Agent abandonment points
where agents fail to complete workflows
How LLMs Interpret This
Multi-Source Synthesis Unlike human browsing (serial, one site at a time), agents often:
- 1.Query multiple sources simultaneously
- 2.Extract comparable information from each
- 3.Normalize data into common frameworks
- 4.Apply user preferences as scoring criteria
- 5.Synthesize into ranked recommendations
Preference Matching Agents translate user requirements into evaluation criteria:
- "I want something reliable" → weight reviews, warranties, brand reputation
- "I'm on a budget" → weight price, value metrics, discounts
- "I need it fast" → weight shipping speed, availability, proximity
Trust Calibration Agents apply trust heuristics:
- Official sources weighted over aggregators
- Recent information over stale data
- Verified credentials over self-claims
- Consensus across sources over single-source claims
Selection Explanation Good discovery agents can explain selections:
- Why this option was recommended
- What tradeoffs were considered
- What alternatives exist and why they ranked lower
- What additional information might change the recommendation
Limitation Awareness Sophisticated agents recognize:
- When they lack sufficient information
- When sources conflict
- When user requirements are ambiguous
- When to escalate to human judgment
1// Optimizing for Agentic Discovery2 3// 1. Structured product data optimized for agent comparison4interface AgentOptimizedProduct {5 "@type": "Product";6 "@id": string;7 8 // Core identification9 name: string;10 brand: { "@type": "Brand"; name: string; "@id": string };11 category: string[];12 13 // Agent comparison attributes (standardized)14 comparableAttributes: {15 priceUSD: number;16 qualityScore: number; // 0-100 normalized17 customerRating: number; // 0-5 stars18 reviewCount: number;19 warrantyMonths: number;20 returnDays: number;21 sustainabilityScore?: number;22 deliveryDays: number;23 };24 25 // Availability for agent decision-making26 availability: {27 inStock: boolean;28 quantity: number;29 restockDate?: string;30 shippingOptions: ShippingOption[];31 };32 33 // Trust signals agents use for filtering34 trustSignals: {35 certifications: string[];36 verifiedSeller: boolean;37 moneyBackGuarantee: boolean;38 securePayment: boolean;39 authenticityGuarantee: boolean;40 };41 42 // Capability declarations43 capabilities: {44 bestFor: string[]; // ["outdoor use", "beginners", "professionals"]45 notRecommendedFor: string[]; // ["extreme cold", "heavy loads"]46 compatibleWith: string[]; // ["Model X", "Model Y"]47 };48 49 // Agent action endpoints50 agentActions: {51 addToCart: { url: string; method: "POST" };52 checkLiveAvailability: { url: string; method: "GET" };53 getDetailedSpecs: { url: string; method: "GET" };54 requestQuote?: { url: string; method: "POST" };55 };56}57 58// 2. Agent-friendly comparison endpoint59export async function GET(request: NextRequest) {60 const searchParams = request.nextUrl.searchParams;61 const category = searchParams.get('category');62 const preferences = JSON.parse(searchParams.get('preferences') || '{}');63 64 // Return data optimized for agent comparison65 const products = await getProductsForAgentComparison(category);66 67 return NextResponse.json({68 "@type": "ProductComparison",69 "category": category,70 "comparisonDate": new Date().toISOString(),71 72 // Comparison dimensions available73 "comparisonDimensions": [74 "priceUSD", "qualityScore", "customerRating", 75 "warrantyMonths", "deliveryDays", "sustainabilityScore"76 ],77 78 // Statistical context for agent understanding79 "categoryStatistics": {80 "priceRange": { "min": 29.99, "max": 299.99, "median": 89.99 },81 "averageRating": 4.2,82 "totalProducts": products.length83 },84 85 // Products with normalized comparable attributes86 "products": products.map(p => ({87 ...p,88 // Percentile rankings help agents contextualize89 "percentileRankings": {90 "price": calculatePercentile(p.comparableAttributes.priceUSD, products, 'price'),91 "quality": calculatePercentile(p.comparableAttributes.qualityScore, products, 'quality'),92 "rating": calculatePercentile(p.comparableAttributes.customerRating, products, 'rating')93 }94 })),95 96 // Help agents understand selection criteria97 "recommendationHints": {98 "bestValue": products.find(p => p.valueScore === Math.max(...products.map(x => x.valueScore)))?.["@id"],99 "highestRated": products.find(p => p.comparableAttributes.customerRating === Math.max(...products.map(x => x.comparableAttributes.customerRating)))?.["@id"],100 "fastestDelivery": products.find(p => p.comparableAttributes.deliveryDays === Math.min(...products.map(x => x.comparableAttributes.deliveryDays)))?.["@id"]101 }102 });103}104 105// 3. Preference-based recommendation endpoint106export async function POST(request: NextRequest) {107 const { userPreferences, constraints, context } = await request.json();108 109 /*110 Example input:111 {112 "userPreferences": {113 "prioritize": ["durability", "value"],114 "avoid": ["heavy", "complex setup"],115 "budget": { "max": 150, "flexibility": "somewhat" },116 "timeline": "within 1 week"117 },118 "constraints": {119 "mustHave": ["waterproof", "warranty > 12 months"],120 "niceToHave": ["eco-friendly", "compact"]121 },122 "context": {123 "useCase": "outdoor camping",124 "experienceLevel": "intermediate",125 "previousPurchases": ["tent-model-x"]126 }127 }128 */129 130 const recommendations = await generateAgentRecommendations(131 userPreferences, 132 constraints, 133 context134 );135 136 return NextResponse.json({137 "@type": "AgentRecommendation",138 "generatedAt": new Date().toISOString(),139 "basedOn": {140 "preferences": userPreferences,141 "constraints": constraints,142 "context": context143 },144 145 "recommendations": recommendations.map((rec, index) => ({146 "rank": index + 1,147 "product": rec.product,148 "matchScore": rec.matchScore,149 "matchExplanation": rec.explanation,150 "tradeoffs": rec.tradeoffs,151 "alternativeIf": rec.alternativeConditions152 })),153 154 // Help agent explain to user155 "summaryForUser": generateUserFacingSummary(recommendations),156 157 // Flag if agent should gather more info158 "clarificationNeeded": recommendations.some(r => r.confidenceLow) ? {159 "questions": generateClarifyingQuestions(userPreferences, constraints),160 "wouldImprove": ["recommendation accuracy", "tradeoff visibility"]161 } : null162 });163}164 165// 4. llms.txt optimized for discovery agents166const llmsTxtForDiscovery = `167# [Brand Name] - [Category] Products168 169> [Brand] offers [value proposition] for [target audience].170 171## Quick Facts for Comparison172- Price Range: $X - $Y173- Average Rating: X.X stars (N reviews)174- Shipping: Free over $Z, 2-5 day delivery175- Returns: 30-day hassle-free returns176- Warranty: X years standard177 178## Best For179- [Use case 1]180- [Use case 2]181- [Use case 3]182 183## Not Recommended For184- [Anti-use case 1]185- [Anti-use case 2]186 187## Product Comparison API188For detailed product comparison data, agents can access:189GET /api/agent/products/compare?category={category}190 191## How to Purchase192Agents can add products to cart via:193POST /api/agent/cart/add194Body: { "productId": "...", "quantity": 1 }195 196---197Last Updated: [Date]198Source: Official [Brand] Product Catalog199`;Examples
Agent Shopping Journey vs. Human Journey
- 1.Search "best wireless headphones" on Google
- 2.Click through 5-6 review articles
- 3.Open multiple product pages in tabs
- 4.Manually compare specs, prices, reviews
- 5.Get distracted, save some links
- 6.Return later, re-research
- 7.Finally decide after 2+ hours across sessions
Agent Shopping Journey:
- 1.User: "Find me wireless headphones under $150, comfortable for long use, good for calls"
- 2.Agent queries structured data from 20+ retailers in seconds
- 3.Agent applies filters: price ≤ $150, comfort ratings high, microphone quality good
- 4.Agent ranks by value score considering user's implicit preferences
- 5.Agent: "I found 3 great options. The Sony WH-1000XM4 is $148, has the best comfort ratings, and excellent call quality. Want me to add it to your Amazon cart?"
- 6.Total time: 30 seconds
The Shift: Discovery happens without human browsing. The "consideration set" is built by agents, not humans clicking through results.
Structured Data for Agent Comparison
{
"products": [
{
"id": "headphones-a",
"name": "Brand A Model X",
"comparableAttributes": {
"priceUSD": 149.99,
"batteryHours": 30,
"weightGrams": 250,
"noiseCancellation": true,
"microphoneQuality": 8.5,
"comfortRating": 9.0,
"buildQuality": 8.0
},
"percentileRank": {
"price": 65,
"batteryLife": 85,
"comfort": 90
}
}
],
"comparisonContext": {
"categoryAverages": {
"priceUSD": 129.99,
"batteryHours": 25,
"comfortRating": 7.5
}
}
}
This structured format allows agents to:
- Apply user preferences as weighted criteria
- Understand relative positioning (percentiles)
- Make informed tradeoff decisions
Optimizing Trust Signals for Agents
{
"trustSignals": {
"reviews": {
"averageRating": 4.5,
"totalReviews": 2847,
"verifiedPurchasePercentage": 89,
"recentTrend": "stable",
"sentimentBreakdown": {
"positive": 78,
"neutral": 15,
"negative": 7
}
},
"seller": {
"verified": true,
"yearsInBusiness": 15,
"returnRate": 3.2,
"responseTime": "< 24 hours"
},
"product": {
"certifications": ["CE", "FCC", "RoHS"],
"warrantyMonths": 24,
"officialBrandStore": true,
"counterfeitRisk": "low"
},
"policies": {
"returnDays": 30,
"returnCondition": "any reason",
"returnShippingPaid": true,
"priceMatchGuarantee": true
}
}
}
Agents use these signals to filter out risky options and weight recommendations toward trustworthy sellers.
Export Structured Data
{
"@context": "https://schema.org",
"@type": "DefinedTerm",
"name": "Untitled",
"alternateName": [],
"description": "",
"inDefinedTermSet": {
"@type": "DefinedTermSet",
"name": "AI Optimization Glossary",
"url": "https://geordy.ai/glossary"
},
"url": "https://geordy.ai/glossary/emerging-concepts/agentic-discovery"
}Details
- Category
- emerging-concepts
- Type
- concept
- Level
- strategist