log-onboarding-issues
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
Chinese/log-onboarding-issues
/log-onboarding-issues
Run onboarding audit and create GitHub issues for all findings.
执行新用户引导(onboarding)审计,并为所有检查结果创建GitHub issues。
What This Does
功能说明
- Invoke to audit new user experience
/check-onboarding - 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-onboarding- 调用/check-onboarding技能来审计新用户体验
- 按优先级(P0-P3)解析检查结果
- 检查现有issues以避免重复创建
- 为每个检查结果创建GitHub issues
这是一个issue创建工具,它仅创建工作项,不修复问题。如需修复问题,请使用/fix-onboarding。
Process
执行流程
1. Run Primitive
1. 调用基础技能
Invoke skill to get structured findings.
/check-onboarding调用/check-onboarding技能以获取结构化的检查结果。
2. Check Existing Issues
2. 检查现有Issues
bash
gh issue list --state open --label "domain/onboarding" --limit 50bash
gh issue list --state open --label "domain/onboarding" --limit 503. Create Issues
3. 创建Issues
For each finding:
bash
gh issue create \
--title "[P0] No onboarding flow - users dropped into empty app" \
--body "$(cat <<'EOF'针对每个检查结果执行以下操作:
bash
gh issue create \
--title "[P0] No onboarding flow - users dropped into empty app" \
--body "$(cat <<'EOF'Problem
Problem
After signup, users land on an empty dashboard with no guidance. They don't know what to do first.
After signup, users land on an empty dashboard with no guidance. They don't know what to do first.
Impact
Impact
- High drop-off after signup
- Users never experience core value
- Support tickets asking "how do I start?"
- Lost users who never return
- High drop-off after signup
- Users never experience core value
- Support tickets asking "how do I start?"
- Lost users who never return
Suggested Fix
Suggested Fix
Run or implement:
/fix-onboarding- First-run detection:
typescript
const isNewUser = !user.hasCompletedOnboarding;
if (isNewUser) redirect('/onboarding');- Onboarding wizard:
- Welcome screen
- First action prompt
- Success celebration
- Empty state with CTA: "Create your first X to get started"
Created by
EOF
)"
--label "priority/p0,domain/onboarding,type/enhancement"
/log-onboarding-issues--label "priority/p0,domain/onboarding,type/enhancement"
undefinedRun or implement:
/fix-onboarding- First-run detection:
typescript
const isNewUser = !user.hasCompletedOnboarding;
if (isNewUser) redirect('/onboarding');- Onboarding wizard:
- Welcome screen
- First action prompt
- Success celebration
- Empty state with CTA: "Create your first X to get started"
Created by
EOF
)"
--label "priority/p0,domain/onboarding,type/enhancement"
/log-onboarding-issues--label "priority/p0,domain/onboarding,type/enhancement"
undefined4. Issue Format
4. Issue格式规范
Title:
[P{0-3}] Onboarding issueLabels:
- |
priority/p0|priority/p1|priority/p2priority/p3 domain/onboarding- |
type/enhancementtype/bug
Body:
markdown
undefined标题:
[P{0-3}] Onboarding issue标签:
- |
priority/p0|priority/p1|priority/p2priority/p3 domain/onboarding- |
type/enhancementtype/bug
正文:
markdown
undefinedProblem
Problem
What's broken in new user experience
What's broken in new user experience
Impact
Impact
Effect on activation and retention
Effect on activation and retention
Suggested Fix
Suggested Fix
Code snippet, pattern, or skill to run
Created by
/log-onboarding-issuesundefinedCode snippet, pattern, or skill to run
Created by
/log-onboarding-issuesundefinedPriority Mapping
优先级映射
| Gap | Priority |
|---|---|
| No onboarding flow | P0 |
| Broken auth callback | P0 |
| Paywall before value | P0 |
| No empty states | P1 |
| No first-action guidance | P1 |
| Complex initial forms | P1 |
| No loading states | P1 |
| No progressive disclosure | P2 |
| No tooltips/hints | P2 |
| No tour option | P2 |
| Retention hooks missing | P3 |
| 问题缺口 | 优先级 |
|---|---|
| 无新用户引导流程 | P0 |
| 授权回调失败 | P0 |
| 体验核心价值前出现付费墙 | P0 |
| 无空状态提示 | P1 |
| 无首次操作引导 | P1 |
| 初始表单过于复杂 | P1 |
| 无加载状态提示 | P1 |
| 无渐进式信息披露 | P2 |
| 无提示框/提示信息 | P2 |
| 无引导 tour 选项 | P2 |
| 缺少用户留存钩子 | P3 |
Output
输出结果
After running:
Onboarding Issues Created:
- P0: 1 (no onboarding flow)
- P1: 4 (empty states, guidance, forms)
- P2: 3 (progressive disclosure, hints)
- P3: 2 (notifications, email capture)
Total: 10 issues created
View: gh issue list --label domain/onboarding运行完成后会返回如下内容:
Onboarding Issues Created:
- P0: 1 (no onboarding flow)
- P1: 4 (empty states, guidance, forms)
- P2: 3 (progressive disclosure, hints)
- P3: 2 (notifications, email capture)
Total: 10 issues created
View: gh issue list --label domain/onboardingRelated
相关技能
- - The primitive (audit only)
/check-onboarding - - Fix onboarding issues
/fix-onboarding - - Conversion optimization
/cro - - Full backlog grooming
/groom
- - 基础审计技能(仅审计)
/check-onboarding - - 修复新用户引导问题的技能
/fix-onboarding - - 转化率优化技能
/cro - - 完整待办事项梳理技能
/groom