feat: add Astroline - astrology app to llms.txt hub#393
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
WalkthroughA new MDX content file was added for the Astroline astrology app, containing YAML front matter (name, description, website, llmsUrl, llmsFullUrl, category, publishedAt) and a short body with a heading and paragraph. No code, logic, or exported APIs were modified. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Pre-merge checks (3 passed)✅ Passed checks (3 passed)
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. ✨ Finishing touches🧪 Generate unit tests
Comment |
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Nitpick comments (3)
packages/content/data/websites/astroline-astrology-app-llms-txt.mdx (3)
3-3: Tone down marketing superlatives in description for editorial consistency.Use a neutral, descriptive sentence.
-description: 'The Best Astrology App readings Online: Palm Reading, Birth Chart, Love Compatibility, Daily Horoscope, Astrocartography and more in Astroline app.' +description: 'Astroline offers palm reading, birth charts, love compatibility, daily horoscopes, and astrocartography.'
11-13: Mirror the neutral description in the body to avoid promotional tone duplication.-The Best Astrology App readings Online: Palm Reading, Birth Chart, Love Compatibility, Daily Horoscope, Astrocartography and more in Astroline app. +Astroline offers palm reading, birth charts, love compatibility, daily horoscopes, and astrocartography.
14-14: Add a trailing newline at EOF.
📜 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/astroline-astrology-app-llms-txt.mdx(1 hunks)
🧰 Additional context used
🔍 Remote MCP Linear
Additional Linear workspace context relevant to PR #393 (Astroline):
- No Linear issue matches "Astroline" (search returned no results).
- Current llms.txt-hub-related issues (useful precedents / infra notes): THE-1133 "Add vercel llms.txt" — Done; THE-1134 "Add upsun.com" — Todo; THE-1125 "/llms.txt is returning a 500" — Done; THE-1112 "Add email to subscribe does not work" — Done; THE-1123 "The latest news are not updating" — Backlog. These show prior additions and existing infra/availability issues to consider when merging.
- No workspace documents found for "llms.txt".
- No Linear workspace users returned for the queried GitHub actors (thedaviddias, s.krasakovich). (No matching workspace profile found.)
- Linear docs: PR reviews are surfaced in Linear but the full code review/approval must be done by opening the PR in GitHub. (Open the PR in GitHub to perform inline review/approve/merge.)
⏰ 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/astroline-astrology-app-llms-txt.mdx (4)
1-14: No duplicate domain entries found — resolve.Search of packages/content/data/websites returned only packages/content/data/websites/astroline-astrology-app-llms-txt.mdx; no duplicates detected.
4-5: Confirmed: llms.txt reachable (200, text/plain); site canonicalizes to /en/Findings: https://astroline.today → 307 redirect → /en/; https://astroline.today/en → 200 (HTML); https://astroline.today/llms.txt → 200, content-type: text/plain; charset=utf-8.
Action: no change required. Optional: update website to "https://astroline.today/en/" (trailing slash) to match the server's canonical URL.
File: packages/content/data/websites/astroline-astrology-app-llms-txt.mdx (lines 4–5)
1-9: No change required — llmsFullUrl is optional and empty string is handled.
Types/validation and generation logic treat llmsFullUrl as optional/falsy (e.g. apps/web/lib/content-loader.ts:llmsFullUrl?: string | null; apps/web/content-collections.ts uses zod validation; scripts/generate-websites.ts and app/(files)/llms.txt/route.ts conditionally handle/skip empty values).Likely an incorrect or invalid review comment.
7-8: ```shell
#!/bin/bash
set -euo pipefail
printf "PWD: %s\n\n" "$(pwd)"target="packages/content/data/websites/astroline-astrology-app-llms-txt.mdx"
printf "=== Check target file ===\n"
if [ -f "$target" ]; then
printf "File exists: %s\n\n" "$target"
printf "=== Frontmatter (first 80 lines) ===\n"
sed -n '1,80p' "$target" || true
else
printf "File not found: %s\n\n" "$target"
fi
printf "\n"printf "=== List mdx files under packages/content/data/websites ===\n"
if [ -d packages/content/data/websites ]; then
find packages/content/data/websites -type f -name "*.mdx" -print || true
else
printf "directory packages/content/data/websites not present\n"
fi
printf "\n"Use grep (fallback) to search repository for likely schema/frontmatter validators
patterns=(
"defineDocumentType"
"defineCollection"
"makeSource"
"contentlayer"
"contentLayer"
"zod"
"z\.enum"
"z\.literal"
"z\.union"
"publishedAt"
"frontmatter"
"frontMatter"
"category:"
"\benum\b"
"\bCategory\b"
"validators"
"schema"
)for p in "${patterns[@]}"; do
printf "=== grep for pattern: %s ===\n" "$p"use -I to skip binary, -n for line numbers
grep -RIn -E --exclude-dir=node_modules --exclude-dir=.git --exclude-dir=dist --exclude-dir=build --exclude-dir=.next -- "$p" . || true
printf "\n"
donegit grep fallback (if repo is present)
if command -v git >/dev/null 2>&1 && [ -d .git ]; then
printf "=== git grep: publishedAt and category: ===\n"
git grep -n "publishedAt" || true
git grep -n "category:" || true
printf "\n"
fiprintf "=== List packages/validators (if present) ===\n"
if [ -d packages/validators ]; then ls -la packages/validators; else printf "no packages/validators directory\n"; fi
printf "\n"printf "=== packages/content/package.json (if present) ===\n"
if [ -f packages/content/package.json ]; then cat packages/content/package.json; else printf "no packages/content/package.json\n"; fi
printf "\n"printf "=== Search for publishedAt occurrences specifically under packages/content ===\n"
grep -RIn --exclude-dir=node_modules --exclude-dir=.git --exclude-dir=dist --exclude-dir=build "publishedAt" packages || true
printf "\n"printf "=== Search for timezone-related settings (grep fallback) ===\n"
grep -RIn --exclude-dir=node_modules --exclude-dir=.git -E "timezone|timeZone|TZ=|CI_TIMEZONE|Vercel|vercel|Intl.DateTimeFormat" . || true
printf "\n"printf "=== Find files named schema (shallow) ===\n"
find . -maxdepth 5 -type f -iname "schema" -print || true
printf "\n"</blockquote></details> </blockquote></details> </details> <!-- This is an auto-generated comment by CodeRabbit for review status -->
This PR adds Astroline - astrology app to the llms.txt hub.
Submitted by: s.krasakovich
Website: https://astroline.today/en
llms.txt: https://astroline.today/llms.txt
Category: personal
This PR was created via admin token for a user without GitHub repository access.
Please review and merge if appropriate.
Summary by CodeRabbit