Skip to content

Conversation

@thedaviddias
Copy link
Owner

@thedaviddias thedaviddias commented Jan 8, 2026

This PR adds HypeStudio AI Agency to the llms.txt hub.

Submitted by: info

Website: https://hypestudio.org
llms.txt: https://hypestudio.org/llms.txt
llms-full.txt: https://hypestudio.org/llms-full.txt
Category: agency-services


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

Please review and merge if appropriate.


Note

Adds a new website entry for HypeStudio AI Agency to the llms.txt hub.

  • Introduces packages/content/data/websites/hypestudio-ai-agency-llms-txt.mdx with metadata (name, description, website, llmsUrl, llmsFullUrl, category, publishedAt) and brief content

Written by Cursor Bugbot for commit e6b2459. This will update automatically on new commits. Configure here.

Summary by CodeRabbit

  • New Features
    • Added HypeStudio AI Agency to the website directory. This new entry includes comprehensive agency information, descriptions, website links, and categorization. Users can now discover and explore HypeStudio AI Agency through the website directory with full access to agency details and relevant resources.

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

@vercel
Copy link

vercel bot commented Jan 8, 2026

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

Project Deployment Review Updated (UTC)
llms-txt-hub Ready Ready Preview, Comment Jan 8, 2026 0:53am

@coderabbitai
Copy link

coderabbitai bot commented Jan 8, 2026

Walkthrough

A new MDX content file is added to the websites directory containing metadata and an introductory description for HypeStudio AI Agency, including YAML front matter with fields such as name, website URL, category, and publication date.

Changes

Cohort / File(s) Summary
New website content file
packages/content/data/websites/hypestudio-ai-agency-llms-txt.mdx
Adds new MDX file with YAML front matter (name, description, website, llmsUrl, llmsFullUrl, category, publishedAt) and Markdown body introducing HypeStudio AI Agency

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The pull request title clearly and concisely summarizes the main change: adding HypeStudio AI Agency to the llms.txt hub, which matches the content file addition.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

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

🤖 Fix all issues with AI agents
In @packages/content/data/websites/hypestudio-ai-agency-llms-txt.mdx:
- Around line 4-6: The llmsFullUrl entry ('llmsFullUrl') points to a 404
endpoint; remove the llmsFullUrl line or replace its value with a valid
reachable URL (or the same working llmsUrl) in the MDX frontmatter so the site
no longer references https://hypestudio.org/llms-full.txt; ensure the key name
'llmsFullUrl' is either deleted or updated to a working URL.
📜 Review details

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between a28c655 and e6b2459.

📒 Files selected for processing (1)
  • packages/content/data/websites/hypestudio-ai-agency-llms-txt.mdx
🧰 Additional context used
🔍 Remote MCP Linear

Based on the search results, I found relevant context about the llms.txt hub project that can help inform the review of this PR.

Additional Context Found

llms.txt Hub Project Context

The llms.txt hub is an active project managed in Linear under the "David Dias Digital" team. Several related issues show:

  1. Project Status: The project is operational with multiple completed tasks for adding websites to the hub (including Vercel and other contributions)

  2. Recent Activity: Issues related to the llms.txt hub include:

    • Adding website llms.txt files (e.g., DDD-1133: Vercel integration, completed)
    • Infrastructure fixes (e.g., DDD-1125: resolving HTTP 500 errors on the hub's aggregation endpoint, completed in Feb 2025)
    • Email subscription feature implementation (DDD-1112: completed in Feb 2025)
  3. Submission Pattern: The hub accepts submissions from external contributors through pull requests. The project shows multiple historical entries for adding new websites, indicating this is an established workflow.

Key PR Details for Review Focus

Review Recommendations

Given the low code effort and established submission process:

  • Validate that both llms.txt URLs return valid content
  • Confirm the category "agency-services" is appropriate and consistent with existing categorizations
  • Verify the submission website information is current and correct
⏰ 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). (2)
  • GitHub Check: Cursor Bugbot
  • GitHub Check: Validate
🔇 Additional comments (3)
packages/content/data/websites/hypestudio-ai-agency-llms-txt.mdx (3)

1-9: YAML frontmatter structure is correct.

All required metadata fields are properly formatted and present. The syntax is valid.


11-13: Body content correctly matches frontmatter metadata.

The Markdown heading and description paragraph align with the corresponding frontmatter fields.


7-7: No action needed. The category value 'agency-services' is valid and consistent with the project's schema. It is already used in 6 existing website entries and follows the same naming convention as all other categories in the project.

Comment on lines +4 to +6
website: 'https://hypestudio.org'
llmsUrl: 'https://hypestudio.org/llms.txt'
llmsFullUrl: 'https://hypestudio.org/llms-full.txt'
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

🏁 Script executed:

#!/bin/bash
# Verify that the website and llms.txt endpoints are accessible

# Test main website
echo "Testing main website..."
curl -I --max-time 5 https://hypestudio.org 2>&1 | head -n 1

# Test llms.txt endpoint
echo "Testing llms.txt endpoint..."
curl -I --max-time 5 https://hypestudio.org/llms.txt 2>&1 | head -n 1

# Test llms-full.txt endpoint
echo "Testing llms-full.txt endpoint..."
curl -I --max-time 5 https://hypestudio.org/llms-full.txt 2>&1 | head -n 1

Repository: thedaviddias/llms-txt-hub

Length of output: 395


🏁 Script executed:

#!/bin/bash
# Verify that the website and llms.txt endpoints are accessible with clear status codes

echo "Testing main website..."
curl -s -o /dev/null -w "HTTP Status: %{http_code}\n" --max-time 5 https://hypestudio.org

echo "Testing llms.txt endpoint..."
curl -s -o /dev/null -w "HTTP Status: %{http_code}\n" --max-time 5 https://hypestudio.org/llms.txt

echo "Testing llms-full.txt endpoint..."
curl -s -o /dev/null -w "HTTP Status: %{http_code}\n" --max-time 5 https://hypestudio.org/llms-full.txt

Repository: thedaviddias/llms-txt-hub

Length of output: 206


Remove or fix the llms-full.txt URL—endpoint returns 404.

The llms-full.txt endpoint at https://hypestudio.org/llms-full.txt is not accessible (HTTP 404). Either remove this line or provide a valid URL. The llms.txt endpoint is working correctly (HTTP 200).

🤖 Prompt for AI Agents
In @packages/content/data/websites/hypestudio-ai-agency-llms-txt.mdx around
lines 4 - 6, The llmsFullUrl entry ('llmsFullUrl') points to a 404 endpoint;
remove the llmsFullUrl line or replace its value with a valid reachable URL (or
the same working llmsUrl) in the MDX frontmatter so the site no longer
references https://hypestudio.org/llms-full.txt; ensure the key name
'llmsFullUrl' is either deleted or updated to a working URL.

llmsUrl: 'https://hypestudio.org/llms.txt'
llmsFullUrl: 'https://hypestudio.org/llms-full.txt'
category: 'agency-services'
publishedAt: '2026-01-08'
Copy link

Choose a reason for hiding this comment

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

Bug: The publishedAt date is set to '2026-01-08', a future date. This will cause this entry to be incorrectly sorted as the newest item across the site.
Severity: HIGH | Confidence: High

🔍 Detailed Analysis

The file hypestudio-ai-agency-llms-txt.mdx sets publishedAt to '2026-01-08', a date in the future. The application's code, for instance in apps/web/lib/content-loader.ts, sorts content by publishedAt in descending order. This will cause this new entry to be incorrectly displayed as the most recent item across all website lists. This future date is also used directly in the RSS feed and for SEO structured data, which can cause issues with feed readers and search engine indexing.

💡 Suggested Fix

In packages/content/data/websites/hypestudio-ai-agency-llms-txt.mdx, change the publishedAt value from '2026-01-08' to a date in the present or past, likely '2025-01-08' to correct the apparent typo.

🤖 Prompt for AI Agent
Review the code at the location below. A potential bug has been identified by an AI
agent.
Verify if this is a real issue. If it is, propose a fix; if not, explain why it's not
valid.

Location: packages/content/data/websites/hypestudio-ai-agency-llms-txt.mdx#L8

Potential issue: The file `hypestudio-ai-agency-llms-txt.mdx` sets `publishedAt` to
`'2026-01-08'`, a date in the future. The application's code, for instance in
`apps/web/lib/content-loader.ts`, sorts content by `publishedAt` in descending order.
This will cause this new entry to be incorrectly displayed as the most recent item
across all website lists. This future date is also used directly in the RSS feed and for
SEO structured data, which can cause issues with feed readers and search engine
indexing.

Did we get this right? 👍 / 👎 to inform future reviews.
Reference ID: 8337587

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