Skip to content
Merged
Show file tree
Hide file tree
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
40 changes: 40 additions & 0 deletions apps/sim/app/llms.txt/route.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
export async function GET() {
const llmsContent = `# Sim - AI Agent Workflow Builder
Visual platform for building and deploying AI agent workflows

## Overview
Sim is a platform to build, prototype, and deploy AI agent workflows. It's the fastest-growing platform for building AI agent workflows.

## Key Features
- Visual Workflow Builder: Drag-and-drop interface for creating AI agent workflows
- [Documentation](https://docs.sim.ai): Complete guide to building AI agents

## Use Cases
- AI Agent Workflow Automation
- RAG Agents
- RAG Systesm and Pipline
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

syntax: Typo: 'Systesm and Pipline' should be 'Systems and Pipeline'

Suggested change
- RAG Systesm and Pipline
- RAG Systems and Pipeline

- Chatbot Workflows
- Document Processing Workflows
- Customer Service Chatbot Workflows
- Ecommerce Agent Workflows
- Marketing Agent Workflows
- Deep Research Workflows
- Marketing Agent Workflows
Comment on lines +20 to +22
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

syntax: 'Marketing Agent Workflows' is listed twice - remove the duplicate on line 22

Suggested change
- Marketing Agent Workflows
- Deep Research Workflows
- Marketing Agent Workflows
- Marketing Agent Workflows
- Deep Research Workflows

- Real Estate Agent Workflows
- Financial Planning Agent Workflows
- Legal Agent Workflows

## Getting Started
- [Quick Start Guide](https://docs.sim.ai/quickstart)
- [GitHub](https://github.com/simstudioai/sim)

## Resources
- [GitHub](https://github.com/simstudioai/sim)`
Comment on lines +29 to +32
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

style: GitHub link is duplicated in both 'Getting Started' and 'Resources' sections - consider removing one or differentiating their purposes


return new Response(llmsContent, {
headers: {
'Content-Type': 'text/plain',
'Cache-Control': 'public, max-age=86400',
},
})
}
28 changes: 28 additions & 0 deletions apps/sim/public/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Allow all AI crawlers
User-agent: GPTBot
Allow: /

User-agent: OAI-SearchBot
Allow: /

User-agent: ChatGPT-User
Allow: /

# Allow other AI crawlers
User-agent: Claude-Web
Allow: /

User-agent: PerplexityBot
Allow: /

User-agent: Applebot-Extended
Allow: /

# Traditional search engines
User-agent: *
Allow: /
Disallow: /api/
Disallow: /workspace/
Disallow: /chat/
Disallow: /.well-known/
Disallow: /invite/
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

style: Missing newline at end of file. Add a newline character after the last Disallow directive.