-
Notifications
You must be signed in to change notification settings - Fork 13
docs: clarify off-site AI visibility limits (closes #53) #58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -3,6 +3,8 @@ title: Introduction | |||||
| description: What is aeo.js and why you need Answer Engine Optimization. | ||||||
| --- | ||||||
|
|
||||||
| import { Aside } from '@astrojs/starlight/components'; | ||||||
|
|
||||||
|  | ||||||
|
|
||||||
| ## What is Answer Engine Optimization? | ||||||
|
|
@@ -30,6 +32,30 @@ AI crawlers and LLMs look for specific files and formats that most websites don' | |||||
| 3. **aeo.js** scans your output, extracts content, and generates all AEO files | ||||||
| 4. The optional **widget** lets visitors toggle between human and AI views of your pages | ||||||
|
|
||||||
| ## Scope: what aeo.js does and doesn't influence | ||||||
|
|
||||||
| AEO is the **on-site** half of being discoverable by AI engines — there's an off-site half that aeo.js cannot reach. Setting expectations upfront so you can plan a full strategy: | ||||||
|
|
||||||
| <Aside type="note" title="What aeo.js does well"> | ||||||
| Improves machine-readable access to **your own site**: | ||||||
|
|
||||||
| - generates `llms.txt`, `llms-full.txt`, `ai-index.json`, raw markdown copies, JSON-LD schema, and a sitemap | ||||||
| - structures content so AI crawlers can fetch, parse, and quote it | ||||||
| - audits and scores your page-level citability so you know where to improve | ||||||
| </Aside> | ||||||
|
|
||||||
| <Aside type="caution" title="What aeo.js cannot influence"> | ||||||
| Off-site signals that AI engines also weigh: | ||||||
|
|
||||||
| - **third-party mentions and reviews** of your product across the web | ||||||
| - **inbound links** and how reputable the linking domains are | ||||||
| - **community discussions** (Reddit, Hacker News, X, niche forums) and how often you're cited there | ||||||
| - **model training data** — what an LLM "already knows" about you from its pre-training cutoff | ||||||
| - **freshness signals** outside your control (independent news, blog roundups, podcasts) | ||||||
| </Aside> | ||||||
|
|
||||||
| Think of aeo.js as a strong foundation — necessary but not sufficient. For full AEO coverage, pair it with the off-site work above: PR, community engagement, and being mentioned where your customers research. | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Prompt To Fix With AIThis is a comment left during a code review.
Path: website/src/content/docs/getting-started/introduction.mdx
Line: 57
Comment:
In a developer-facing doc, "PR" is almost universally read as "pull request." Spelling out "public relations" avoids any momentary confusion for the target audience.
```suggestion
Think of aeo.js as a strong foundation — necessary but not sufficient. For full AEO coverage, pair it with the off-site work above: public relations, community engagement, and being mentioned where your customers research.
```
How can I resolve this? If you propose a fix, please make it concise. |
||||||
|
|
||||||
| ## Supported Frameworks | ||||||
|
|
||||||
| | Framework | Import | | ||||||
|
|
||||||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
docs.jsonas one of the files aeo.js generates, but this Aside omits it. A reader comparing the two sections will notice the inconsistency and wonder whetherdocs.jsonis no longer produced or was intentionally excluded from scope.Prompt To Fix With AI