可以落地用的 GEO 规则引擎(最小可部署版本),包含三部分:
✔ Prompt 引擎
✔ JSON 语义结构
✔ 内容模板库(可扩展)
整体目标是:
👉 用 OpenAI / Google 生成内容,但由你控制“语义空间”,而不是AI自由发挥
Input(产品实体)
↓
Intent Rule Engine(意图规则)
↓
Persona Mapping(人群映射)
↓
Scenario Generator(受控场景生成)
↓
Prompt Builder(提示词组装)
↓
LLM Output(AI生成)
↓
Structured Formatter(结构化输出)
👉 这是你整个系统“数据骨架”
{
"product": {
"name": "electric toothbrush",
"category": "oral care",
"features": [
"sonic vibration",
"pressure control",
"smart timer"
]
},
"persona": [
"consumer",
"dental patient",
"wholesaler",
"OEM buyer"
],
"intent": [
"purchase",
"comparison",
"usage",
"bulk procurement",
"risk concern"
],
"scenarios": [
{
"persona": "consumer",
"intent": "purchase",
"context": "gum sensitivity"
},
{
"persona": "wholesaler",
"intent": "bulk procurement",
"context": "profit margin optimization"
}
]
}
👉 这是你“控制AI行为”的核心
You are a GEO content generation engine.
RULES:
1. You MUST follow provided JSON structure strictly.
2. Do NOT invent new personas or intents.
3. Generate content only within given semantic space.
4. Each output must map to a specific persona + intent + scenario.
5. Avoid generic SEO content. Focus on structured, extractable answers for AI systems.
6. Output must be structured and consistent.
Product:
{{product_json}}
Task:
For each scenario, generate:
1. User Question (natural language)
2. Answer (structured, factual, non-marketing tone)
3. Key Points (3–5 bullets)
4. Use Case Fit (why this applies)
5. Related Intent Tags
Keep output aligned with GEO structure for AI retrieval systems.
👉 这是你商业壁垒的关键
Q: What is the best electric toothbrush for sensitive gums?
A:
- Designed for gum-friendly cleaning using pressure control technology
- Sonic vibration reduces plaque without damaging enamel
- Recommended for users with bleeding or sensitivity issues
Key Points:
- pressure sensor protection
- soft brushing mode
- gum care optimized
Use Case:
Suitable for consumers with gum sensitivity or early periodontal issues.
Intent: purchase, health concern
Q: What should wholesalers consider when sourcing electric toothbrush products?
A:
- Focus on unit cost and margin structure
- Evaluate OEM customization capability
- Check battery life and durability for bulk distribution
Key Points:
- pricing tiers
- OEM flexibility
- after-sales support
Use Case:
Applicable for distributors and retail chains.
Intent: bulk procurement, business sourcing
Q: Are electric toothbrushes recommended for dental patients after treatment?
A:
- Yes, but only soft-mode vibration models are recommended
- Helps reduce plaque accumulation during recovery
- Must avoid high-pressure brushing modes
Key Points:
- soft mode usage
- post-surgery care
- plaque control
Use Case:
Recommended for post-dental treatment patients.
Intent: medical usage, recovery care
Q: Electric toothbrush vs manual toothbrush: which is better?
A:
- Electric toothbrush provides more consistent cleaning efficiency
- Manual toothbrush requires correct technique for similar results
- Electric models reduce user error in brushing
Key Points:
- efficiency difference
- user behavior dependency
- plaque removal rate
Use Case:
For users deciding between manual and electric options.
Intent: comparison, decision making
INPUT:
Electric toothbrush
↓ (Engine)
Persona: consumer
Intent: purchase
Scenario: gum sensitivity
OUTPUT:
Q: What is the best electric toothbrush for sensitive gums?
A: ...
❗不是“生成内容系统”
✔ 是“控制AI语义空间系统”
不是:
而是:
👉 Persona × Intent × Scenario 的结构设计能力
下一步可以升级为:
GEO规则引擎的核心不是生成内容,而是用结构约束AI在限定语义空间内生成可被检索和引用的答案。