Skip to content

feat: add Digital Inning to llms.txt hub#389

Merged
thedaviddias merged 1 commit into
mainfrom
submit-digital-inning-1757161347501
Sep 8, 2025
Merged

feat: add Digital Inning to llms.txt hub#389
thedaviddias merged 1 commit into
mainfrom
submit-digital-inning-1757161347501

Conversation

@thedaviddias

@thedaviddias thedaviddias commented Sep 6, 2025

Copy link
Copy Markdown
Owner

This PR adds Digital Inning to the llms.txt hub.

Submitted by: dhaval.whiznic

Website: https://digitalinning.com/
llms.txt: https://digitalinning.com/llms.txt
llms-full.txt: https://digitalinning.com/llms-full.txt
Category: agency-services


This PR was created via admin token for a user without GitHub repository access.

Please review and merge if appropriate.

Summary by CodeRabbit

  • New Features
    • Added a new listing for “Digital Inning” in the Websites directory under the Agency Services category. Includes a title, description, website link, and LLMs URLs. Published on 2025-09-06.

@vercel

vercel Bot commented Sep 6, 2025

Copy link
Copy Markdown

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

Project Deployment Preview Comments Updated (UTC)
llms-txt-hub Ready Ready Preview Comment Sep 6, 2025 0:25am

@coderabbitai

coderabbitai Bot commented Sep 6, 2025

Copy link
Copy Markdown

Walkthrough

Added a new MDX content file defining a website entry for “Digital Inning” with frontmatter fields (name, description, website, llmsUrl, llmsFullUrl, category, publishedAt) and a simple body (H1 and paragraph mirroring the description).

Changes

Cohort / File(s) Summary of Changes
New website entry (MDX)
packages/content/data/websites/digital-inning-llms-txt.mdx
Introduced a new MDX file with frontmatter: name, description, website, llmsUrl, llmsFullUrl, category (agency-services), publishedAt (2025-09-06); body includes an H1 and a paragraph repeating the description.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Possibly related PRs

✨ Finishing Touches
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch submit-digital-inning-1757161347501

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: 1

🧹 Nitpick comments (4)
packages/content/data/websites/digital-inning-llms-txt.mdx (4)

5-6: Prefer concise llms.txt and move long content to llms-full.txt.

llms.txt is very large (~1500 lines). Keep llms.txt minimal and put verbose sections in llms-full.txt once it’s correctly hosted as text/plain.


3-3: Tone: avoid superlatives; use neutral, directory-style copy.

Suggested copy to keep it factual and consistent with a listings hub:

-description: 'Discover top-tier digital marketing services in India with Digital Inning, the leading agency based in Rajkot. Elevate your online presence today.'
+description: 'Digital Inning is a digital marketing agency based in Rajkot, India, offering services such as SEO, PPC, social media, content, and website development.'
...
-Discover top-tier digital marketing services in India with Digital Inning, the leading agency based in Rajkot. Elevate your online presence today.
+Digital Inning is a digital marketing agency in Rajkot, India, providing SEO, PPC, social media, content, and website development services.

Also applies to: 13-13


11-11: H1 is fine; optionally omit body duplication.

The H1 plus repeated description is acceptable, but you can omit the body paragraph to avoid duplication—frontmatter description is already surfaced in listings.


1-1: Minor: ensure trailing newline at EOF.

Some linters flag missing newline at end of file.

Also applies to: 14-14

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between 5caf866 and 125097b.

📒 Files selected for processing (1)
  • packages/content/data/websites/digital-inning-llms-txt.mdx (1 hunks)
⏰ 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 (2)
packages/content/data/websites/digital-inning-llms-txt.mdx (2)

2-9: Frontmatter fields look correct.

name, description, website, llmsUrl, llmsFullUrl, category, and publishedAt align with typical entries; date format is ISO-8601.


7-7: No change needed: ‘agency-services’ is a valid category. Found in agile-it-cmmc-compliance-llms-txt.mdx, yellowlime-llms-txt.mdx, and digital-inning-llms-txt.mdx, confirming it’s already part of the site taxonomy.

Comment on lines +5 to +6
llmsUrl: 'https://digitalinning.com/llms.txt'
llmsFullUrl: 'https://digitalinning.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.

💡 Verification agent

🧩 Analysis chain

Verify target URLs resolve and are correctly typed.

  • llms.txt is reachable and returns plaintext, but appears to contain full marketing content. (digitalinning.com)
  • llms-full.txt currently returns HTML (likely a redirect/404 fallback), not a plaintext file. Please confirm the file exists at the given path or update the URL. (digitalinning.com)

Run to verify status and content types:


🏁 Script executed:

#!/bin/bash
set -euo pipefail
for u in \
  'https://digitalinning.com/llms.txt' \
  'https://digitalinning.com/llms-full.txt'
do
  echo "==> $u"
  curl -sIL "$u" | sed -n '1,15p'
  echo "--- content-type ---"
  curl -sI "$u" | grep -i '^content-type'
done

Length of output: 1694


Update LLMS URLs

  • llms.txt (https://digitalinning.com/llms.txt) returns HTTP 200 with content-type text/plain—no change needed.
  • llms-full.txt (https://digitalinning.com/llms-full.txt) returns HTTP 302 and HTML (redirects to homepage). In packages/content/data/websites/digital-inning-llms-txt.mdx (lines 5–6), correct llmsFullUrl to the actual plaintext endpoint or remove if unavailable.
🤖 Prompt for AI Agents
In packages/content/data/websites/digital-inning-llms-txt.mdx around lines 5–6,
the llmsFullUrl currently points to https://digitalinning.com/llms-full.txt
which returns an HTTP 302 redirect to HTML; update llmsFullUrl to the actual
plaintext endpoint if one exists (replace the URL with the direct .txt endpoint)
or remove the llmsFullUrl property entirely if no plaintext full list is
available; verify the new URL returns HTTP 200 with content-type text/plain
after making the change.

@thedaviddias thedaviddias merged commit f85f1b5 into main Sep 8, 2025
4 of 5 checks passed
@thedaviddias thedaviddias deleted the submit-digital-inning-1757161347501 branch September 8, 2025 13:41
@coderabbitai coderabbitai Bot mentioned this pull request Sep 8, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant