Skip to content

feat(community): add LocaPerk to llms.txt hub#612

Merged
thedaviddias merged 1 commit into
mainfrom
submit-locaperk-1771958568235
Mar 14, 2026
Merged

feat(community): add LocaPerk to llms.txt hub#612
thedaviddias merged 1 commit into
mainfrom
submit-locaperk-1771958568235

Conversation

@thedaviddias

@thedaviddias thedaviddias commented Feb 24, 2026

Copy link
Copy Markdown
Owner

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

  • Documentation
    • Added new website entry for Loc aPerk with comprehensive metadata and descriptions to the content database.

@vercel

vercel Bot commented Feb 24, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

1 Skipped Deployment
Project Deployment Actions Updated (UTC)
llms-txt-hub Ignored Ignored Feb 24, 2026 6:42pm

@coderabbitai

coderabbitai Bot commented Feb 24, 2026

Copy link
Copy Markdown

Walkthrough

Adds 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

Cohort / File(s) Summary
New Website Metadata Entry
packages/content/data/websites/locaperk-llms-txt.mdx
Introduces static content metadata file with frontmatter (name, description, website, llms URLs, category, published date) and description paragraph for Loc aPerk website entry.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~3 minutes

Possibly related PRs

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately describes the main change: adding LocaPerk to the llms.txt hub. It is concise, specific, and clearly summarizes the primary objective of the pull request.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch submit-locaperk-1771958568235

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.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

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.

ℹ️ Review info

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 91b218d and 37ded99.

📒 Files selected for processing (1)
  • packages/content/data/websites/locaperk-llms-txt.mdx

@@ -0,0 +1,13 @@
---
name: 'LocaPerk'
description: 'LocaPerk transforms financial decision with behavioral intelligence. Institutional underwriting tools (LocaPerk Insight) and behavioural signals (LocaCircle).'

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor

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.

Suggested change
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.

Comment on lines +5 to +6
llmsUrl: 'https://www.locaperk.com/llms.txt'
llmsFullUrl: 'https://www.locaperk.com/llms-full.txt'

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🔴 Critical

🧩 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 ""
done

Repository: 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'

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor

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

Repository: 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 -20

Repository: 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'.

@thedaviddias thedaviddias added the needs:manual-review Manual review required before merging. label Mar 14, 2026
@thedaviddias thedaviddias merged commit 10aa293 into main Mar 14, 2026
6 checks passed
@thedaviddias thedaviddias deleted the submit-locaperk-1771958568235 branch March 14, 2026 21:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

needs:manual-review Manual review required before merging.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant