Fix Prompt Generator
The Fix Prompt Generator creates AI-ready instructions that your developers can use with coding assistants to implement SEO and GEO fixes quickly.
What It Is
When SEOGEO Tools identifies issues on your site, the Fix Prompt Generator:
- Analyzes the specific issue and its context
- Generates detailed instructions for fixing it
- Formats prompts for AI coding assistants (Cursor, GitHub Copilot, etc.)
- Provides code examples when applicable
- Site audit findings
- Technical SEO checks
- GEO score recommendations
- Verification failures
- Your site's technology stack
- The specific page and element affected
- Best practices for the fix type
- Potential side effects to avoid
- View Priority Actions panel
- Click Fix on any action
- Copy the generated prompt
- Paste into your AI coding assistant
- Navigate to Audit > Results
- Click any issue to expand
- Click Generate Fix Prompt
- Use with your development tools
- Go to Fix Prompts in navigation
- View all available fixes
- Filter by type, priority, or status
- Bulk generate prompts
- Add JSON-LD FAQ schema to the page
- Include all 5 questions currently in the HTML
- Ensure questions match the visible content exactly Code Template:
- Review before using: Check prompts for accuracy
- Customize for your stack: Adjust framework-specific code
- Test implementations: Verify fixes work correctly
- Use verification: Run Implementation Verification after fixing
- Receive fix prompt from team
- Paste into AI assistant (Cursor, Copilot, Claude)
- Review and implement suggested changes
- Commit and deploy
- Verify using SEOGEO Tools
- Generate prompts for priority issues
- Share with development team
- Track implementation status
- Run verification to confirm fixes
How It Works
Issue Detection
Fix prompts are generated from:
Prompt Generation
The AI considers:
Using Fix Prompts
From the Command Center
From Audit Results
From the Fix Prompts Page
Prompt Types
| Issue Type | Prompt Contents |
|---|---|
| Missing meta tags | HTML template, best practices |
| Schema markup | JSON-LD code, validation tips |
| Heading structure | Semantic HTML guidance |
| FAQ sections | Content structure, schema |
| Answer blocks | Formatting guidelines |
| Image optimization | Alt text, sizing, lazy loading |
| Internal linking | Strategy, anchor text |
| Core Web Vitals | Performance optimization code |
Example Output
``markdown
Fix: Add FAQ Schema to Product Page
Issue: /products/widget-pro is missing FAQ schema markup
Context: This page has an FAQ section but no structured data
Instructions:
\\\json
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "[Question text]",
"acceptedAnswer": {
"@type": "Answer",
"text": "[Answer text]"
}
}
]
}
\\\
Validation: Test with Google's Rich Results Test
``