-
-
Couldn't load subscription status.
- Fork 343
feat: add helloskin.hu to llms.txt hub #397
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
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
WalkthroughAdds a new MDX data entry for helloskin.hu under packages/content/data/websites. The file defines front matter fields (name, description, website, llmsUrl, llmsFullUrl, category, publishedAt) and a body with a header and Hungarian description mirroring the front matter. No code logic changes. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests
Tip 👮 Agentic pre-merge checks are now available in preview!Pro plan users can now enable pre-merge checks in their settings to enforce checklists before merging PRs.
Please see the documentation for more information. Example: reviews:
pre_merge_checks:
custom_checks:
- name: "Undocumented Breaking Changes"
mode: "warning"
instructions: |
Pass/fail criteria: All breaking changes to public APIs, CLI flags, environment variables, configuration keys, database schemas, or HTTP/GraphQL endpoints must be documented in the "Breaking Change" section of the PR description and in CHANGELOG.md. Exclude purely internal or private changes (e.g., code not exported from package entry points or explicitly marked as internal).Please share your feedback with us on this Discord post. 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
🧹 Nitpick comments (1)
packages/content/data/websites/helloskin-hu-llms-txt.mdx (1)
11-13: Optional: Add a brief English summary for discoverability.Keeping the Hungarian tagline is great; consider adding one English sentence in the body to aid non‑HU readers/search.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
Knowledge base: Disabled due to Reviews -> Disable Knowledge Base setting
📒 Files selected for processing (1)
packages/content/data/websites/helloskin-hu-llms-txt.mdx(1 hunks)
🧰 Additional context used
🔍 Remote MCP Linear
Additional context (from Linear)
-
Related llms.txt hub issues: THE-1133 “Add vercel llms.txt” — Done; THE-1125 “https://llmstxthub.com/llms.txt is returning a 500” — Done; THE-1112 “Add email to subscribe does not work” — Done; THE-1134 “Add upsun.com” — Todo; THE-1123 “The latest news are not updating” — Backlog.
-
Linear docs include "Pull Request Reviews" guidance (reviews handled via GitHub).
-
No "contributing" documents returned from Linear document search.
-
Search for user "thedaviddias" returned no Linear user results.
⏰ 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 (4)
packages/content/data/websites/helloskin-hu-llms-txt.mdx (4)
1-9: Front matter looks complete and consistent.All required fields appear present and well‑formed. Nice.
8-8: Date format sanity check.
publishedAt: '2025-09-18'is ISO‑8601 (YYYY‑MM‑DD). Confirm this aligns with the site’s build expectations (no timezone component needed).
7-7: Category validated — 'ecommerce-retail' is an allowed category.
packages/content/data/websites/helloskin-hu-llms-txt.mdx (line 7): no change required.
1-9: No duplicates found — safe to merge. Search of packages/content/data/websites (excluding packages/content/data/websites/helloskin-hu-llms-txt.mdx) returned no other occurrences of "helloskin.hu".
| llmsUrl: 'https://helloskin.hu/llms.txt' | ||
| llmsFullUrl: 'https://helloskin.hu/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
Verify llms.txt endpoints are reachable and non‑empty.
Please confirm both URLs return 200, text/plain (or similar), and non‑empty content.
Run:
🏁 Script executed:
#!/bin/bash
set -euo pipefail
check() {
url="$1"
echo "==> $url"
# Show final status and content-type
curl -sI -L "$url" | awk 'BEGIN{code="";ct=""} /^HTTP/{code=$2} tolower($0) ~ /^content-type:/{ct=$0} END{print "STATUS:",code; print ct}'
# Fetch a small sample and count bytes
bytes=$(curl -sL "$url" | head -c 2048 | wc -c | awk '{print $1}')
echo "SAMPLE_BYTES:" "$bytes"
test "$bytes" -gt 0 || { echo "ERROR: empty content"; exit 1; }
echo
}
check "https://helloskin.hu/llms.txt"
check "https://helloskin.hu/llms-full.txt"Length of output: 195
Fix broken llmsFullUrl (returns 404 / HTML)
packages/content/data/websites/helloskin-hu-llms-txt.mdx (lines 5–6)
- llmsUrl: OK — 200, content-type: text/plain;charset=UTF-8, sample bytes: 2048.
- llmsFullUrl: FAIL — 404, content-type: text/html; charset=UTF-8. Update the URL to a reachable text/plain resource or remove the llmsFullUrl reference.
🤖 Prompt for AI Agents
In packages/content/data/websites/helloskin-hu-llms-txt.mdx around lines 5 to 6,
the llmsFullUrl currently points to 'https://helloskin.hu/llms-full.txt' which
returns 404 HTML; either replace llmsFullUrl with a valid reachable text/plain
URL that serves the full LLMS data (ensure it returns 200 and text/plain) or
remove the llmsFullUrl field entirely from the file if no replacement is
available; update any consumers/docs accordingly.
This PR adds helloskin.hu to the llms.txt hub.
Submitted by: kkinyo
Website: https://helloskin.hu/
llms.txt: https://helloskin.hu/llms.txt
llms-full.txt: https://helloskin.hu/llms-full.txt
Category: ecommerce-retail
This PR was created via admin token for a user without GitHub repository access.
Please review and merge if appropriate.
Summary by CodeRabbit