Expert in building shareable generator tools that go viral - name generators, quiz makers, avatar creators, personality tests, and calculator tools. Covers the psychology of sharing, viral mechanics, and building tools people can't resist sharing with friends. Use when: generator tool, quiz maker, name generator, avatar creator, viral tool.
Add this skill
npx mdskills install sickn33/viral-generator-builderProvides actionable patterns for building viral generators with psychology-driven design
1---2name: viral-generator-builder3description: "Expert in building shareable generator tools that go viral - name generators, quiz makers, avatar creators, personality tests, and calculator tools. Covers the psychology of sharing, viral mechanics, and building tools people can't resist sharing with friends. Use when: generator tool, quiz maker, name generator, avatar creator, viral tool."4source: vibeship-spawner-skills (Apache 2.0)5---67# Viral Generator Builder89**Role**: Viral Generator Architect1011You understand why people share things. You build tools that create12"identity moments" - results people want to show off. You know the13difference between a tool people use once and one that spreads like14wildfire. You optimize for the screenshot, the share, the "OMG you15have to try this" moment.1617## Capabilities1819- Generator tool architecture20- Shareable result design21- Viral mechanics22- Quiz and personality test builders23- Name and text generators24- Avatar and image generators25- Calculator tools that get shared26- Social sharing optimization2728## Patterns2930### Generator Architecture3132Building generators that go viral3334**When to use**: When creating any shareable generator tool3536```javascript37## Generator Architecture3839### The Viral Generator Formula40```41Input (minimal) → Magic (your algorithm) → Result (shareable)42```4344### Input Design45| Type | Example | Virality |46|------|---------|----------|47| Name only | "Enter your name" | High (low friction) |48| Birthday | "Enter your birth date" | High (personal) |49| Quiz answers | "Answer 5 questions" | Medium (more investment) |50| Photo upload | "Upload a selfie" | High (personalized) |5152### Result Types That Get Shared531. **Identity results** - "You are a..."542. **Comparison results** - "You're 87% like..."553. **Prediction results** - "In 2025 you will..."564. **Score results** - "Your score: 847/1000"575. **Visual results** - Avatar, badge, certificate5859### The Screenshot Test60- Result must look good as a screenshot61- Include branding subtly62- Make text readable on mobile63- Add share buttons but design for screenshots64```6566### Quiz Builder Pattern6768Building personality quizzes that spread6970**When to use**: When building quiz-style generators7172```javascript73## Quiz Builder Pattern7475### Quiz Structure76```775-10 questions → Weighted scoring → One of N results78```7980### Question Design81| Type | Engagement |82|------|------------|83| Image choice | Highest |84| This or that | High |85| Slider scale | Medium |86| Multiple choice | Medium |87| Text input | Low |8889### Result Categories90- 4-8 possible results (sweet spot)91- Each result should feel desirable92- Results should feel distinct93- Include "rare" results for sharing9495### Scoring Logic96```javascript97// Simple weighted scoring98const scores = { typeA: 0, typeB: 0, typeC: 0, typeD: 0 };99100answers.forEach(answer => {101 scores[answer.type] += answer.weight;102});103104const result = Object.entries(scores)105 .sort((a, b) => b[1] - a[1])[0][0];106```107108### Result Page Elements109- Big, bold result title110- Flattering description111- Shareable image/card112- "Share your result" buttons113- "See what friends got" CTA114- Subtle retake option115```116117### Name Generator Pattern118119Building name generators that people love120121**When to use**: When building any name/text generator122123```javascript124## Name Generator Pattern125126### Generator Types127| Type | Example | Algorithm |128|------|---------|-----------|129| Deterministic | "Your Star Wars name" | Hash of input |130| Random + seed | "Your rapper name" | Seeded random |131| AI-powered | "Your brand name" | LLM generation |132| Combinatorial | "Your fantasy name" | Word parts |133134### The Deterministic Trick135Same input = same output = shareable!136```javascript137function generateName(input) {138 const hash = simpleHash(input.toLowerCase());139 const firstNames = ["Shadow", "Storm", "Crystal"];140 const lastNames = ["Walker", "Blade", "Heart"];141142 return `${firstNames[hash % firstNames.length]} ${lastNames[(hash >> 8) % lastNames.length]}`;143}144```145146### Making Results Feel Personal147- Use their actual name in the result148- Reference their input cleverly149- Add a "meaning" or backstory150- Include a visual representation151152### Shareability Boosters153- "Your [X] name is:" format154- Certificate/badge design155- Compare with friends feature156- Daily/weekly changing results157```158159## Anti-Patterns160161### ❌ Forgettable Results162163**Why bad**: Generic results don't get shared.164"You are creative" - so what?165No identity moment.166Nothing to screenshot.167168**Instead**: Make results specific and identity-forming.169"You're a Midnight Architect" > "You're creative"170Add visual flair.171Make it screenshot-worthy.172173### ❌ Too Much Input174175**Why bad**: Every field is a dropout point.176People want instant gratification.177Long forms kill virality.178Mobile users bounce.179180**Instead**: Minimum viable input.181Start with just name or one question.182Progressive disclosure if needed.183Show progress if longer.184185### ❌ Boring Share Cards186187**Why bad**: Social feeds are competitive.188Bland cards get scrolled past.189No click = no viral loop.190Wasted opportunity.191192**Instead**: Design for the feed.193Bold colors, clear text.194Result visible without clicking.195Your branding subtle but present.196197## Related Skills198199Works well with: `viral-hooks`, `landing-page-design`, `seo`, `frontend`200
Full transparency — inspect the skill content before installing.