Skip to content

Commit 0a03765

Browse files
seo: fix theme-color, speakable selectors, llms.txt /guide/ → /docs/
- theme-color updated to Zinc bg (#09090b) — was Slate dark (#060b18) - SpeakableSpecification removes stale .faq-answer (FAQ moved to /faq/) replaces with .problem-intro for better AI readability signals - llms.txt: all /guide/ URLs updated to /docs/ for consistency - Add llms.txt to git tracking (GEO signal for AI crawlers) - robots.txt: LLMs: directive already present Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent b0da24a commit 0a03765

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

public/llms.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@
1616

1717
## Documentation
1818

19-
- [Guide — Overview](https://www.rtk-ai.app/guide/): Full RTK documentation index — installation, configuration, command reference, supported agents, analytics, and troubleshooting.
20-
- [Installation](https://www.rtk-ai.app/guide/getting-started/installation/): Install RTK via Homebrew (`brew install rtk-ai/tap/rtk`) or Cargo (`cargo install rtk`). Verify with `rtk --version`.
21-
- [Quick Start](https://www.rtk-ai.app/guide/getting-started/quick-start/): Run `rtk init --global` to install the Claude Code hook. Start saving tokens immediately with your existing workflow.
22-
- [Configuration](https://www.rtk-ai.app/guide/getting-started/configuration/): Customize RTK filters, adjust output formats, and configure per-project settings via `rtk config`.
23-
- [Supported Agents](https://www.rtk-ai.app/guide/getting-started/supported-agents/): Full list of AI coding tools and terminal environments compatible with RTK.
24-
- [rtk gain — Analytics](https://www.rtk-ai.app/guide/analytics/gain/): Session and global token savings analytics. `rtk gain` shows savings per command and total tokens saved. `rtk gain -p` shows per-project breakdown.
25-
- [rtk discover](https://www.rtk-ai.app/guide/analytics/discover/): Analyze Claude Code session history to identify commands that weren't proxied through RTK. Find missed savings opportunities.
26-
- [What RTK Covers](https://www.rtk-ai.app/guide/resources/what-rtk-covers/): Complete list of supported command ecosystems: Git, Cargo, GitHub CLI, pnpm, Next.js, TypeScript, ESLint, Prettier, Vitest, Playwright, Prisma, Docker, kubectl, and more.
27-
- [Troubleshooting](https://www.rtk-ai.app/guide/resources/troubleshooting/): Common issues and solutions — hook not firing, savings not recorded, command not recognized.
28-
- [Telemetry](https://www.rtk-ai.app/guide/resources/telemetry/): RTK collects zero telemetry. No data leaves your machine. Full offline operation.
19+
- [Guide — Overview](https://www.rtk-ai.app/docs/): Full RTK documentation index — installation, configuration, command reference, supported agents, analytics, and troubleshooting.
20+
- [Installation](https://www.rtk-ai.app/docs/getting-started/installation/): Install RTK via Homebrew (`brew install rtk-ai/tap/rtk`) or Cargo (`cargo install rtk`). Verify with `rtk --version`.
21+
- [Quick Start](https://www.rtk-ai.app/docs/getting-started/quick-start/): Run `rtk init --global` to install the Claude Code hook. Start saving tokens immediately with your existing workflow.
22+
- [Configuration](https://www.rtk-ai.app/docs/getting-started/configuration/): Customize RTK filters, adjust output formats, and configure per-project settings via `rtk config`.
23+
- [Supported Agents](https://www.rtk-ai.app/docs/getting-started/supported-agents/): Full list of AI coding tools and terminal environments compatible with RTK.
24+
- [rtk gain — Analytics](https://www.rtk-ai.app/docs/analytics/gain/): Session and global token savings analytics. `rtk gain` shows savings per command and total tokens saved. `rtk gain -p` shows per-project breakdown.
25+
- [rtk discover](https://www.rtk-ai.app/docs/analytics/discover/): Analyze Claude Code session history to identify commands that weren't proxied through RTK. Find missed savings opportunities.
26+
- [What RTK Covers](https://www.rtk-ai.app/docs/resources/what-rtk-covers/): Complete list of supported command ecosystems: Git, Cargo, GitHub CLI, pnpm, Next.js, TypeScript, ESLint, Prettier, Vitest, Playwright, Prisma, Docker, kubectl, and more.
27+
- [Troubleshooting](https://www.rtk-ai.app/docs/resources/troubleshooting/): Common issues and solutions — hook not firing, savings not recorded, command not recognized.
28+
- [Telemetry](https://www.rtk-ai.app/docs/resources/telemetry/): RTK collects zero telemetry. No data leaves your machine. Full offline operation.
2929

3030
## Other
3131

src/components/pages/LandingPage.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ const schemaOrg = {
128128
publisher: { '@id': 'https://www.rtk-ai.app/#organization' },
129129
speakable: {
130130
'@type': 'SpeakableSpecification',
131-
cssSelector: ['h1', '.hero-context', '.faq-answer', '.session-note'],
131+
cssSelector: ['h1', '.hero-context', '.session-note', '.problem-intro'],
132132
},
133133
},
134134
],

src/layouts/Layout.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const allSchemas = hasGraph
7272
<head>
7373
<meta charset="UTF-8" />
7474
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
75-
<meta name="theme-color" content="#060b18" />
75+
<meta name="theme-color" content="#09090b" />
7676

7777
<title>{title}</title>
7878
<meta name="description" content={description} />

0 commit comments

Comments
 (0)