Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions packages/content/data/websites/helloskin-hu-llms-txt.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: 'helloskin.hu'
description: 'Ha szép bőrre vágysz: Magyar és Koreai kozmetikumok a legjobb márkák termékeivel. Arcápolás, ingyenes bőrápolási tanácsadás és szupergyors szállítás.'
website: 'https://helloskin.hu/'
llmsUrl: 'https://helloskin.hu/llms.txt'
llmsFullUrl: 'https://helloskin.hu/llms-full.txt'
Comment on lines +5 to +6
Copy link

Choose a reason for hiding this comment

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

⚠️ Potential issue

🧩 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.

category: 'ecommerce-retail'
publishedAt: '2025-09-18'
---

# helloskin.hu

Ha szép bőrre vágysz: Magyar és Koreai kozmetikumok a legjobb márkák termékeivel. Arcápolás, ingyenes bőrápolási tanácsadás és szupergyors szállítás.
Loading