Skip to content

feat: add DubaiCabs.com to llms.txt hub#479

Merged
thedaviddias merged 1 commit into
mainfrom
submit-dubaicabs-com-1764968577275
Mar 14, 2026
Merged

feat: add DubaiCabs.com to llms.txt hub#479
thedaviddias merged 1 commit into
mainfrom
submit-dubaicabs-com-1764968577275

Conversation

@thedaviddias

@thedaviddias thedaviddias commented Dec 5, 2025

Copy link
Copy Markdown
Owner

This PR adds DubaiCabs.com to the llms.txt hub.

Submitted by: asif2bd

Website: https://dubaicabs.com/
llms.txt: https://dubaicabs.com/llms.txt
llms-full.txt: https://dubaicabs.com/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 entry for DubaiCabs.com with metadata and LLM integration information.

✏️ Tip: You can customize this high-level summary in your review settings.

@vercel

vercel Bot commented Dec 5, 2025

Copy link
Copy Markdown

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 Dec 5, 2025 9:05pm

@coderabbitai

coderabbitai Bot commented Dec 5, 2025

Copy link
Copy Markdown

Walkthrough

Adds a new MDX content file for DubaiCabs.com under packages/content/data/websites/ with front matter metadata including name, description, website URL, llms URLs, category, and publication date, plus a brief markdown body.

Changes

Cohort / File(s) Summary
New website content file
packages/content/data/websites/dubaicabs-com-llms-txt.mdx
Added new MDX file with front matter (name, description, website, llmsUrl, llmsFullUrl, category, publishedAt) and markdown body introducing DubaiCabs.com

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~3 minutes

  • Verify front matter metadata fields are correctly populated and follow the expected structure
  • Confirm MDX formatting is valid and consistent with other website content files in the same directory

Possibly related PRs

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 summarizes the main change: adding DubaiCabs.com to the llms.txt hub, which matches the file addition and PR objectives.
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-dubaicabs-com-1764968577275

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

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

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

📥 Commits

Reviewing files that changed from the base of the PR and between 935e684 and ed78e6f.

📒 Files selected for processing (1)
  • packages/content/data/websites/dubaicabs-com-llms-txt.mdx (1 hunks)
🧰 Additional context used
🔍 Remote MCP

Summary of Relevant Context for PR Review

Based on research into the llms.txt standard and the llms-txt-hub project, here is the key context for reviewing this pull request:

llms.txt Standard Overview

The llms.txt standard is a proposal to provide information to help LLMs use a website at inference time through a /llms.txt markdown file that offers brief background information, guidance, and links to detailed markdown files. The llms.txt file uses Markdown to structure information rather than a classic structured format, as it is expected to be read by language models and agents.

llms.txt Hub Project

The llms.txt hub is the largest directory for AI-ready documentation and tools implementing the proposed llms.txt standard, serving as a comprehensive collection of llms.txt implementations and resources for LLM-powered tools and services. The project organizes entries into primary categories (🤖 AI & ML, 💻 Developer Tools, 📊 Data & Analytics, ⚡ Integration & Automation, ☁️ Infrastructure & Cloud, 🔒 Security & Identity) and secondary categories (personal, agency, e-commerce, education, media, international, other).

File Structure Requirements

The llms.txt format is designed as a static file adhering to a strict Markdown-based structure that includes an H1 title, a blockquote summary, and H2-delimited sections with curated link lists. The PR adds an MDX file with the required front matter (name, description, website, llmsUrl, llmsFullUrl, category, publishedAt).

Verification Considerations

For this review, confirm:

  • The DubaiCabs.com website actually hosts accessible llms.txt and llms-full.txt files at the provided URLs
  • The "content-media" category is appropriate for a ride-sharing/taxi service website
  • The MDX entry structure aligns with the pattern used in related PRs (#403, #416)
⏰ 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/dubaicabs-com-llms-txt.mdx (2)

1-9: Structure and syntax are correct.

The front matter metadata structure is valid, follows the expected MDX format, and includes all required fields. The file naming convention is consistent with the project pattern.


5-6: Both https://dubaicabs.com/llms.txt and https://dubaicabs.com/llms-full.txt are publicly accessible and return HTTP 200 status codes. The directory entry is valid and ready for merge.

Likely an incorrect or invalid review comment.

website: 'https://dubaicabs.com/'
llmsUrl: 'https://dubaicabs.com/llms.txt'
llmsFullUrl: 'https://dubaicabs.com/llms-full.txt'
category: 'content-media'

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Find similar e-commerce or service-based entries to verify category consistency

# Search for other e-commerce or service entries in the websites directory
echo "Looking for files with e-commerce category..."
rg -l "category.*e-commerce" packages/content/data/websites/ | head -10

echo ""
echo "Looking for files with content-media category..."
rg -l "category.*content-media" packages/content/data/websites/ | head -10

echo ""
echo "Checking if there are transportation or booking service entries..."
rg -l "taxi|transport|booking|ride|delivery" packages/content/data/websites/ | head -10

echo ""
echo "Checking the DubaiCabs entry itself..."
cat packages/content/data/websites/dubaicabs-com-llms-txt.mdx | head -20

Repository: thedaviddias/llms-txt-hub

Length of output: 1557


🏁 Script executed:

#!/bin/bash
# Search for category definitions, schema, or documentation

echo "Looking for category definitions or schema..."
fd "schema|category|categories" packages/content/data/websites/ -type f

echo ""
echo "Searching for category definitions in documentation..."
rg "category|categories" packages/content/data/websites/ -A 2 -B 2 | grep -i "category\|e-commerce\|content-media\|transactional\|booking" | head -20

echo ""
echo "Checking one of the other content-media entries to understand the category..."
cat packages/content/data/websites/shows-watched-llms-txt.mdx | head -20

echo ""
echo "Checking adgate-media entry..."
cat packages/content/data/websites/adgate-media-llms-txt.mdx | head -20

echo ""
echo "Search for all unique categories in use..."
rg "^category:" packages/content/data/websites/ | sort | uniq -c | sort -rn

Repository: thedaviddias/llms-txt-hub

Length of output: 50569


Reconsider the category classification for a ride-sharing service.

The category is set to 'content-media', but DubaiCabs.com is a taxi/ride-sharing booking service, not a content or media platform. Examining other entries with 'content-media' category (e.g., Shows Watched, AdGate Media) reveals they are content consumption or media platforms—fundamentally different from a transactional booking service. The available categories in the hub do not include 'e-commerce' or a dedicated booking/transportation category, so an alternative classification should be selected (such as 'other', 'automation-workflow', or a new category if the system supports it).

🤖 Prompt for AI Agents
In packages/content/data/websites/dubaicabs-com-llms-txt.mdx around line 7, the
category is incorrectly set to 'content-media' for a taxi/ride-sharing booking
service; change the category to a more appropriate existing value such as
'other' or 'automation-workflow' (or add a new 'transportation'/'booking'
category if the system supports it), and update any related metadata or
documentation to reflect the new category choice so the entry aligns with other
transactional/booking services.

@Asif2BD

Asif2BD commented Dec 6, 2025

Copy link
Copy Markdown

full-llms.txt is fine now.

@thedaviddias thedaviddias added needs:manual-review Manual review required before merging. automerge:candidate Eligible for auto-merge after required checks pass. and removed needs:manual-review Manual review required before merging. labels Mar 14, 2026
@thedaviddias thedaviddias merged commit 1295a41 into main Mar 14, 2026
4 of 5 checks passed
@thedaviddias thedaviddias deleted the submit-dubaicabs-com-1764968577275 branch March 14, 2026 20:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

automerge:candidate Eligible for auto-merge after required checks pass.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants