Serve SKILL.md at /skill and /llms.txt on byokrelay.com
Context
byok-relay ships a skills/byok-relay/SKILL.md that AI coding agents use to integrate the relay. The website CTA currently points to https://byokrelay.com/skill as the canonical URL for agent-assisted integration.
What to do when the website is self-hosted
Serve the skill file at two routes from the same source:
/skill (or /skill.md) — the explicit CTA URL shared publicly. Clean, human-readable, easy to paste into any agent prompt.
/llms.txt — an emerging convention (like robots.txt for LLMs) that some AI tools already look for automatically when crawling a domain.
Both routes serve the same content — the SKILL.md file from the relay repo.
Implementation
One-liner in any framework. Example for a Next.js or static site:
- Fetch raw content from
https://raw.githubusercontent.com/avikalpg/byok-relay/main/skills/byok-relay/SKILL.md at build time, or
- Copy the file into the public directory and serve it statically at both paths
Why parked
Website does not exist yet. Pick this up immediately after the site is deployed.
Serve SKILL.md at /skill and /llms.txt on byokrelay.com
Context
byok-relay ships a
skills/byok-relay/SKILL.mdthat AI coding agents use to integrate the relay. The website CTA currently points tohttps://byokrelay.com/skillas the canonical URL for agent-assisted integration.What to do when the website is self-hosted
Serve the skill file at two routes from the same source:
/skill(or/skill.md) — the explicit CTA URL shared publicly. Clean, human-readable, easy to paste into any agent prompt./llms.txt— an emerging convention (likerobots.txtfor LLMs) that some AI tools already look for automatically when crawling a domain.Both routes serve the same content — the SKILL.md file from the relay repo.
Implementation
One-liner in any framework. Example for a Next.js or static site:
https://raw.githubusercontent.com/avikalpg/byok-relay/main/skills/byok-relay/SKILL.mdat build time, orWhy parked
Website does not exist yet. Pick this up immediately after the site is deployed.