Loading...
llms.txt is a standardized file format for providing personal or organizational context to AI language models. By placing an llms.txt file on your website or sharing it directly, you enable AI assistants to better understand your background, expertise, and communication preferences.
Place your llms.txt file at the root of your domain:
https://yourdomain.com/llms.txtThe file should be publicly accessible and served with content type text/plain or application/json.
llms.txt supports two formats: JSON (recommended) and structured plain text.
{
"name": "Jane Smith",
"title": "Senior Software Engineer",
"company": "TechCorp",
"bio": "Full-stack developer with 8+ years of experience...",
"expertise": [
"TypeScript",
"React",
"Node.js",
"System Design"
],
"communication_style": {
"tone": "Professional yet friendly",
"preferences": ["Direct responses", "Code examples"]
},
"goals": [
"Ship high-quality software",
"Grow team capabilities"
],
"ai_instructions": "Prioritize practical solutions. I prefer TypeScript.",
"contact": {
"website": "https://janesmith.dev",
"github": "janesmith"
},
"version": "1.0"
}Your full name or organization name. This is the only required field.
"name": "Jane Smith"Your job title or professional role.
Your company or organization name.
A brief description of who you are and what you do. Recommended length: 100-500 characters.
Array of skills, technologies, or areas of expertise. Recommended: 3-10 items.
Specific instructions for how AI assistants should interact with you.
Geographic location.
Array of current goals or objectives.
Object with tone and preferences fields.
Object with contact information: email, website, twitter, linkedin, github.
Version of your llms.txt file for tracking changes.