feat: add Hinto AI to llms.txt hub#394
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
WalkthroughAdded a new MDX content file defining a website entry for “Hinto AI,” including front matter (name, description, website, llmsUrl, category, publishedAt) and a body with an H1 title and repeated description. 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: 1
🧹 Nitpick comments (1)
packages/content/data/websites/hinto-ai-llms-txt.mdx (1)
11-13: Minor content polish: avoid repeating the description verbatim.Optional: either remove the body paragraph or tweak it to add context beyond the front matter description.
-Create answers users find, Google ranks, and LLMs understand. Turn recorded demos into knowledge base content in minutes. +Hinto AI helps teams convert recorded demos into structured knowledge base content in minutes—optimized for human readers, search engines, and LLM consumption.
📜 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/hinto-ai-llms-txt.mdx(1 hunks)
🧰 Additional context used
🔍 Remote MCP Linear
Relevant Linear context for reviewing PR #394
- Project: "llms.txt hub" (id: 9e525581-40a2-4314-9973-043fa45ed570) — status: In Progress.
- There is an existing task to "Check that the domain doesn't exist already" (THE-1127) — Status: Done (indicates a duplicate-domain check/validation was added).
- Precedent: "Add vercel llms.txt" (THE-1133) — Status: Done (shows prior pattern for adding provider llms.txt entries).
- Related infra/tasks: THE-1125 (llmstxthub.com/llms.txt returning 500 — Done) and THE-1134 (Add upsun.com — Todo), showing past hosting issues and ongoing additions.
- Linear document search for "llms.txt" / "contribute" returned no matching docs.
⏰ 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
| --- | ||
| name: 'Hinto AI' | ||
| description: 'Create answers users find, Google ranks, and LLMs understand. Turn recorded demos into knowledge base content in minutes.' | ||
| website: 'https://hintoai.com' | ||
| llmsUrl: 'https://hintoai.com/llms.txt' | ||
| llmsFullUrl: '' | ||
| category: 'business-operations' | ||
| publishedAt: '2025-09-12' | ||
| --- |
There was a problem hiding this comment.
💡 Verification agent
🧩 Analysis chain
Front matter looks good; address empty llmsFullUrl and validate category/duplicates.
- llmsFullUrl is empty. If optional, drop the field; if required, populate it with the final resolved URL (often same as llmsUrl).
- Please confirm "business-operations" is a valid category in this repo’s taxonomy.
- Quick duplicate check recommended to ensure no prior entry for hintoai.com.
Run:
If optional, apply:
llmsUrl: 'https://hintoai.com/llms.txt'
-llmsFullUrl: ''
category: 'business-operations'If required and it resolves without redirect, apply:
llmsUrl: 'https://hintoai.com/llms.txt'
-llmsFullUrl: ''
+llmsFullUrl: 'https://hintoai.com/llms.txt'
category: 'business-operations'🏁 Script executed:
#!/bin/bash
set -euo pipefail
echo "1) Duplicate check for domain and llms.txt:"
rg -nPI --glob 'packages/content/data/websites/**' '(website:\s*.\bhintoai\.com\b|llmsUrl:\s*.\bhintoai\.com/llms\.txt\b)' -C1 || echo "No duplicates found."
echo -e "\n2) Category inventory (verify 'business-operations' exists among peers):"
rg -nPI --glob 'packages/content/data/websites/**' '^category:\s*.\K(.+)(?=.)' -r '$1' | sed "s/[\'\"]//g" | awk -F: '{print $NF}' | sort -u
echo -e "\n3) Resolve final llms.txt URL (use this value for llmsFullUrl if needed):"
curl -s -L -o /dev/null -w "effective_url=%{url_effective}\nstatus=%{http_code}\n" 'https://hintoai.com/llms.txt'Length of output: 506
Populate llmsFullUrl with resolved llms.txt; category & duplicates verified
llmsFullUrl resolves to https://hintoai.com/llms.txt (HTTP 200). "business-operations" exists in the taxonomy. No duplicate hintoai.com entry found.
File: packages/content/data/websites/hinto-ai-llms-txt.mdx (lines 1-9)
llmsUrl: 'https://hintoai.com/llms.txt'
-llmsFullUrl: ''
+llmsFullUrl: 'https://hintoai.com/llms.txt'
category: 'business-operations'📝 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: 'Hinto AI' | |
| description: 'Create answers users find, Google ranks, and LLMs understand. Turn recorded demos into knowledge base content in minutes.' | |
| website: 'https://hintoai.com' | |
| llmsUrl: 'https://hintoai.com/llms.txt' | |
| llmsFullUrl: '' | |
| category: 'business-operations' | |
| publishedAt: '2025-09-12' | |
| --- | |
| --- | |
| name: 'Hinto AI' | |
| description: 'Create answers users find, Google ranks, and LLMs understand. Turn recorded demos into knowledge base content in minutes.' | |
| website: 'https://hintoai.com' | |
| llmsUrl: 'https://hintoai.com/llms.txt' | |
| llmsFullUrl: 'https://hintoai.com/llms.txt' | |
| category: 'business-operations' | |
| publishedAt: '2025-09-12' | |
| --- |
🤖 Prompt for AI Agents
In packages/content/data/websites/hinto-ai-llms-txt.mdx around lines 1 to 9,
llmsFullUrl is empty even though the llms.txt resolves to
https://hintoai.com/llms.txt (HTTP 200); update the llmsFullUrl field to
"https://hintoai.com/llms.txt" so it contains the resolved URL, leaving the rest
of the frontmatter (name, description, website, category, publishedAt) unchanged
since category and duplicates are already verified.
This PR adds Hinto AI to the llms.txt hub.
Submitted by: dmitry
Website: https://hintoai.com
llms.txt: https://hintoai.com/llms.txt
Category: business-operations
This PR was created via admin token for a user without GitHub repository access.
Please review and merge if appropriate.
Summary by CodeRabbit