feat(market-intel): Finalize Level 4 Competitive Radar (Semantics & Relations)

- Implemented semantic classification for Products (e.g. 'Cleaning', 'Logistics') and Battlecards (e.g. 'Price', 'Support').
- Created 'import_competitive_radar.py' for full 4-database relational import to Notion.
- Updated Orchestrator with new prompts for structured output.
- Cleaned up obsolete scripts.
This commit is contained in:
2026-01-11 12:54:12 +00:00
parent 9a769f62a0
commit b5e6c415c7
5 changed files with 249 additions and 26 deletions

View File

@@ -42,6 +42,7 @@ export interface Analysis {
portfolio: {
product: string;
purpose: string;
category?: string;
}[];
target_industries: string[];
delivery_model: string;
@@ -76,8 +77,8 @@ export interface Battlecard {
focus: string;
positioning: string;
};
strengths_vs_weaknesses: string[];
landmine_questions: string[];
strengths_vs_weaknesses: (string | { text: string; category: string })[];
landmine_questions: (string | { text: string; category: string })[];
silver_bullet: string;
}