Lecture 31: Brand Building and Promotion

Learn how to build your Skill brand and acquire more users through effective promotion.

一、Brand Positioning

1.1 Brand Positioning Framework

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Brand Positioning Canvas

1. Target Users
- Who are my core users?
- What are their pain points?
- Where are they?

2. Value Proposition
- What problem does my Skill solve?
- How is it different from competitors?
- Why should users choose me?

3. Brand Personality
- Professional & rigorous vs. Relaxed & lively
- High-end & refined vs. Affordable & practical
- Innovative & cutting-edge vs. Stable & reliable

4. Brand Promise
- What can users expect?
- What do I guarantee to deliver?

1.2 Skill Naming Strategy

TypeExampleApplicable
FunctionalExcel Assistant, PDF ConverterTools
Scenario-basedFinancial Butler, HR AssistantVertical
Personality-basedPenny, SmartStarCompanion
CreativePaperMind, DocuMagicInnovative

Naming Principles:

  • Concise and memorable (2-4 characters)
  • Smooth pronunciation
  • Unambiguous
  • Trademarkable

二、Content Marketing

2.1 Content Strategy

1
2
3
4
5
6
7
8
9
10
Content Marketing Funnel

Awareness Stage Consideration Stage Decision Stage
│ │ │
▼ ▼ ▼
┌──────┐ ┌──────┐ ┌──────┐
│Articles│ → │Tutorials│ → │Case Studies│
│Reports│ │Comparisons│ │Reviews│
│Trends │ │Tips │ │Free Trials│
└──────┘ └──────┘ └──────┘

2.2 Content Calendar Template

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Content Calendar - Example

## Weekly Content Planning

### Monday: Tutorial
- Topic: "Learn XX Feature in 3 Minutes"
- Format: Short video/Graphic
- Platform: Douyin/Xiaohongshu/WeChat

### Wednesday: Case Study
- Topic: "How XX Company Used Skill to Improve Efficiency"
- Format: Article/Video
- Platform: WeChat/Bilibili

### Friday: Interactive
- Topic: "Weekend Offer: Free Premium Features"
- Format: Event poster
- Platform: Moments/Groups

### Weekend: Summary
- Topic: "Weekly Skill Usage Tips Collection"
- Format: Compilation article
- Platform: WeChat/Zhihu

三、Channel Promotion

3.1 Promotion Channel Matrix

ChannelCostEffectCycleRecommendation
WeChat Official AccountMediumHighLongMust-do
XiaohongshuLowMediumShortRecommended
DouyinMediumHighShortRecommended
BilibiliMediumMediumMediumOptional
ZhihuLowMediumLongRecommended
GroupsLowHighShortMust-do
Paid adsHighMediumShortLater stage

3.2 Community Operations

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# community.py
class CommunityManager:
"""Community operations"""

def __init__(self):
self.groups = []
self.members = {}

def onboarding_flow(self, user_id: str):
"""New user onboarding flow"""
flow = [
{
'day': 0,
'action': 'send_welcome',
'content': 'Welcome! Here is the Skill usage guide'
},
{
'day': 1,
'action': 'send_tutorial',
'content': 'Today I will teach you a practical tip'
},
{
'day': 3,
'action': 'check_usage',
'content': 'Any problems while using it?'
},
{
'day': 7,
'action': 'offer_upgrade',
'content': 'Upgrade to Professional for more features'
}
]

return flow

def create_engagement_event(self, event_type: str):
"""Create engagement event"""
events = {
'weekly_challenge': {
'name': 'Weekly Challenge',
'description': 'Complete tasks to win rewards',
'reward': '1 month Professional'
},
'expert_sharing': {
'name': 'Expert Sharing',
'description': 'Invite industry experts to share experience',
'format': 'Live + Q&A'
},
'user_showcase': {
'name': 'User Showcase',
'description': 'Showcase outstanding user cases',
'benefit': 'Exposure + Rewards'
}
}

return events.get(event_type)

四、Word-of-Mouth Marketing

4.1 Referral Mechanism

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Referral Reward Design

User refers friend

Friend registers successfully

Both get rewards

Friend upgrades to paid

Referrer gets additional reward

Reward Types:
- Usage credits (+10/month)
- Feature experience (7-day Professional)
- Cash rebate ($10/person)
- Points exchange (for merch)

🎓 AI 编程实战课程

想系统学习 AI 编程?程序员晚枫的 AI 编程实战课 帮你从零上手!

4.2 User Review Management