107 lines
2.2 KiB
Markdown
107 lines
2.2 KiB
Markdown
# TradeMate Marketing Content Skill
|
|
|
|
Generate marketing copy and keyword suggestions for foreign trade products.
|
|
|
|
## Description
|
|
|
|
AI-powered marketing content generation for export products. Creates professional marketing copy in multiple languages and styles, generates SEO keywords, and analyzes competitor positioning. Designed for foreign trade professionals who need compelling product descriptions for international buyers.
|
|
|
|
## Triggers
|
|
|
|
- "generate marketing" / "生成营销文案"
|
|
- "write product description" / "写产品描述"
|
|
- "marketing keywords" / "营销关键词"
|
|
- "product copy" / "产品文案"
|
|
|
|
## Workflow
|
|
|
|
### 1. Generate Marketing Copy
|
|
|
|
```
|
|
POST /api/v1/marketing/generate
|
|
Content-Type: application/json
|
|
Authorization: Bearer <token>
|
|
|
|
{
|
|
"product_name": "<product name>",
|
|
"description": "<product description>",
|
|
"category": "<category>",
|
|
"target": "<target market, e.g. US importers>",
|
|
"style": "professional|friendly|luxury",
|
|
"count": 3,
|
|
"language": "en|zh"
|
|
}
|
|
```
|
|
|
|
Response:
|
|
```json
|
|
{
|
|
"results": [
|
|
{
|
|
"content": "Professional marketing copy...",
|
|
"style": "professional",
|
|
"provider": "sensenova"
|
|
}
|
|
],
|
|
"product": "...",
|
|
"target": "...",
|
|
"count": 3,
|
|
"credits_remaining": 45
|
|
}
|
|
```
|
|
|
|
### 2. Generate Keywords
|
|
|
|
```
|
|
POST /api/v1/marketing/keywords
|
|
Content-Type: application/json
|
|
Authorization: Bearer <token>
|
|
|
|
{
|
|
"product_name": "<product name>",
|
|
"description": "<product description>",
|
|
"category": "<category>",
|
|
"language": "en",
|
|
"count": 10
|
|
}
|
|
```
|
|
|
|
Response:
|
|
```json
|
|
{
|
|
"keywords": ["keyword1", "keyword2", ...],
|
|
"product": "...",
|
|
"credits_remaining": 45
|
|
}
|
|
```
|
|
|
|
### 3. Competitor Analysis
|
|
|
|
```
|
|
POST /api/v1/marketing/competitor-analysis
|
|
Content-Type: application/json
|
|
Authorization: Bearer <token>
|
|
|
|
{
|
|
"product_name": "<product name>",
|
|
"description": "<product description>",
|
|
"competitors": ["competitor1", "competitor2"]
|
|
}
|
|
```
|
|
|
|
## Configuration
|
|
|
|
Requires a running TradeMate backend instance:
|
|
|
|
```bash
|
|
export TRADEMATE_API_URL=http://localhost:8000
|
|
export TRADEMATE_API_KEY=<your-api-token>
|
|
```
|
|
|
|
## Notes
|
|
|
|
- Each generation consumes 5 marketing credits
|
|
- Free tier: limited daily generations
|
|
- Multiple AI providers (Sensenova / NVIDIA) with automatic fallback
|
|
- Supports English and Chinese output
|