-
-
Notifications
You must be signed in to change notification settings - Fork 354
feat: add HypeStudio AI Agency to llms.txt hub #512
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
WalkthroughA 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
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes 🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ 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. Comment |
There was a problem hiding this 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
📒 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:
-
Project Status: The project is operational with multiple completed tasks for adding websites to the hub (including Vercel and other contributions)
-
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)
-
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
- Submission Method: Created via admin token for a user without GitHub access (follow-up verification may be needed)
- Content Changes: Minimal and straightforward - single MDX file addition with 13 lines
- Metadata Accuracy: Should verify that the YAML frontmatter matches the actual website content:
- Website: https://hypestudio.org
- llms.txt endpoint: https://hypestudio.org/llms.txt
- llms-full.txt endpoint: https://hypestudio.org/llms-full.txt
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.
| website: 'https://hypestudio.org' | ||
| llmsUrl: 'https://hypestudio.org/llms.txt' | ||
| llmsFullUrl: 'https://hypestudio.org/llms-full.txt' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 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 1Repository: 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.txtRepository: 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' |
There was a problem hiding this comment.
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
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.
packages/content/data/websites/hypestudio-ai-agency-llms-txt.mdxwith metadata (name,description,website,llmsUrl,llmsFullUrl,category,publishedAt) and brief contentWritten by Cursor Bugbot for commit e6b2459. This will update automatically on new commits. Configure here.
Summary by CodeRabbit
✏️ Tip: You can customize this high-level summary in your review settings.