Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
broomva avatar

Brainrot For Good

  • 2 installs
  • 3 repo stars
  • Updated August 5, 2026
  • broomva/skills

brainrot-for-good is a Claude Code skill that produces high-retention short-form edutainment video using brainrot editing techniques built on Remotion with Imagen and Veo assets.

About

brainrot-for-good is a skill that produces high-retention short-form video content using brainrot editing techniques such as fast cuts, word-by-word captions, sound design, and pattern interrupts, applied to genuinely valuable content. It is built on Remotion with Imagen and Veo for assets and codifies eight retention triggers, pacing specs, and caption style presets. A creator uses it to make TikTok, Reels, and Shorts that teach while holding attention. It enforces an ethical test so techniques serve real substance.

  • Produces high-retention short-form video with brainrot editing techniques
  • Applies 8 retention triggers and word-by-word caption presets, built on Remotion
  • Targets edutainment: brainrot pacing with genuine substance (Fireship model)

Brainrot For Good by the numbers

  • 2 all-time installs (skills.sh)
  • Ranked #1,166 of 1,335 Generative Media skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

brainrot-for-good capabilities & compatibility

Capabilities
video editing · caption generation · short form content
Use cases
video generation · marketing · copywriting
From the docs

What brainrot-for-good says it does

Produce high-retention, dopamine-aware video content using brainrot editing techniques
SKILL.md
The pacing of brainrot, the substance of a textbook.
SKILL.md
npx skills add https://github.com/broomva/skills --skill brainrot-for-good

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs2
repo stars3
Last updatedAugust 5, 2026
Repositorybroomva/skills

What it does

Produce high-retention short-form edutainment video (TikTok/Reels/Shorts) with fast cuts and word-by-word captions using Remotion.

Who is it for?

Making TikTok, Reels, and Shorts that hold attention with fast cuts and captions while teaching real substance.

Skip if: Scripts with nothing to teach, since no editing technique will save empty content.

When should I use this skill?

A user wants fast-paced, high-retention edutainment video or Fireship-style Shorts.

What you get

Short-form video that pairs brainrot pacing with genuine substance and word-by-word captions.

  • Short-form edutainment video
  • Word-by-word caption components
  • Retention-optimized edit plan

By the numbers

  • 8 retention triggers
  • 4 caption style presets
  • target 10-15 cuts per minute

Files

SKILL.mdMarkdownGitHub ↗

Brainrot for Good — High-Retention Video with Substance

Use the attention-capture techniques of brainrot content — fast cuts, word-by-word captions, sound design, pattern interrupts — to deliver content that actually matters. The pacing of brainrot, the substance of a textbook.

The Ethical Framework

This skill exists for one reason: attention is the scarcest resource, and the techniques that capture it most effectively are currently used for empty content. We reclaim them for value.

The Ethical Test (apply to every piece)

1. Value-first: Does every engagement technique serve content that delivers genuine insight? 2. Substance survives: If you removed all effects and read the script as plain text, would it still be worth reading? 3. Active recall: Does the content prompt action (try this, build this, think about this)? 4. No exploitation: Are you capturing attention to deliver value, or just capturing attention? 5. Transparency: The audience knows this is engineered for engagement — don't pretend otherwise.

If the script has nothing to teach, no technique will save it. Fix the script first.

Compounding Skills

SkillRole
/launch-videoLiquid Glass aesthetic, GlassPanel, ParticleField, spring animations
/remotion-best-practicesComposition structure, <Sequence>, rendering
/content-creationStorytelling frameworks, AI assets (Imagen, Veo, TTS)
/google-veoCinematic B-roll generation
/subtitle-generationWord-by-word caption generation
/blog-postDistribution pipeline
/creative-reviewStyle adherence scoring

The 8 Retention Triggers

Based on dopamine-economy research. Use all 8 in every video:

#TriggerTechniqueEthical Use
1Pattern InterruptVisual/audio jolt every 2-4s that resets attentionEmphasize key information, not random noise
2Information GapTease the answer before revealing itBuild genuine curiosity about real concepts
3Visual VelocityScene change every 2-4 secondsMatch cuts to content beats, not arbitrary
4Micro-NarrativeSetup → conflict → resolution in 15-60sTeach through story, not just facts
5Sensory LayeringSynced VO + visuals + text + SFXEach layer reinforces the SAME message
6Social Proof"Most developers don't know this"Only use when the claim is actually true
7Thesis-AntithesisPresent belief → challenge → resolve with insightCreate genuine cognitive engagement
8Exit PreventionCliffhanger or CTA in final 3 secondsPoint to something worth their time

Pacing Specs

MetricBrainrot StandardBrainrot-for-Good TargetFireship Reference
Cuts per minute20-3010-1510-15
Words per minute180-220200-250200-250
Scene hold time1-2s2-4s2-4s
Total duration15-60s30-120s100s (strict)
Pattern interruptsEvery 1-2sEvery 3-5sEvery 4-6s
Hook window1.3s3s3s

Key difference: Pure brainrot overstimulates. Brainrot-for-good operates at the cognitive load sweet spot — enough stimulation to hold attention, not so much it overwhelms comprehension.

Caption System (Word-by-Word)

The highest-engagement caption format. Each word appears as it's spoken, with the current word highlighted.

Remotion Implementation

const WordByWordCaption: React.FC<{
  words: string[];
  currentWordIndex: number;
}> = ({ words, currentWordIndex }) => (
  <div style={{
    position: 'absolute',
    bottom: 120,
    left: '50%',
    transform: 'translateX(-50%)',
    display: 'flex',
    flexWrap: 'wrap',
    justifyContent: 'center',
    gap: 8,
    maxWidth: '90%',
  }}>
    {words.map((word, i) => {
      const isActive = i === currentWordIndex;
      const isPast = i < currentWordIndex;
      return (
        <span key={i} style={{
          fontFamily: 'Montserrat, sans-serif',
          fontWeight: 800,
          fontSize: 36,
          textTransform: 'uppercase',
          color: isActive ? '#FFDD00' : isPast ? '#FFFFFF' : 'rgba(255,255,255,0.3)',
          transform: isActive ? 'scale(1.2)' : 'scale(1)',
          textShadow: isActive
            ? '0 0 20px rgba(255,221,0,0.5), 2px 2px 0 #000'
            : '2px 2px 0 #000',
          transition: 'all 0.1s ease',
        }}>
          {word}
        </span>
      );
    })}
  </div>
);

Caption Style Presets

StyleFontActive ColorUse Case
HormoziMontserrat Bold, uppercaseYellow (#FFDD00)Business/productivity
FireshipInter BoldWhite with glowTechnical/dev
CleanSF Pro, sentence caseBlue (#3B82F6)Professional/launch
ChaoticComic Sans Bold, random rotationRainbow cyclingMeme-aware edutainment

Sound Design

Sound Effect Library (Ethical Use)

SoundWhen to UseEffectSource
Impact/boomKey stat or revelationEmphasizes importanceVine Boom style
WhooshTransition between scenesSmooth flowStandard SFX
Cash registerCost savings, revenue numbersMonetary emphasisStandard SFX
Notification pingNew concept introducedSignals attentionUI sounds
Typing clicksCode or terminal scenesAuthenticityKeyboard ASMR
Bass dropPlot twist or contrarian revealDramatic emphasisMusic production

Rule: Sound effects emphasize key information. Never use them as empty stimulation. Every sound must correspond to a content beat.

Background Music

  • Lofi beats (90-110 BPM) for tutorials
  • Electronic/synthwave (120-140 BPM) for product demos
  • No vocals — compete with narration
  • Volume: -18dB below narration

Scene Types (Brainrot Variants of /launch-video)

1. Rapid-Fire Intro (replaces Title Card)

Duration: 3 seconds Content: 3 fast cuts — problem image → solution image → result stat Audio: Three ascending impact sounds Caption: "STOP. SCROLLING." → topic in 5 words

2. Terminal Speed Run (replaces Prompt Scene)

Duration: 4-6 seconds Content: Terminal with FAST typewriter (3-4 chars/frame), code flying by Audio: Rapid keyboard ASMR, subtle bass build Caption: Word-by-word narration of what's happening

3. Pipeline Blitz (replaces Pipeline Scene)

Duration: 4-5 seconds Content: All 9 nodes SLAM in simultaneously with stagger of 3 frames each Audio: Machine-gun impact sounds, ascending pitch Caption: "NINE. PHASES." (Hormozi style, big text)

4. File Explosion (replaces Product Demo)

Duration: 3-4 seconds Content: Files spray outward from center like an explosion, then snap into a grid Audio: Whoosh → snap into place sound Caption: "18 files. One command."

5. Checkmark Cascade (replaces Platform Success)

Duration: 3 seconds Content: Platform cards slam in from edges, checkmarks EXPLODE with particle burst Audio: Four rapid success chimes, ascending Caption: "X. LinkedIn. Instagram. Blog. DONE."

6. CTA Slam (replaces CTA Card)

Duration: 3 seconds Content: Command text SLAMS onto screen with bounce animation Audio: Final impact + brief silence Caption: Word-by-word "install it right now"

Composition Structure

Total: 20-30 seconds (brainrot-optimized)

[0-3s]   Rapid-Fire Intro — 3 fast cuts with impacts
[3-7s]   Terminal Speed Run — fast typewriter in glass panel
[7-11s]  Pipeline Blitz — 9 nodes slam in rapid sequence
[11-15s] File Explosion — outputs spray and snap to grid
[15-18s] Checkmark Cascade — platforms verified with particle bursts
[18-21s] CTA Slam — install command with bounce

Background: ParticleField (doubled particle count, faster drift)
Captions: Word-by-word throughout, Hormozi style
Music: Synthwave 130BPM, -18dB
SFX: Impact on every scene transition

Production Pipeline

1. SCRIPT → Write narration first (200-250 WPM, every word must teach)
   → Apply ethical test: does substance survive without effects?
2. STORYBOARD → Map each sentence to a scene with visual + SFX
3. ASSETS → Imagen 4.0 for key frames, Veo 3.1 for 2-3s B-roll bursts
4. COMPOSE → Remotion composition with:
   → WordByWordCaption component synced to narration timing
   → SFX timed to content beats (not arbitrary)
   → Visual velocity: scene change every 2-4 seconds
   → ParticleField with 80+ particles (doubled from launch-video)
5. RENDER → npx remotion render BrainrotComposition --output video.mp4
6. REVIEW → /creative-review with brainrot-specific checklist
7. DISTRIBUTE → /blog-post publish pipeline

Quality Checklist (Brainrot-for-Good Specific)

Must Pass

  • [ ] Script has genuine substance (ethical test: plain text is still worth reading)
  • [ ] Hook captures in first 3 seconds (pattern interrupt, not just text)
  • [ ] Word-by-word captions present and synced
  • [ ] Sound effect on every scene transition
  • [ ] No static shot longer than 4 seconds
  • [ ] Total duration 20-60 seconds
  • [ ] CTA in final 3 seconds

Should Pass

  • [ ] At least 1 thesis-antithesis moment (challenge a belief)
  • [ ] At least 1 concrete number or stat
  • [ ] Background music present, below -18dB
  • [ ] Pacing at 10-15 cuts per minute
  • [ ] Active recall prompt ("try this" or "think about this")

Must NOT

  • [ ] No engagement technique without corresponding content value
  • [ ] No sensory stimulation that competes with comprehension
  • [ ] No misleading social proof ("99% don't know this" — if untrue)
  • [ ] No infinite-scroll optimization (video must have a clear endpoint)
  • [ ] No empty split-screen gameplay (if split-screen, both halves must serve the message)

Related skills

FAQ

What are the retention triggers?

Eight triggers including pattern interrupt, information gap, visual velocity, micro-narrative, sensory layering, social proof, thesis-antithesis, and exit prevention, all used ethically.

What is the ethical test?

Every piece must be value-first, survive as plain text, prompt active recall, avoid exploitation, and be transparent that it is engineered for engagement.

Generative Mediacontentdistribution

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.