askill
log-virality-issues

log-virality-issuesSafety 85Repository

Run /check-virality, then create GitHub issues for all findings. Issues are created with priority labels and structured format. Use /fix-virality instead if you want to fix issues immediately.

4 stars
1.2k downloads
Updated 2/12/2026

Package Files

Loading files...
SKILL.md

/log-virality-issues

Run virality/shareability audit and create GitHub issues for all findings.

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.

Process

1. Run Primitive

Invoke /check-virality skill to get structured findings.

2. Check Existing Issues

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

3. Create Issues

For each finding:

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.

## 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"


### 4. Issue Format

**Title:** `[P{0-3}] Virality gap description`

**Labels:**
- `priority/p0` | `priority/p1` | `priority/p2` | `priority/p3`
- `domain/virality`
- `type/enhancement`

**Body:**
```markdown
## 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`

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

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

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

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

88/100Analyzed 2/20/2026

Well-structured skill for auditing virality gaps and creating GitHub issues. Provides complete workflow with step-by-step commands, issue templates, priority mapping, and duplicate checking. Good balance of specificity (virality domain) and reusability (issue creation pattern). Minor improvements would be error handling for API limits.

85
90
82
88
92

Metadata

Licenseunknown
Version-
Updated2/12/2026
Publisherphrazzld

Tags

githubgithub-actions