log-landing-issues

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

/log-landing-issues

/log-landing-issues

Run landing page audit and create GitHub issues for all findings.
运行着陆页审计并为所有检测结果创建GitHub issues。

What This Does

功能说明

  1. Invoke
    /check-landing
    to audit landing page quality
  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-landing
to fix issues.
  1. 调用
    /check-landing
    进行着陆页质量审计
  2. 按优先级(P0-P3)解析检测结果
  3. 检查现有issues以避免重复
  4. 为每个检测结果创建GitHub issues
这是一个Issue创建工具,它仅创建工作项,不修复问题。如需修复问题,请使用
/fix-landing

Process

流程

1. Run Primitive

1. 运行基础技能

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

2. Check Existing Issues

2. 检查现有Issues

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

3. Create Issues

3. 创建Issues

For each finding:
bash
gh issue create \
  --title "[P1] No clear value proposition on landing page" \
  --body "$(cat <<'EOF'
针对每个检测结果:
bash
gh issue create \
  --title "[P1] No clear value proposition on landing page" \
  --body "$(cat <<'EOF'

Problem

Problem

Landing page lacks a clear, compelling headline. Users don't understand what the product does within 5 seconds.
Landing page lacks a clear, compelling headline. Users don't understand what the product does within 5 seconds.

Impact

Impact

  • High bounce rate
  • Visitors leave without understanding value
  • Low signup conversion
  • Marketing spend wasted
  • High bounce rate
  • Visitors leave without understanding value
  • Low signup conversion
  • Marketing spend wasted

Location

Location

app/page.tsx
or
app/(marketing)/page.tsx
app/page.tsx
or
app/(marketing)/page.tsx

Suggested Fix

Suggested Fix

Run
/fix-landing
or add:
  • Clear headline: "X for Y" or "Verb + Benefit"
  • Sub-headline explaining how it works
  • Hero section with clear visual
Examples:
  • "Track your fitness journey. See results in weeks."
  • "The newsletter for busy professionals. 5 min reads that matter."

Created by
/log-landing-issues
EOF )"
--label "priority/p1,domain/landing,type/enhancement"
undefined
Run
/fix-landing
or add:
  • Clear headline: "X for Y" or "Verb + Benefit"
  • Sub-headline explaining how it works
  • Hero section with clear visual
Examples:
  • "Track your fitness journey. See results in weeks."
  • "The newsletter for busy professionals. 5 min reads that matter."

Created by
/log-landing-issues
EOF )"
--label "priority/p1,domain/landing,type/enhancement"
undefined

4. Issue Format

4. Issue格式

Title:
[P{0-3}] Landing page issue
Labels:
  • priority/p0
    |
    priority/p1
    |
    priority/p2
    |
    priority/p3
  • domain/landing
  • type/enhancement
    |
    type/bug
Body:
markdown
undefined
标题:
[P{0-3}] Landing page issue
标签:
  • priority/p0
    |
    priority/p1
    |
    priority/p2
    |
    priority/p3
  • domain/landing
  • type/enhancement
    |
    type/bug
正文:
markdown
undefined

Problem

问题

What's wrong with landing page
着陆页存在的问题

Impact

影响

Effect on conversion/perception
对转化率/用户感知的影响

Location

位置

File path
文件路径

Suggested Fix

建议修复方案

Copy/design guidance or skill to run

Created by
/log-landing-issues
undefined
文案/设计指导或可运行的技能

Created by
/log-landing-issues
undefined

Priority Mapping

优先级映射

GapPriority
No landing pageP0
Landing redirects to appP0
No value prop/headlineP1
No CTAP1
Weak CTA textP1
Mobile brokenP1
Slow load timeP1
No social proofP2
Single CTAP2
Missing metadataP2
Polish itemsP3
问题类型优先级
无着陆页P0
着陆页重定向至应用P0
无价值主张/标题P1
无CTA(号召性用语)P1
CTA文本薄弱P1
移动端显示异常P1
加载速度慢P1
无社交证明P2
单一CTAP2
缺失元数据P2
细节优化项P3

Output

输出结果

After running:
Landing Page Issues Created:
- P0: 0
- P1: 4 (value prop, CTA, mobile, speed)
- P2: 3 (social proof, CTAs, metadata)
- P3: 2 (polish items)

Total: 9 issues created
View: gh issue list --label domain/landing
运行后:
Landing Page Issues Created:
- P0: 0
- P1: 4 (value prop, CTA, mobile, speed)
- P2: 3 (social proof, CTAs, metadata)
- P3: 2 (polish items)

Total: 9 issues created
View: gh issue list --label domain/landing

Related

相关技能

  • /check-landing
    - The primitive (audit only)
  • /fix-landing
    - Fix landing page issues
  • /copywriting
    - Improve marketing copy
  • /cro
    - Conversion optimization
  • /groom
    - Full backlog grooming
  • /check-landing
    - 基础技能(仅审计)
  • /fix-landing
    - 修复着陆页问题
  • /copywriting
    - 优化营销文案
  • /cro
    - 转化率优化
  • /groom
    - 完整待办事项梳理