Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions packages/content/data/websites/innocrux-llms-txt.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: 'Innocrux'
description: 'Innocrux offers top video streaming solutions, helping broadcasters launch and monetize platforms across 10+ devices like Web, iOS, Android, Roku, and more.'
website: 'https://www.innocrux.com'
llmsUrl: 'https://www.innocrux.com/llms.txt'
Comment on lines +4 to +5
Copy link

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

Verify URL accessibility and llms.txt availability.

Ensure both the website (line 4) and the llms.txt endpoint (line 5) are publicly accessible and functional.


🏁 Script executed:

#!/bin/bash
# Description: Verify that the website and llms.txt URLs are accessible and return valid responses.

# Test website URL
echo "Testing website URL..."
curl -s -o /dev/null -w "Website: HTTP Status %{http_code}\n" "https://www.innocrux.com"

# Test llms.txt endpoint
echo "Testing llms.txt endpoint..."
curl -s -o /dev/null -w "llms.txt: HTTP Status %{http_code}\n" "https://www.innocrux.com/llms.txt"

# Fetch and display llms.txt content (first 10 lines)
echo "llms.txt content preview:"
curl -s "https://www.innocrux.com/llms.txt" | head -20

Length of output: 407


Fix: llms.txt endpoint not accessible (HTTP 404).

The website (line 4) is reachable with HTTP 200, but the llms.txt endpoint (line 5) returns HTTP 404 Not Found. The file must exist and be publicly accessible at https://www.innocrux.com/llms.txt before this change can be merged.

🤖 Prompt for AI Agents
In packages/content/data/websites/innocrux-llms-txt.mdx lines 4-5: the listed
llmsUrl (https://www.innocrux.com/llms.txt) returns HTTP 404; either create and
serve a public llms.txt at the site root or update the llmsUrl to the correct
existing path. Fix by placing a valid llms.txt file in the website’s public/root
directory (or add a route that serves it), deploy the site, confirm the endpoint
returns HTTP 200, and then keep or update this file to point to the verified
URL.

llmsFullUrl: ''
category: 'developer-tools'
publishedAt: '2025-11-13'
---

# Innocrux

Innocrux offers top video streaming solutions, helping broadcasters launch and monetize platforms across 10+ devices like Web, iOS, Android, Roku, and more.
Loading