marketing-intelligence
Analyze competitor strategies, industry trends, and consumer behavior to enhance market positioning and drive strategic business decisions. Configurable for trends, competitive, or customer insights.
Instructions
🎯 Marketing Intelligence Platform - Get competitive market analysis, industry trends, and customer insights for strategic business decisions. Analyzes competitor strategies, market positioning, and consumer behavior patterns.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
competitors | No | Competitor companies to research | |
confidentialAccess | No | Include confidential market data | |
industry | Yes | Industry sector to analyze | |
reportType | Yes | Type of intelligence report |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"competitors": {
"description": "Competitor companies to research",
"type": "string"
},
"confidentialAccess": {
"description": "Include confidential market data",
"type": "boolean"
},
"industry": {
"description": "Industry sector to analyze",
"type": "string"
},
"reportType": {
"description": "Type of intelligence report",
"enum": [
"trends",
"competitive",
"customer"
],
"type": "string"
}
},
"required": [
"industry",
"reportType"
],
"type": "object"
}