一键导入
brand-marketing-strategy-proposal-skill
Generate comprehensive brand marketing strategy proposals with AI-driven analysis, insights, and PPT-ready content scripts
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate comprehensive brand marketing strategy proposals with AI-driven analysis, insights, and PPT-ready content scripts
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Agent-driven marketing studio that generates complete launch asset suites (logo reveals, demos, launch videos, social clips, OG assets) from one /marketing command
ScrapeBox Ultimate SEO Automation toolkit for large-scale search optimization, backlink analysis, rank tracking, and link building workflows on Windows.
SEO automation toolkit for backlink analysis, link building, rank tracking, and large-scale search optimization workflows on Windows
Comprehensive SEO automation toolkit for link building, backlink analysis, rank tracking, and large-scale search optimization workflows on Windows.
SEO automation toolkit for link building, backlink analysis, rank tracking, and large-scale search optimization workflows
Large-scale SEO automation toolkit for backlink analysis, link building, keyword harvesting, and rank tracking workflows on Windows.
| name | brand-marketing-strategy-proposal-skill |
| description | Generate comprehensive brand marketing strategy proposals with AI-driven analysis, insights, and PPT-ready content scripts |
| triggers | ["generate a brand marketing strategy proposal","create a marketing strategy document for a client","build a brand strategy presentation","analyze client data and create marketing recommendations","generate PPT content for brand strategy","create a marketing strategy proposal workflow","develop brand positioning strategy documents","analyze market opportunities and create strategy deck"] |
Skill by ara.so — Marketing Skills collection.
An Agent Skill for generating professional brand marketing strategy proposals. This project automates the workflow from client data analysis through PPT content script generation and Word document output, following a structured consultation methodology.
This skill implements a multi-stage brand marketing strategy development process:
Clone the repository and set up the directory structure:
git clone https://github.com/yuleiwang156-a11y/brand-marketing-strategy-proposal-skill.git
cd brand-marketing-strategy-proposal-skill
# Create required directories
mkdir -p inputs/客户资料
mkdir -p outputs
mkdir -p agent_memory
mkdir -p backups
project/
├── inputs/
│ └── 客户资料/
│ └── [客户名称]/ # Client-specific folder
│ ├── 品牌资料.pdf
│ ├── 市场数据.xlsx
│ └── 需求说明.docx
├── outputs/ # Generated proposals
├── agent_memory/ # Workflow state and memory
├── backups/ # Backup copies
├── MEMORY.md # Session memory
└── SKILL.md # This file
Analyze client materials and define the project problem statement.
Agent Command:
请按照本项目 Skill 执行。本次客户资料在 inputs/客户资料/[客户名称]/ 中,请从确认点 1 开始。
Expected Output:
Conduct comprehensive analysis across multiple dimensions.
Analysis Components:
Agent Command:
已确认需求理解,请继续研究分析层。
Synthesize research into actionable strategic opportunities.
Output Format:
Agent Command:
研究分析完成,请提炼机会点洞察。
Create dual-layer structure:
Example Structure:
## 客户可见目录
1. 执行摘要
2. 市场洞察
3. 品牌现状诊断
4. 战略机会点
5. 核心策略建议
6. 实施路线图
7. 预期成果
## 内部分析结构
- 数据源清单
- 分析模型应用
- 假设与验证
- 风险评估
Agent Command:
机会点已确认,请搭建目录结构。
Generate slide-by-slide content scripts with:
Example Script:
### 第 3 页:市场规模与增长趋势
**核心信息:**
目标市场呈现双位数增长,年轻消费群体驱动需求升级
**要点:**
- 2023-2025 年市场 CAGR 达 12.5%
- 25-35 岁消费者占比从 32% 增至 41%
- 高端化趋势明显,客单价提升 18%
- 线上渠道占比突破 45%
**数据来源:**
[客户资料]/市场数据.xlsx, Sheet2
**视觉建议:**
柱状图展示市场规模增长 + 饼图展示消费者年龄分布变化
Agent Command:
目录已确认,请开始逐页生成 PPT 内容脚本。
Validate output against quality criteria:
Agent Command:
内容生成完成,请执行质量检查。
Generate final Word document with:
Agent Command:
质量检查通过,请生成 Word 文档。
Output Location:
outputs/[客户名称]_品牌营销战略建议书_[日期].docx
# Optional: Configure AI model preferences
export ANALYSIS_MODEL="gpt-4"
export CONTENT_MODEL="gpt-4"
# Optional: Set language preference
export OUTPUT_LANGUAGE="zh-CN"
# Optional: Quality threshold
export QUALITY_SCORE_THRESHOLD="0.85"
The skill uses MEMORY.md and agent_memory/ to maintain context across sessions:
## 当前项目状态
- 客户:[客户名称]
- 阶段:确认点 2 - 机会点洞察
- 最后更新:2026-06-15
## 已确认内容
- 核心需求:提升品牌认知度和市场份额
- 主要挑战:竞争激烈,品牌差异化不足
- 目标受众:25-40 岁都市中产
## 待办事项
- [ ] 完成机会点优先级排序
- [ ] 用户确认前三大机会点
- [ ] 继续目录搭建
# workflow.py - Example structure (not in original repo)
class BrandStrategyWorkflow:
def __init__(self, client_name):
self.client_name = client_name
self.input_path = f"inputs/客户资料/{client_name}"
self.output_path = f"outputs/{client_name}"
self.stage = "init"
def load_client_materials(self):
"""Load all client materials from input directory"""
materials = []
import os
for file in os.listdir(self.input_path):
if file.endswith(('.pdf', '.docx', '.xlsx', '.pptx')):
materials.append(os.path.join(self.input_path, file))
return materials
def checkpoint_1_needs_analysis(self, materials):
"""Stage 1: Understand client needs and define problem"""
analysis = {
"client_background": "",
"core_challenges": [],
"marketing_objectives": [],
"project_scope": "",
"key_questions": []
}
# AI agent populates this structure
return analysis
def checkpoint_2_opportunity_insights(self, research_data):
"""Stage 3: Extract strategic opportunities"""
opportunities = []
# AI agent identifies 3-5 key opportunities
return opportunities
def generate_ppt_scripts(self, toc_structure):
"""Stage 5: Generate slide-by-slide content"""
scripts = []
for section in toc_structure:
for slide_num in section['slides']:
script = {
"slide_number": slide_num,
"title": "",
"key_message": "",
"bullets": [],
"data_source": "",
"visual_suggestion": ""
}
scripts.append(script)
return scripts
# quality_check.py
class QualityChecker:
def __init__(self, content_scripts):
self.scripts = content_scripts
self.quality_criteria = {
"logic_consistency": 0.0,
"evidence_support": 0.0,
"actionability": 0.0,
"completeness": 0.0
}
def check_logic_consistency(self):
"""Verify logical flow between slides"""
score = 0.0
# Check if each slide builds on previous
# Verify no contradictions
return score
def check_evidence_support(self):
"""Ensure all claims have data backing"""
score = 0.0
unsupported = []
for script in self.scripts:
if not script.get('data_source'):
unsupported.append(script['slide_number'])
score = 1.0 - (len(unsupported) / len(self.scripts))
return score, unsupported
def check_actionability(self):
"""Verify recommendations are concrete"""
score = 0.0
# Look for specific, measurable actions
return score
def run_full_check(self):
"""Execute all quality checks"""
self.quality_criteria['logic_consistency'] = self.check_logic_consistency()
self.quality_criteria['evidence_support'], _ = self.check_evidence_support()
self.quality_criteria['actionability'] = self.check_actionability()
overall_score = sum(self.quality_criteria.values()) / len(self.quality_criteria)
return overall_score, self.quality_criteria
# export_docx.py
from docx import Document
from docx.shared import Pt, Inches
from datetime import datetime
class ProposalExporter:
def __init__(self, client_name, scripts):
self.client_name = client_name
self.scripts = scripts
self.doc = Document()
def add_cover_page(self):
"""Create cover page"""
self.doc.add_heading(f'{self.client_name} 品牌营销战略建议书', 0)
self.doc.add_paragraph(f'生成日期:{datetime.now().strftime("%Y-%m-%d")}')
self.doc.add_page_break()
def add_table_of_contents(self, toc_structure):
"""Insert table of contents"""
self.doc.add_heading('目录', 1)
for idx, section in enumerate(toc_structure, 1):
self.doc.add_paragraph(f'{idx}. {section["title"]}', style='List Number')
self.doc.add_page_break()
def add_slide_script(self, script):
"""Format single slide script"""
self.doc.add_heading(f'第 {script["slide_number"]} 页:{script["title"]}', 2)
self.doc.add_heading('核心信息:', 3)
self.doc.add_paragraph(script['key_message'])
self.doc.add_heading('要点:', 3)
for bullet in script['bullets']:
self.doc.add_paragraph(bullet, style='List Bullet')
if script.get('data_source'):
self.doc.add_heading('数据来源:', 3)
self.doc.add_paragraph(script['data_source'])
if script.get('visual_suggestion'):
self.doc.add_heading('视觉建议:', 3)
self.doc.add_paragraph(script['visual_suggestion'])
self.doc.add_paragraph() # Spacing
def export(self, output_path):
"""Save document"""
self.doc.save(output_path)
return output_path
# Usage
exporter = ProposalExporter("示例客户", ppt_scripts)
exporter.add_cover_page()
exporter.add_table_of_contents(toc_structure)
for script in ppt_scripts:
exporter.add_slide_script(script)
output_file = f"outputs/{exporter.client_name}_品牌营销战略建议书_{datetime.now().strftime('%Y%m%d')}.docx"
exporter.export(output_file)
Allow user to refine outputs at each checkpoint:
# At Checkpoint 2
User: "机会点 3 需要更聚焦在数字化营销,请调整"
Agent: "明白,我将重新分析数字化渠道机会,包括社交媒体、KOL 合作和内容营销..."
Regenerate specific sections without restarting:
User: "请重新生成第 15-20 页的内容脚本,增加更多竞品对比数据"
Agent: "收到,我将重点补充竞品对比维度..."
Resume work across sessions:
# New session
User: "继续上次的项目"
Agent: "上次工作在 [客户名称] 项目的确认点 2,已完成机会点洞察。是否继续目录搭建?"
Problem: Agent cannot find client data files
Solution:
# Verify directory structure
ls -la inputs/客户资料/[客户名称]/
# Ensure files are in supported formats
# Supported: .pdf, .docx, .xlsx, .pptx, .txt
Problem: Research layer lacks depth
Solution:
User: "研究分析层需要补充以下维度:[具体维度]。请重新执行研究分析。"
Provide more specific guidance:
Problem: Content doesn't meet quality threshold
Solution:
# Lower threshold temporarily for review
export QUALITY_SCORE_THRESHOLD="0.75"
# Or identify specific failing criteria
quality_checker = QualityChecker(scripts)
score, criteria = quality_checker.run_full_check()
print(f"Failing criteria: {[k for k, v in criteria.items() if v < 0.8]}")
Problem: Word document formatting is broken
Solution:
# Install/update python-docx
pip install --upgrade python-docx
# Use template for consistent formatting
from docx import Document
doc = Document('templates/proposal_template.docx')
Problem: Agent loses context between sessions
Solution:
# Check memory files exist
ls -la agent_memory/ MEMORY.md
# Manually restore from backup
cp backups/MEMORY_[timestamp].md MEMORY.md
# Explicit context reminder
User: "当前项目:[客户名称],阶段:确认点 2,已完成:[列出已完成内容]"
Organize Client Materials Clearly
Confirm Each Checkpoint
Maintain Version Control
# Backup before major changes
cp -r outputs/ backups/outputs_$(date +%Y%m%d_%H%M%S)/
cp MEMORY.md backups/MEMORY_$(date +%Y%m%d_%H%M%S).md
Use Structured Prompts
Quality Over Speed
Never commit client data to version control
Add to .gitignore:
inputs/客户资料/
outputs/
agent_memory/
MEMORY.md
backups/
*.docx
*.pdf
*.xlsx
Use environment variables for sensitive config:
export CLIENT_NAME="client_code_name" # Not real client name
export API_KEY="${YOUR_API_KEY}" # For external data sources
Extend research layer with proprietary frameworks:
# custom_frameworks.py
class CustomAnalysisFramework:
def __init__(self, framework_name):
self.name = framework_name
self.dimensions = []
def add_dimension(self, dimension, weight):
self.dimensions.append({"name": dimension, "weight": weight})
def apply_to_client(self, client_data):
results = {}
for dim in self.dimensions:
# Apply analysis
results[dim['name']] = self.analyze_dimension(client_data, dim)
return results
Compare strategies across multiple clients:
# Generate comparison report
python scripts/compare_strategies.py \
--clients "客户A,客户B,客户C" \
--output "outputs/strategy_comparison.xlsx"
This skill enables AI agents to guide users through professional brand marketing strategy development with structured methodology, quality controls, and deliverable generation.