-
-
Notifications
You must be signed in to change notification settings - Fork 273
feat: add Tepelné čerpadlá IME to llms.txt hub #294
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?
The head ref may contain hidden characters: "submit-tepeln\u00E9-\u010Derpadl\u00E1-ime-1753102853296"
feat: add Tepelné čerpadlá IME to llms.txt hub #294
Conversation
WalkthroughA new markdown file was added containing metadata and descriptive content about "Tepelné čerpadlá IME." The file includes frontmatter with details such as name, description, website, category, and publication date, as well as a short paragraph about the product. Changes
Estimated code review effort1 (<30 minutes) 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. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
@imenergy is attempting to deploy a commit to the David Dias Digital's projects Team on Vercel. A member of the Team first needs to authorize it. |
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: 2
🧹 Nitpick comments (1)
packages/content/websites/data/tepelné-čerpadlá-ime-llms-txt.mdx (1)
11-13
: Content duplicates description verbatim – consider adding unique value
Repeating the exact description from front-matter provides no extra SEO/context. A short usage example or highlight of ML relevance would be more useful.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
packages/content/websites/data/tepelné-čerpadlá-ime-llms-txt.mdx
(1 hunks)
🔇 Additional comments (1)
packages/content/websites/data/tepelné-čerpadlá-ime-llms-txt.mdx (1)
5-6
: LLMS endpoints return HTTP 200
Confirmed that both https://ime.sk/llms.txt and https://ime.sk/llms-full.txt return HTTP 200 when following redirects. No further action needed.
@@ -0,0 +1,13 @@ | |||
--- |
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.
🛠️ Refactor suggestion
Non-ASCII path may break build/CI tools – use an ASCII slug for the filename
Many static-site generators, CI scripts, and some operating systems handle non-ASCII paths poorly. A safe, predictable path like tepelne-cerpadla-ime-llms-txt.mdx
will avoid encoding issues on cross-platform clones, Docker images, and CD pipelines.
🤖 Prompt for AI Agents
In packages/content/websites/data/tepelné-čerpadlá-ime-llms-txt.mdx at line 1,
the filename contains non-ASCII characters which may cause build or CI tools to
fail. Rename the file to use only ASCII characters, for example, change it to
tepelne-cerpadla-ime-llms-txt.mdx, to ensure compatibility across different
systems and pipelines.
name: 'Tepelné čerpadlá IME' | ||
description: 'Tepelné čerpadlá IME sú zárukou kvality, spoľahlivosti a dlhej životnosti. Dbáme na odbornú montáž, garantovaný servis, záruku a vašu spokojnosť.' | ||
website: 'https://ime.sk' | ||
llmsUrl: 'https://ime.sk/llms.txt' | ||
llmsFullUrl: 'https://ime.sk/llms-full.txt' | ||
category: 'ai-ml' | ||
publishedAt: '2025-07-21' |
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.
💡 Verification agent
🧩 Analysis chain
Front-matter schema inconsistencies & missing slug
- Keys
llmsUrl
/llmsFullUrl
are unique to this file. Other entries in the repo usually follow the patternllms
/llmsFull
(please cross-check). - Adding an explicit
slug
(kebab-case, ASCII) simplifies routing after you rename the file. - Future-dated
publishedAt
can break sort/filter logic if build runs before that day. Prefer today’s or earlier date.
Example patch:
name: 'Tepelné čerpadlá IME'
@@
-llmsUrl: 'https://ime.sk/llms.txt'
-llmsFullUrl: 'https://ime.sk/llms-full.txt'
+llms: 'https://ime.sk/llms.txt'
+llmsFull: 'https://ime.sk/llms-full.txt'
+slug: 'tepelne-cerpadla-ime'
-publishedAt: '2025-07-21'
+publishedAt: '2025-07-14' # adjust as required
🏁 Script executed:
#!/bin/bash
set -e
echo "=== llmsUrl occurrences ==="
rg "llmsUrl" || echo "No matches for llmsUrl"
echo -e "\n=== llmsFullUrl occurrences ==="
rg "llmsFullUrl" || echo "No matches for llmsFullUrl"
echo -e "\n=== llms: front-matter keys in .mdx files ==="
rg "^llms:" -n --glob "*.mdx" || echo "No matches for llms:"
echo -e "\n=== llmsFull: front-matter keys in .mdx files ==="
rg "^llmsFull:" -n --glob "*.mdx" || echo "No matches for llmsFull:"
echo -e "\n=== slug: front-matter keys in .mdx files ==="
rg "^slug:" -n --glob "*.mdx" || echo "No matches for slug:"
Length of output: 61466
Fix front-matter slug and published date
- Keep the existing
llmsUrl
/llmsFullUrl
keys (they’re used throughout our templates, scripts, and UI). - Add an explicit ASCII
slug
to avoid non-ASCII/file-path edge cases when routing. - Change
publishedAt
to today’s (or earlier) date so it isn’t future-dated.
Example patch in packages/content/websites/data/tepelné-čerpadlá-ime-llms-txt.mdx:
name: 'Tepelné čerpadlá IME'
description: 'Tepelné čerpadlá IME sú zárukou kvality, spoľahlivosti a dlhej životnosti. Dbáme na odbornú montáž, garantovaný servis, záruku a vašu spokojnosť.'
website: 'https://ime.sk'
-llmsUrl: 'https://ime.sk/llms.txt'
-llmsFullUrl: 'https://ime.sk/llms-full.txt'
+llmsUrl: 'https://ime.sk/llms.txt'
+llmsFullUrl: 'https://ime.sk/llms-full.txt'
+slug: 'tepelne-cerpadla-ime'
-publishedAt: '2025-07-21'
+publishedAt: '2025-07-14' # or today’s date
📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
name: 'Tepelné čerpadlá IME' | |
description: 'Tepelné čerpadlá IME sú zárukou kvality, spoľahlivosti a dlhej životnosti. Dbáme na odbornú montáž, garantovaný servis, záruku a vašu spokojnosť.' | |
website: 'https://ime.sk' | |
llmsUrl: 'https://ime.sk/llms.txt' | |
llmsFullUrl: 'https://ime.sk/llms-full.txt' | |
category: 'ai-ml' | |
publishedAt: '2025-07-21' | |
name: 'Tepelné čerpadlá IME' | |
description: 'Tepelné čerpadlá IME sú zárukou kvality, spoľahlivosti a dlhej životnosti. Dbáme na odbornú montáž, garantovaný servis, záruku a vašu spokojnosť.' | |
website: 'https://ime.sk' | |
llmsUrl: 'https://ime.sk/llms.txt' | |
llmsFullUrl: 'https://ime.sk/llms-full.txt' | |
slug: 'tepelne-cerpadla-ime' | |
category: 'ai-ml' | |
publishedAt: '2025-07-14' # or today’s date |
🤖 Prompt for AI Agents
In packages/content/websites/data/tepelné-čerpadlá-ime-llms-txt.mdx around lines
2 to 8, add an explicit ASCII slug field to the front-matter to prevent routing
issues with non-ASCII characters, and update the publishedAt date to today's
date or an earlier date to avoid future-dating. Keep the existing llmsUrl and
llmsFullUrl keys unchanged as they are used in templates and scripts.
This PR adds Tepelné čerpadlá IME to the llms.txt hub.
Submitted by: @imenergy
Website: https://ime.sk
llms.txt: https://ime.sk/llms.txt
llms-full.txt: https://ime.sk/llms-full.txt
Category: ai-ml
Please review your PR, a reviewer will merge it if appropriate.
Summary by CodeRabbit