log-virality-issues
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
Chinese/log-virality-issues
/log-virality-issues
Run virality/shareability audit and create GitHub issues for all findings.
运行病毒式传播/可分享性审计,并为所有检测结果创建 GitHub Issues。
What This Does
功能说明
- Invoke to audit viral growth infrastructure
/check-virality - Parse findings by priority (P0-P3)
- Check existing issues to avoid duplicates
- Create GitHub issues for each finding
This is an issue-creator. It creates work items, not fixes. Use to fix issues.
/fix-virality- 调用 来审计病毒式增长基础设施
/check-virality - 按优先级(P0-P3)解析检测结果
- 检查现有 Issues 以避免重复
- 为每个检测结果创建 GitHub Issues
这是一个 Issue 创建工具,它仅创建工作项,不修复问题。如需修复问题,请使用 。
/fix-viralityProcess
流程
1. Run Primitive
1. 运行基础工具
Invoke skill to get structured findings.
/check-virality调用 技能以获取结构化检测结果。
/check-virality2. Check Existing Issues
2. 检查现有 Issues
bash
gh issue list --state open --label "domain/virality" --limit 50bash
gh issue list --state open --label "domain/virality" --limit 503. Create Issues
3. 创建 Issues
For each finding:
bash
gh issue create \
--title "[P0] No OG tags configured - links broken when shared" \
--body "$(cat <<'EOF'针对每个检测结果:
bash
gh issue create \
--title "[P0] No OG tags configured - links broken when shared" \
--body "$(cat <<'EOF'Problem
问题
No Open Graph meta tags configured. When users share links, they appear broken/generic.
未配置 Open Graph 元标签。当用户分享链接时,链接显示异常/样式通用。
Impact
影响
- Shared links show no preview
- Lower click-through rates on social
- Product looks unprofessional
- Missed viral growth opportunity
- 分享的链接无预览
- 社交平台上的点击率降低
- 产品看起来不够专业
- 错失病毒式增长机会
Suggested Fix
建议修复方案
Run or add to :
/fix-viralityapp/layout.tsxtypescript
export const metadata: Metadata = {
metadataBase: new URL(process.env.NEXT_PUBLIC_APP_URL!),
openGraph: {
type: 'website',
siteName: 'Your Product',
images: ['/og-default.png'],
},
};Created by
EOF
)"
--label "priority/p0,domain/virality,type/enhancement"
/log-virality-issues--label "priority/p0,domain/virality,type/enhancement"
undefined运行 或在 中添加以下代码:
/fix-viralityapp/layout.tsxtypescript
export const metadata: Metadata = {
metadataBase: new URL(process.env.NEXT_PUBLIC_APP_URL!),
openGraph: {
type: 'website',
siteName: 'Your Product',
images: ['/og-default.png'],
},
};Created by
EOF
)"
--label "priority/p0,domain/virality,type/enhancement"
/log-virality-issues--label "priority/p0,domain/virality,type/enhancement"
undefined4. Issue Format
4. Issue 格式
Title:
[P{0-3}] Virality gap descriptionLabels:
- |
priority/p0|priority/p1|priority/p2priority/p3 domain/viralitytype/enhancement
Body:
markdown
undefined标题:
[P{0-3}] 病毒式传播短板描述标签:
- |
priority/p0|priority/p1|priority/p2priority/p3 domain/viralitytype/enhancement
正文:
markdown
undefinedProblem
问题
What shareability feature is missing
缺失的可分享性功能说明
Impact
影响
Effect on growth and sharing
对增长和分享的影响
Suggested Fix
建议修复方案
Code snippet or skill to run
Created by
/log-virality-issuesundefined代码片段或可运行的技能
Created by
/log-virality-issuesundefinedPriority Mapping
优先级映射
| Gap | Priority |
|---|---|
| No OG tags | P0 |
| No root metadata | P0 |
| No dynamic OG images | P1 |
| No share mechanics | P1 |
| No Twitter cards | P1 |
| No referral system | P2 |
| No UTM tracking | P2 |
| No share prompts | P2 |
| Launch assets missing | P3 |
| No changelog | P3 |
| 短板 | 优先级 |
|---|---|
| 无 OG 标签 | P0 |
| 无根元数据 | P0 |
| 无动态 OG 图片 | P1 |
| 无分享机制 | P1 |
| 无 Twitter 卡片 | P1 |
| 无推荐系统 | P2 |
| 无 UTM 追踪 | P2 |
| 无分享提示 | P2 |
| 缺失启动资产 | P3 |
| 无更新日志 | P3 |
Output
输出结果
After running:
Virality Issues Created:
- P0: 2 (OG tags, metadata)
- P1: 3 (dynamic OG, share button, Twitter)
- P2: 3 (referrals, UTM, prompts)
- P3: 2 (launch assets, changelog)
Total: 10 issues created
View: gh issue list --label domain/virality运行后:
Virality Issues Created:
- P0: 2 (OG tags, metadata)
- P1: 3 (dynamic OG, share button, Twitter)
- P2: 3 (referrals, UTM, prompts)
- P3: 2 (launch assets, changelog)
Total: 10 issues created
View: gh issue list --label domain/viralityRelated
相关工具
- - The primitive (audit only)
/check-virality - - Fix virality gaps
/fix-virality - - Full viral growth workflow
/virality - - Launch planning
/launch-strategy - - Full backlog grooming
/groom
- - 基础工具(仅审计)
/check-virality - - 修复病毒式传播短板
/fix-virality - - 完整病毒式增长工作流
/virality - - 启动规划
/launch-strategy - - 完整待办事项梳理
/groom