Skip to content

Conversation

@thedaviddias
Copy link
Owner

@thedaviddias thedaviddias commented Nov 7, 2025

This PR adds Lottery 1 6 8PM Live Results to the llms.txt hub.

Submitted by: vegastro

Website: https://india-lotto.in/
llms.txt: https://india-lotto.in/llms.txt
llms-full.txt: https://india-lotto.in/llms-full.txt
Category: content-media


This PR was created via admin token for a user without GitHub repository access.

Please review and merge if appropriate.

Summary by CodeRabbit

  • New Features
    • Added new content for Lottery 1 6 8PM Live Results featuring instant Dear Lottery results for 1PM, 6PM & 8PM draws.

@vercel
Copy link

vercel bot commented Nov 7, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
llms-txt-hub Ready Ready Preview Comment Nov 7, 2025 11:36am

@coderabbitai
Copy link

coderabbitai bot commented Nov 7, 2025

Walkthrough

Adds a new MDX content file to the websites data directory containing frontmatter metadata and static content describing instant Dear Lottery results for 1PM, 6PM, and 8PM draws. No executable code or logic changes.

Changes

Cohort / File(s) Summary
New Website Content File
packages/content/data/websites/lottery-1-6-8pm-live-results-llms-txt.mdx
Introduces new MDX file with frontmatter metadata (name, description, website, llmsUrl, llmsFullUrl, category, publishedAt) and content section for Lottery 1 6 8PM Live Results

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

  • Single static content file addition with no logic or code changes
  • Standard frontmatter structure following existing convention
  • Straightforward content verification only

Pre-merge checks and finishing touches

✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly and concisely describes the main change: adding a new content entry for 'Lottery 1 6 8PM Live Results' to the llms.txt hub, which aligns perfectly with the single file addition in the changeset.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
✨ Finishing touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch submit-lottery-1-6-8pm-live-results-1762515007865

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

Knowledge base: Disabled due to Reviews -> Disable Knowledge Base setting

📥 Commits

Reviewing files that changed from the base of the PR and between 36721db and e9ece9d.

📒 Files selected for processing (1)
  • packages/content/data/websites/lottery-1-6-8pm-live-results-llms-txt.mdx (1 hunks)
🧰 Additional context used
🔍 Remote MCP Linear

Let me also search the web for information about the llms.txt standard and the hub project:## Summary: Additional Context for PR #450 Review

Project Context: llms.txt Hub

The llms.txt hub is a central repository for discovering and sharing llms.txt implementations, which is a standardized way to provide information about how LLM-powered tools should interact with documentation and codebase. The project is currently "In Progress" and led by David Dias, created on February 24, 2025.

Submission Category Alignment

The hub organizes projects into primary categories (including AI & ML, Developer Tools, Data & Analytics, Integration & Automation, Infrastructure & Cloud, Security & Identity) and secondary categories including personal, agency, e-commerce, education, media, international, and other. The submission specifies "content-media" as the category, which aligns with the hub's secondary categorization system.

Website Subject Matter

The india-lotto.in website provides instant Dear Lottery results for 1PM, 6PM & 8PM draws, including winning numbers and prize structure (₹1 crore first prize). DEAR Lottery, established in 1991, has grown to become India's premier lottery company with a turnover exceeding 2 billion USD. This confirms the website addresses a legitimate and established service in India's regulated lottery sector.

Project Activity Pattern

The Linear project shows active submissions with multiple related issues completed, including adding other websites to the hub (Vercel, Upsun) and general site improvements, indicating an established submission and review workflow.

Key considerations for review:

  • Verify that both llms.txt and llms-full.txt files are properly formatted according to the standard
  • Confirm the MDX frontmatter metadata is consistent with other entries in the hub
  • The submission follows the hub's established pattern for new website additions
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
  • GitHub Check: Validate
🔇 Additional comments (2)
packages/content/data/websites/lottery-1-6-8pm-live-results-llms-txt.mdx (2)

11-13: Content section mirrors frontmatter—verify this is consistent with hub convention.

The markdown content (heading and description) duplicates the frontmatter metadata. Confirm whether this redundancy is intentional and follows the hub's established pattern for website entries.


1-9: Endpoints verified and accessible—ready for merge.

Both llms.txt and llms-full.txt endpoints returned HTTP 200 with valid, well-structured content. The frontmatter is correct, and all required fields are present. No issues found.

Comment on lines +1 to +9
---
name: 'Lottery 1 6 8PM 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: 'content-media'
publishedAt: '2025-11-07'
---
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 file structure and naming consistency with other hub entries.

Confirm that the frontmatter fields and file naming convention (lottery-1-6-8pm-live-results-llms-txt.mdx) align with existing website entries in the hub.

Run the following script to inspect similar files and check consistency:


🏁 Script executed:

#!/bin/bash
# Description: Check consistency of frontmatter structure and file naming across hub entries

echo "=== Checking frontmatter structure across website entries ==="
# Find all website entry files and show their frontmatter fields
fd --extension mdx 'packages/content/data/websites' --exec head -10 {} \; -exec echo "---" \;

echo ""
echo "=== File naming pattern analysis ==="
# List all website entry files to verify naming convention
fd --extension mdx 'packages/content/data/websites' -x basename {}

Length of output: 822


🏁 Script executed:

#!/bin/bash
# Description: Check consistency of frontmatter structure and file naming across hub entries

echo "=== Checking frontmatter structure across website entries ==="
# Find all .mdx files in the websites directory and show their frontmatter
fd --extension mdx . 'packages/content/data/websites' -x head -10 {}

echo ""
echo "=== File naming pattern analysis ==="
# List all website entry files to verify naming convention
fd --extension mdx . 'packages/content/data/websites' -x basename {}

Length of output: 262316


Rename file to remove redundant "-llms-txt" suffix for naming consistency.

The frontmatter fields are correct and align with hub standards. However, the filename lottery-1-6-8pm-live-results-llms-txt.mdx violates the naming convention. Across the entire hub, filenames follow a clean slugified pattern based on service names without metadata suffixes (e.g., abstract-api.mdx, ark-ui.mdx, anthropic.mdx). The "-llms-txt" suffix is redundant since all files in this directory serve that purpose.

Rename to: lottery-1-6-8pm-live-results.mdx

🤖 Prompt for AI Agents
In packages/content/data/websites/lottery-1-6-8pm-live-results-llms-txt.mdx
around lines 1 to 9 the filename includes a redundant "-llms-txt" suffix; rename
the file to lottery-1-6-8pm-live-results.mdx, keep the frontmatter unchanged,
and update any references or imports (site index, README, links, CI/content
manifest) that point to the old filename so builds and navigation continue to
work.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants