Skip to content

Commit 3b5c6f2

Browse files
authored
Merge pull request #1060 from AvdLee/docs/geo-technical-improvements
2 parents b4cf7ea + 5e2760c commit 3b5c6f2

11 files changed

Lines changed: 355 additions & 65 deletions

File tree

docs/public/robots.txt

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,31 @@
11
User-agent: *
22
Allow: /
33

4+
# AI and answer-engine crawlers are allowed to access RocketSim docs.
5+
User-agent: GPTBot
6+
Allow: /
7+
8+
User-agent: ChatGPT-User
9+
Allow: /
10+
11+
User-agent: ClaudeBot
12+
Allow: /
13+
14+
User-agent: anthropic-ai
15+
Allow: /
16+
17+
User-agent: PerplexityBot
18+
Allow: /
19+
20+
User-agent: Googlebot
21+
Allow: /
22+
23+
User-agent: Bingbot
24+
Allow: /
25+
26+
# LLM-friendly documentation:
27+
# https://www.rocketsim.app/llms.txt
28+
# https://www.rocketsim.app/llms-small.txt
29+
# https://www.rocketsim.app/llms-full.txt
30+
431
Sitemap: https://www.rocketsim.app/sitemap-index.xml

docs/src/components/starlight/Head.astro

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,13 @@ const breadcrumbSchema =
102102
<link rel="icon" href="/favicon.ico" sizes="32x32" />
103103
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
104104
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
105+
<link rel="alternate" type="text/plain" title="LLMs" href="/llms.txt" />
106+
<link
107+
rel="alternate"
108+
type="text/plain"
109+
title="LLMs Full"
110+
href="/llms-full.txt"
111+
/>
105112

106113
<!-- Theme color matching RocketSim dark theme -->
107114
<meta name="theme-color" content="#000000" />

docs/src/config/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
}
3232
],
3333
"metadata": {
34-
"meta_description": "Simulator Airplane Mode, Location Simulation, Accessibility Testing, Compare designs inside the iOS simulator. Test deeplinks, push notifications.",
34+
"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.",
3535
"meta_image": "/og-banner-rocketsim.jpg"
3636
}
3737
}

docs/src/integrations/llms-txt-post-process.ts

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export function llmsTxtPostProcess(): AstroIntegration {
4444
const buildDate = new Date().toISOString().split("T")[0];
4545
const enhancedLlmsTxt = `# RocketSim
4646
47-
> 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.
47+
> 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.
4848
4949
Last updated: ${buildDate}
5050
Website: https://www.rocketsim.app
@@ -55,13 +55,24 @@ Support: support@rocketsim.app
5555
## Key Features
5656
5757
- Professional screenshot and video capture with device bezels
58-
- Network traffic monitoring and debugging
58+
- URLSession network monitoring without proxy setup or custom certificates
59+
- AI-ready network request prompt exports for Claude, ChatGPT, and other assistants
60+
- RocketSim CLI and Agent Skill for AI coding agents
5961
- Push notification and deep link testing
6062
- Design comparison with pixel-perfect overlays
6163
- Accessibility testing (Dynamic Type, VoiceOver Navigator)
6264
- Xcode build insights and team analytics
6365
- Network speed throttling and Simulator airplane mode
6466
67+
## Canonical Feature Docs
68+
69+
- [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
70+
- [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
71+
- [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
72+
- [Agentic Development with RocketSim](https://www.rocketsim.app/docs/features/agentic-development/): let AI coding agents inspect, navigate, and verify running iOS Simulator apps
73+
- [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
74+
- [RocketSim Agent Skill](https://www.rocketsim.app/docs/features/agentic-development/agent-skill): install version-matched instructions for AI coding tools
75+
6576
## Documentation Sets
6677
6778
- [Abridged documentation](https://www.rocketsim.app/llms-small.txt): compact version with non-essential content removed

docs/src/layouts/components/SEO.astro

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,13 @@ const ogType = article ? "article" : "website";
117117

118118
<!-- Canonical URL -->
119119
<link rel="canonical" href={canonicalUrl} />
120+
<link rel="alternate" type="text/plain" title="LLMs" href="/llms.txt" />
121+
<link
122+
rel="alternate"
123+
type="text/plain"
124+
title="LLMs Full"
125+
href="/llms-full.txt"
126+
/>
120127

121128
<!-- Robots -->
122129
{robotsContent && <meta name="robots" content={robotsContent} />}

0 commit comments

Comments
 (0)