Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: 'Dear Lottery Live Results'
description: 'Get instant Dear Lottery results today for 1PM, 6PM & 8PM draws.'
website: 'https://india-lotto.in/'
llmsUrl: 'https://india-lotto.in/llms.txt'
llmsFullUrl: 'https://india-lotto.in/llms-full.txt'
category: 'agency-services'
publishedAt: '2025-11-07'
---
Comment on lines +1 to +9
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

Verify category appropriateness and URL accessibility.

The category "agency-services" may not accurately represent the nature of this resource. india-lotto.in is a lottery results platform providing "the latest Dear Lottery result today, Kerala lottery results, and Lottery Sambad today results all in one place." This appears to be an informational/results service rather than an agency service.

Additionally, the llms.txt and llms-full.txt endpoints should be verified to ensure they are accessible and return valid, semantically meaningful content for LLM consumption.


🏁 Script executed:

#!/bin/bash
# Description: Verify URL accessibility and content validity

# Test 1: Check if llms.txt is accessible
echo "Testing llms.txt accessibility..."
curl -s -o /dev/null -w "HTTP Status: %{http_code}\n" "https://india-lotto.in/llms.txt"
curl -s -I "https://india-lotto.in/llms.txt" | head -5

# Test 2: Check if llms-full.txt is accessible
echo -e "\nTesting llms-full.txt accessibility..."
curl -s -o /dev/null -w "HTTP Status: %{http_code}\n" "https://india-lotto.in/llms-full.txt"
curl -s -I "https://india-lotto.in/llms-full.txt" | head -5

# Test 3: Show a preview of the content (if accessible)
echo -e "\nPreview of llms.txt content (first 500 chars)..."
curl -s "https://india-lotto.in/llms.txt" | head -c 500
echo -e "\n"

Length of output: 1033


🏁 Script executed:

#!/bin/bash
# Find category definitions and other website entries to validate category options

echo "=== Searching for category definitions or validation ==="
find packages/content/data/websites -name "*.mdx" -type f | head -20

echo -e "\n=== Checking for category patterns in existing files ==="
grep -h "^category:" packages/content/data/websites/*.mdx 2>/dev/null | sort | uniq -c | sort -rn

echo -e "\n=== Sample of existing website entries for reference ==="
ls -1 packages/content/data/websites/*.mdx | head -10 | while read file; do
  echo "File: $(basename "$file")"
  grep -E "^(name|category):" "$file" | head -2
  echo "---"
done

Length of output: 2570


Update category from 'agency-services' to 'other' or 'content-media'.

The llms.txt and llms-full.txt endpoints are accessible and return valid content. However, "agency-services" is semantically incorrect for this resource—india-lotto.in is a lottery results information platform, not an agency. Use "other" as a neutral fallback or "content-media" if categorizing it as an information service.

🤖 Prompt for AI Agents
In packages/content/data/websites/dear-lottery-live-results-llms-txt.mdx around
lines 1-9, the frontmatter uses category: 'agency-services' which is
semantically incorrect for a lottery results/info site; update the YAML
frontmatter so category is either 'other' (neutral) or 'content-media' (if you
want to mark it as an information service), e.g., replace agency-services with
the chosen value and save the file.


# Dear Lottery Live Results

Get instant Dear Lottery results today for 1PM, 6PM & 8PM draws.
Loading