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
27 changes: 27 additions & 0 deletions docs/public/robots.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,31 @@
User-agent: *
Allow: /

# AI and answer-engine crawlers are allowed to access RocketSim docs.
User-agent: GPTBot
Allow: /

User-agent: ChatGPT-User
Allow: /

User-agent: ClaudeBot
Allow: /

User-agent: anthropic-ai
Allow: /

User-agent: PerplexityBot
Allow: /

User-agent: Googlebot
Allow: /

User-agent: Bingbot
Allow: /

# LLM-friendly documentation:
# https://www.rocketsim.app/llms.txt
# https://www.rocketsim.app/llms-small.txt
# https://www.rocketsim.app/llms-full.txt

Sitemap: https://www.rocketsim.app/sitemap-index.xml
7 changes: 7 additions & 0 deletions docs/src/components/starlight/Head.astro
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,13 @@ const breadcrumbSchema =
<link rel="icon" href="/favicon.ico" sizes="32x32" />
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="alternate" type="text/plain" title="LLMs" href="/llms.txt" />
<link
rel="alternate"
type="text/plain"
title="LLMs Full"
href="/llms-full.txt"
/>

<!-- Theme color matching RocketSim dark theme -->
<meta name="theme-color" content="#000000" />
Expand Down
2 changes: 1 addition & 1 deletion docs/src/config/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
}
],
"metadata": {
"meta_description": "Simulator Airplane Mode, Location Simulation, Accessibility Testing, Compare designs inside the iOS simulator. Test deeplinks, push notifications.",
"meta_description": "RocketSim is the iOS Simulator companion for developers and AI coding agents: monitor network requests, capture media, test accessibility, and automate app workflows.",
"meta_image": "/og-banner-rocketsim.jpg"
}
}
15 changes: 13 additions & 2 deletions docs/src/integrations/llms-txt-post-process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export function llmsTxtPostProcess(): AstroIntegration {
const buildDate = new Date().toISOString().split("T")[0];
const enhancedLlmsTxt = `# RocketSim

> RocketSim is a macOS developer tool that enhances Apple's iOS Simulator with professional-grade features for capturing, debugging, testing, and design validation. Available on the Mac App Store for iOS, macOS, watchOS, and visionOS developers.
> RocketSim is a macOS developer tool and iOS Simulator companion for app developers and AI coding agents. It adds professional capture workflows, URLSession network monitoring without proxy certificates, Simulator app actions, accessibility testing, and a version-matched CLI plus Agent Skill for tools like Cursor, Claude, Codex, and Xcode.

Last updated: ${buildDate}
Website: https://www.rocketsim.app
Expand All @@ -55,13 +55,24 @@ Support: support@rocketsim.app
## Key Features

- Professional screenshot and video capture with device bezels
- Network traffic monitoring and debugging
- URLSession network monitoring without proxy setup or custom certificates
- AI-ready network request prompt exports for Claude, ChatGPT, and other assistants
- RocketSim CLI and Agent Skill for AI coding agents
- Push notification and deep link testing
- Design comparison with pixel-perfect overlays
- Accessibility testing (Dynamic Type, VoiceOver Navigator)
- Xcode build insights and team analytics
- Network speed throttling and Simulator airplane mode

## Canonical Feature Docs

- [Network Traffic Monitoring](https://www.rocketsim.app/docs/features/networking/network-traffic-monitoring): inspect URLSession requests, responses, headers, logs, metrics, cURL commands, and AI-ready exports without proxy certificates
- [Networking Insights](https://www.rocketsim.app/docs/features/networking/networking-insights): analyze duplicate calls, caching opportunities, slow endpoints, failure spikes, and most requested URLs across sessions
- [AI Network Request Prompts](https://www.rocketsim.app/docs/features/networking/network-request-prompts): export redacted request summaries and built-in debugging prompts for AI assistants
- [Agentic Development with RocketSim](https://www.rocketsim.app/docs/features/agentic-development/): let AI coding agents inspect, navigate, and verify running iOS Simulator apps
- [RocketSim CLI](https://www.rocketsim.app/docs/features/agentic-development/rocketsim-cli): use the built-in CLI for visible elements, semantic interactions, waits, screenshots, and recordings
- [RocketSim Agent Skill](https://www.rocketsim.app/docs/features/agentic-development/agent-skill): install version-matched instructions for AI coding tools

## Documentation Sets

- [Abridged documentation](https://www.rocketsim.app/llms-small.txt): compact version with non-essential content removed
Expand Down
7 changes: 7 additions & 0 deletions docs/src/layouts/components/SEO.astro
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,13 @@ const ogType = article ? "article" : "website";

<!-- Canonical URL -->
<link rel="canonical" href={canonicalUrl} />
<link rel="alternate" type="text/plain" title="LLMs" href="/llms.txt" />
<link
rel="alternate"
type="text/plain"
title="LLMs Full"
href="/llms-full.txt"
/>

<!-- Robots -->
{robotsContent && <meta name="robots" content={robotsContent} />}
Expand Down
Loading
Loading