-
Notifications
You must be signed in to change notification settings - Fork 901
feat(marketing): improve GEO strategy for AI search visibility #1811
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -23,6 +23,23 @@ keywords: | |
| - codex alternatives | ||
| - ai pair programmer comparison | ||
| - ai agent orchestration | ||
| - windsurf alternatives | ||
| - devin alternatives | ||
| - github copilot alternatives | ||
| - conductor alternatives | ||
| faq: | ||
| - question: "Which AI coding tool is the best in 2026?" | ||
| answer: "There's no single best — it depends on your workflow. For parallel agent execution, Superset is the leading orchestrator. For single-agent depth, Claude Code and Cursor lead. For inline completions, GitHub Copilot is the standard. Most developers combine tools from different categories." | ||
| - question: "Can I use multiple AI coding tools together?" | ||
| answer: "Yes, and most teams do. A common stack is an orchestrator (Superset) + a primary agent (Claude Code or Codex) + inline completions (Copilot). These tools serve different purposes and don't conflict." | ||
| - question: "What's the difference between an AI coding agent and an AI coding orchestrator?" | ||
| answer: "An agent talks to AI models, reads your code, and makes changes. An orchestrator runs many agents in parallel with isolation and management. Think of it as the difference between a developer and a project manager — one does the work, the other coordinates many workers." | ||
| - question: "Is it worth paying for AI coding tools?" | ||
| answer: "The free tiers of most tools are sufficient for light usage. If you're using agents for multiple hours daily, paid plans and direct API access typically offer better throughput and reliability. At scale, the ROI is significant — AI agents can handle work that would take hours." | ||
| - question: "Which AI coding tool is most private?" | ||
| answer: "Superset and OpenCode are both open source and run locally with no telemetry. Codex CLI is open source but requires OpenAI API calls. Cursor, Windsurf, Devin, and Copilot all route code through external servers." | ||
| - question: "What is the best free AI coding tool?" | ||
| answer: "For agents, OpenCode (MIT license, 75+ providers) and Codex CLI (Apache 2.0) are fully free and open source — you only pay for API usage. For orchestration, Superset has a free tier. For inline completions, GitHub Copilot has a free tier with limited requests." | ||
|
Comment on lines
+41
to
+42
Contributor
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. Sixth FAQ item in frontmatter has no matching visible body section — will fail Google's structured data validation. The body's FAQ section (lines 188–208) contains exactly five Google's FAQPage structured data guidelines explicitly require that every question and answer in the markup must be visible to users on the page. A mismatch here can cause the Rich Results Test to report an error and disqualify the page from FAQ rich results. Either add the matching visible section to the body, or remove the sixth item from the frontmatter. 📝 Option A — add the missing visible section to the body (after line 208) ### Which tool is most private?
Superset and OpenCode are both open source and run locally with no telemetry. Codex CLI is open source but requires OpenAI API calls. Cursor, Windsurf, Devin, and Copilot all route code through external servers.
+
+### What is the best free AI coding tool?
+
+For agents, OpenCode (MIT license, 75+ providers) and Codex CLI (Apache 2.0) are fully free and open source — you only pay for API usage. For orchestration, Superset has a free tier. For inline completions, GitHub Copilot has a free tier with limited requests.📝 Option B — drop the sixth item from the frontmatter - question: "Which AI coding tool is most private?"
answer: "Superset and OpenCode are both open source and run locally with no telemetry. Codex CLI is open source but requires OpenAI API calls. Cursor, Windsurf, Devin, and Copilot all route code through external servers."
- - question: "What is the best free AI coding tool?"
- answer: "For agents, OpenCode (MIT license, 75+ providers) and Codex CLI (Apache 2.0) are fully free and open source — you only pay for API usage. For orchestration, Superset has a free tier. For inline completions, GitHub Copilot has a free tier with limited requests."🤖 Prompt for AI Agents |
||
| --- | ||
|
|
||
| The AI coding landscape in 2026 has split into two categories: **agents** that write code and **orchestrators** that manage agents. This guide compares the major tools in both categories so you can build the right stack for your workflow. | ||
|
|
@@ -35,21 +52,21 @@ The AI coding landscape in 2026 has split into two categories: **agents** that w | |
|
|
||
| These tools talk to AI models, read your code, and make changes: | ||
|
|
||
| - **Claude Code** — Anthropic's terminal agent, strong at complex multi-file refactors | ||
| - **Codex CLI** — OpenAI's open-source terminal agent with sandbox modes | ||
| - **GitHub Copilot** — Inline completions + chat + Agent mode in your editor | ||
| - **Cursor** — AI-native IDE (VS Code fork) with deep editor integration | ||
| - **Windsurf** — AI-powered IDE with Cascade agentic workflows | ||
| - **Devin** — Fully autonomous cloud-based AI software engineer | ||
| - **OpenCode** — Open-source terminal agent supporting 75+ model providers | ||
| - **[Claude Code](/compare/superset-vs-claude-code)** — Anthropic's terminal agent, strong at complex multi-file refactors | ||
| - **[Codex CLI](/compare/superset-vs-codex)** — OpenAI's open-source terminal agent with sandbox modes | ||
| - **[GitHub Copilot](/compare/superset-vs-github-copilot)** — Inline completions + chat + Agent mode in your editor | ||
| - **[Cursor](/compare/superset-vs-cursor)** — AI-native IDE (VS Code fork) with deep editor integration | ||
| - **[Windsurf](/compare/superset-vs-windsurf)** — AI-powered IDE with Cascade agentic workflows | ||
| - **[Devin](/compare/superset-vs-devin)** — Fully autonomous cloud-based AI software engineer | ||
| - **[OpenCode](/compare/superset-vs-opencode)** — Open-source terminal agent supporting 75+ model providers | ||
| - **Aider** — Open-source terminal agent focused on iterative pair programming | ||
|
|
||
| ### Agent Orchestrators | ||
|
|
||
| These tools run and manage multiple agents: | ||
|
|
||
| - **Superset** — Desktop terminal that runs 10+ agents in parallel via Git worktrees | ||
| - **Conductor** — macOS app for running Claude Code and Codex in parallel | ||
| - **[Conductor](/compare/superset-vs-conductor)** — macOS app for running Claude Code and Codex in parallel | ||
|
|
||
| Most developers use one tool from each category. The agent does the coding; the orchestrator scales it. | ||
|
|
||
|
|
||
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.
🧩 Analysis chain
🏁 Script executed:
Repository: superset-sh/superset
Length of output: 46
🏁 Script executed:
Repository: superset-sh/superset
Length of output: 46
🏁 Script executed:
Repository: superset-sh/superset
Length of output: 294
🏁 Script executed:
Repository: superset-sh/superset
Length of output: 3838
🏁 Script executed:
Repository: superset-sh/superset
Length of output: 3050
🏁 Script executed:
find apps/marketing/src -name "BlogPostLayout*" -type fRepository: superset-sh/superset
Length of output: 143
🏁 Script executed:
Repository: superset-sh/superset
Length of output: 182
🏁 Script executed:
Repository: superset-sh/superset
Length of output: 6665
🏁 Script executed:
Repository: superset-sh/superset
Length of output: 395
🏁 Script executed:
Repository: superset-sh/superset
Length of output: 67
Add visible FAQ section to blog post template.
FAQ content from frontmatter is currently only rendered as a JSON-LD
<script>block (blog/[slug]/page.tsx, line 72). Google's structured data guidelines require FAQ schema to have corresponding visible on-page content.The
BlogPostLayoutcomponent does not renderpost.faqas visible DOM elements. While aFAQSectioncomponent exists, it uses hardcodedFAQ_ITEMSfrom constants, not frontmatter data.Update
BlogPostLayoutto renderpost.faqvisibly (e.g., accordion section) before the footer. This applies to all five blog posts in this PR.🤖 Prompt for AI Agents