feat(community): add LocaPerk to llms.txt hub#612
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. 1 Skipped Deployment
|
WalkthroughAdds a new MDX metadata file for Loc aPerk website entry with frontmatter containing website name, description, URLs, category, and publication date, plus a brief descriptive paragraph. No functional code changes. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Possibly related PRs
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
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.
Actionable comments posted: 3
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@packages/content/data/websites/locaperk-llms-txt.mdx`:
- Line 3: Fix the plural typo in the description and the body paragraph: change
"LocaPerk transforms financial decision with behavioral intelligence." to
"LocaPerk transforms financial decisions with behavioral intelligence." and make
the same change wherever the sentence appears in the body paragraph (the line
that starts with "LocaPerk transforms financial decision...") so both the
frontmatter description and the content body use "decisions" plural.
- Line 7: The frontmatter category is incorrect: change the category value in
the MDX frontmatter from 'infrastructure-cloud' to 'finance-fintech' so the
entry is categorized with other fintech projects; locate the line containing the
category field (category: 'infrastructure-cloud') and replace the value with
'finance-fintech'.
- Around line 5-6: The llmsUrl and llmsFullUrl entries are pointing at endpoints
that issue HTTP 307 redirects instead of serving raw llms.txt content; fix them
by updating the llmsUrl and llmsFullUrl values to direct, non-redirecting URLs
that return the llms.txt payload (or reconfigure the server to serve the files
at those exact paths), and verify the endpoints return 200 with text/plain body
(no HTML/redirect). Ensure the updated values in llmsUrl and llmsFullUrl point
to the final file locations and test with an HTTP client (e.g., curl -I and GET)
to confirm no 3xx responses and correct llms.txt format.
| @@ -0,0 +1,13 @@ | |||
| --- | |||
| name: 'LocaPerk' | |||
| description: 'LocaPerk transforms financial decision with behavioral intelligence. Institutional underwriting tools (LocaPerk Insight) and behavioural signals (LocaCircle).' | |||
There was a problem hiding this comment.
Typo: "financial decision" → "financial decisions"
The description is missing a trailing s.
✏️ Proposed fix
-description: 'LocaPerk transforms financial decision with behavioral intelligence. Institutional underwriting tools (LocaPerk Insight) and behavioural signals (LocaCircle).'
+description: 'LocaPerk transforms financial decisions with behavioral intelligence. Institutional underwriting tools (LocaPerk Insight) and behavioural signals (LocaCircle).'The same correction applies to the body paragraph on Line 13.
📝 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.
| description: 'LocaPerk transforms financial decision with behavioral intelligence. Institutional underwriting tools (LocaPerk Insight) and behavioural signals (LocaCircle).' | |
| description: 'LocaPerk transforms financial decisions with behavioral intelligence. Institutional underwriting tools (LocaPerk Insight) and behavioural signals (LocaCircle).' |
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@packages/content/data/websites/locaperk-llms-txt.mdx` at line 3, Fix the
plural typo in the description and the body paragraph: change "LocaPerk
transforms financial decision with behavioral intelligence." to "LocaPerk
transforms financial decisions with behavioral intelligence." and make the same
change wherever the sentence appears in the body paragraph (the line that starts
with "LocaPerk transforms financial decision...") so both the frontmatter
description and the content body use "decisions" plural.
| llmsUrl: 'https://www.locaperk.com/llms.txt' | ||
| llmsFullUrl: 'https://www.locaperk.com/llms-full.txt' |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Check HTTP status and first lines of both llms.txt endpoints.
for url in "https://www.locaperk.com/llms.txt" "https://www.locaperk.com/llms-full.txt"; do
echo "=== $url ==="
curl -s -o /dev/null -w "HTTP %{http_code}\n" "$url"
echo "--- First 5 lines ---"
curl -sL --max-time 10 "$url" 2>&1 | head -5
echo ""
doneRepository: thedaviddias/llms-txt-hub
Length of output: 50381
Both llms.txt URLs are misconfigured and must be fixed before this entry is usable
Both endpoints return HTTP 307 redirects to the LocaPerk homepage instead of serving valid llms.txt content. The URLs need to be configured to directly serve the llms.txt files, not redirect to HTML pages. This entry cannot function in the hub until these endpoints return proper llms.txt format.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@packages/content/data/websites/locaperk-llms-txt.mdx` around lines 5 - 6, The
llmsUrl and llmsFullUrl entries are pointing at endpoints that issue HTTP 307
redirects instead of serving raw llms.txt content; fix them by updating the
llmsUrl and llmsFullUrl values to direct, non-redirecting URLs that return the
llms.txt payload (or reconfigure the server to serve the files at those exact
paths), and verify the endpoints return 200 with text/plain body (no
HTML/redirect). Ensure the updated values in llmsUrl and llmsFullUrl point to
the final file locations and test with an HTTP client (e.g., curl -I and GET) to
confirm no 3xx responses and correct llms.txt format.
| website: 'https://www.locaperk.com' | ||
| llmsUrl: 'https://www.locaperk.com/llms.txt' | ||
| llmsFullUrl: 'https://www.locaperk.com/llms-full.txt' | ||
| category: 'infrastructure-cloud' |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# List all unique category values from the websites data directory
rg --no-filename -o "^category: '[^']+'" packages/content/data/websites/ | sort | uniq -c | sort -rnRepository: thedaviddias/llms-txt-hub
Length of output: 592
🏁 Script executed:
#!/bin/bash
# Check the content of the LocaPerk file to understand context better
cat -n packages/content/data/websites/locaperk-llms-txt.mdx | head -20Repository: thedaviddias/llms-txt-hub
Length of output: 724
🏁 Script executed:
#!/bin/bash
# Search for similar fintech-related entries to see what categories they use
rg -l "fintech|finance|behavioral" packages/content/data/websites/ | head -5 | xargs -I {} sh -c 'echo "=== {} ===" && cat -n {} | grep -E "^.*category:" | head -1'Repository: thedaviddias/llms-txt-hub
Length of output: 545
Change category from infrastructure-cloud to finance-fintech
LocaPerk's description clearly states it "transforms financial decision with behavioral intelligence" with institutional underwriting tools and behavioral signals. This is a fintech company, not cloud infrastructure. The category should be finance-fintech, which is used by 92 similar entries in the repository (e.g., axiom-trade, aveai, carbon).
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@packages/content/data/websites/locaperk-llms-txt.mdx` at line 7, The
frontmatter category is incorrect: change the category value in the MDX
frontmatter from 'infrastructure-cloud' to 'finance-fintech' so the entry is
categorized with other fintech projects; locate the line containing the category
field (category: 'infrastructure-cloud') and replace the value with
'finance-fintech'.
This PR adds LocaPerk to the llms.txt hub.
Submitted by: emmiedammie
Website: https://www.locaperk.com
llms.txt: https://www.locaperk.com/llms.txt
llms-full.txt: https://www.locaperk.com/llms-full.txt
Category: infrastructure-cloud
This PR was created via admin token for a user without GitHub repository access.
Please review and merge if appropriate.
Summary by CodeRabbit