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/milesker-llms-txt.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: 'Milesker'
description: 'Milesker. is a strategy and innovation studio designing imaginative strategies and brand ecosystems for lasting impact, led by founder Romain Lartigue in Paris.'
website: 'https://www.milesker.xyz/'
llmsUrl: 'https://www.milesker.xyz/llms.txt'
llmsFullUrl: 'https://www.milesker.xyz/llms-full.txt'
category: 'agency-services'
publishedAt: '2025-11-17'
---
Comment on lines +1 to +9
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 the provided URLs are accessible and contain valid llms.txt content.

The YAML front matter is well-formed with all required metadata fields present. However, the core value of this submission depends on verifying that the URLs are accessible and the llms.txt endpoints contain valid content.

Please run the following script to verify the URLs are accessible and the llms.txt files exist:


🏁 Script executed:

#!/bin/bash
# Description: Verify that all provided URLs are accessible and llms.txt endpoints contain content

# Website URL
echo "=== Checking website URL ==="
curl -s -I https://www.milesker.xyz/ | head -1

# llms.txt endpoint
echo -e "\n=== Checking llms.txt endpoint ==="
curl -s -I https://www.milesker.xyz/llms.txt | head -1
curl -s -w "\nContent length: %{size_download} bytes\n" https://www.milesker.xyz/llms.txt | head -20

# llms-full.txt endpoint
echo -e "\n=== Checking llms-full.txt endpoint ==="
curl -s -I https://www.milesker.xyz/llms-full.txt | head -1
curl -s -w "\nContent length: %{size_download} bytes\n" https://www.milesker.xyz/llms-full.txt | head -20

Length of output: 1481


Need to verify the redirect destination and check for the existence of llms files elsewhere on the domain:


🏁 Script executed:

#!/bin/bash
# Check redirect destination and follow chain
echo "=== Following llms.txt redirect ==="
curl -s -L -w "\nFinal URL: %{url_effective}\nStatus: %{http_code}\n" https://www.milesker.xyz/llms.txt | head -30

echo -e "\n=== Checking common llms file locations ==="
for path in /llms.txt /llms-full.txt /public/llms.txt /public/llms-full.txt /content/llms.txt /.well-known/llms.txt; do
  status=$(curl -s -o /dev/null -w "%{http_code}" https://www.milesker.xyz$path)
  echo "GET $path: HTTP $status"
done

Length of output: 2887


Remove or correct the non-existent llmsFullUrl endpoint.

The llms.txt endpoint works correctly after following its 301 redirect and returns valid content. However, llmsFullUrl at line 6 points to a non-existent endpoint (HTTP 404 across all attempted paths). Either remove this field if the file doesn't exist, or provide the correct URL to the full llms file.

The submission cannot be accepted with a broken URL reference in the metadata.

🤖 Prompt for AI Agents
In packages/content/data/websites/milesker-llms-txt.mdx around lines 1 to 9, the
llmsFullUrl field (line 6) points to a non-existent endpoint returning 404;
either remove the llmsFullUrl line entirely if there is no full file, or replace
its value with the correct working URL to the full LLMS file, then verify the
new URL returns HTTP 200 (or follow redirects) before committing.


# Milesker

Milesker. is a strategy and innovation studio designing imaginative strategies and brand ecosystems for lasting impact, led by founder Romain Lartigue in Paris.
Loading