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

功能说明

  1. Invoke
    /check-virality
    to audit viral growth infrastructure
  2. Parse findings by priority (P0-P3)
  3. Check existing issues to avoid duplicates
  4. Create GitHub issues for each finding
This is an issue-creator. It creates work items, not fixes. Use
/fix-virality
to fix issues.
  1. 调用
    /check-virality
    来审计病毒式增长基础设施
  2. 按优先级(P0-P3)解析检测结果
  3. 检查现有 Issues 以避免重复
  4. 为每个检测结果创建 GitHub Issues
这是一个 Issue 创建工具,它仅创建工作项,不修复问题。如需修复问题,请使用
/fix-virality

Process

流程

1. Run Primitive

1. 运行基础工具

Invoke
/check-virality
skill to get structured findings.
调用
/check-virality
技能以获取结构化检测结果。

2. Check Existing Issues

2. 检查现有 Issues

bash
gh issue list --state open --label "domain/virality" --limit 50
bash
gh issue list --state open --label "domain/virality" --limit 50

3. 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
/fix-virality
or add to
app/layout.tsx
:
typescript
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
/log-virality-issues
EOF )"
--label "priority/p0,domain/virality,type/enhancement"
undefined
运行
/fix-virality
或在
app/layout.tsx
中添加以下代码:
typescript
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
/log-virality-issues
EOF )"
--label "priority/p0,domain/virality,type/enhancement"
undefined

4. Issue Format

4. Issue 格式

Title:
[P{0-3}] Virality gap description
Labels:
  • priority/p0
    |
    priority/p1
    |
    priority/p2
    |
    priority/p3
  • domain/virality
  • type/enhancement
Body:
markdown
undefined
标题:
[P{0-3}] 病毒式传播短板描述
标签:
  • priority/p0
    |
    priority/p1
    |
    priority/p2
    |
    priority/p3
  • domain/virality
  • type/enhancement
正文:
markdown
undefined

Problem

问题

What shareability feature is missing
缺失的可分享性功能说明

Impact

影响

Effect on growth and sharing
对增长和分享的影响

Suggested Fix

建议修复方案

Code snippet or skill to run

Created by
/log-virality-issues
undefined
代码片段或可运行的技能

Created by
/log-virality-issues
undefined

Priority Mapping

优先级映射

GapPriority
No OG tagsP0
No root metadataP0
No dynamic OG imagesP1
No share mechanicsP1
No Twitter cardsP1
No referral systemP2
No UTM trackingP2
No share promptsP2
Launch assets missingP3
No changelogP3
短板优先级
无 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/virality

Related

相关工具

  • /check-virality
    - The primitive (audit only)
  • /fix-virality
    - Fix virality gaps
  • /virality
    - Full viral growth workflow
  • /launch-strategy
    - Launch planning
  • /groom
    - Full backlog grooming
  • /check-virality
    - 基础工具(仅审计)
  • /fix-virality
    - 修复病毒式传播短板
  • /virality
    - 完整病毒式增长工作流
  • /launch-strategy
    - 启动规划
  • /groom
    - 完整待办事项梳理