agentsclimarketplace

Particle effects

Skill kohoj/skills/particle-effects

Claude Code skills for web scraping & content extraction — Twitter/X tweet scraper, Xiaohongshu (Little Red Book) OCR to Markdown. CDP + httpx architecture.

Install
npx -y skills add kohoj/skills --skill particle-effects

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Generate master-level particle effects for web projects using Three.js, Canvas 2D, WebGL, or WebGPU. Translates visual intent into precise, production-quality implementations with correct physics, rendering, and the aesthetic judgment of top creative studios (Lusion, Active Theory level). Use when: "particle effect", "particles", "particle system", "floating dots", "background animation", "mouse trail", "dissolve effect", "smoke effect", "galaxy animation", "text morphing particles", "hover burst", "scroll reveal particles", "radial pulse", "fluid simulation", "physics sandbox", "ambient background", "point cloud", "particle playground", or any request involving animated dots, sprites, or procedural motion effects on a webpage. Also use when the user describes a visual effect that involves many small moving elements, even if they don't use the word "particle" — e.g., "I want sparkles following the cursor", "floating dust", "stars in the background", "text that breaks apart", "confetti explosion", "smoke wisps".

SKILL.md

10.2 KB, as published. Nobody here has run it

Particle Effects

Generate particle effects that belong on an Awwwards-winning site, not a CodePen demo.

The gap between amateur and master is not the algorithm — it is the details: color harmony, motion weight, layered depth, and restrained post-processing. This skill encodes the judgment of studios like Lusion and artists like Robert Hodgin (flight404), Inigo Quilez, and Yuri Artiukh directly into the workflow so every output meets a professional bar.

Before writing any code, read references/mastery.md — it contains the quality principles that govern every decision below. Internalize those principles; they are not optional polish.

Workflow

Step 1: Identify the Pattern

Match the user's intent to one of 10 proven interaction patterns:

#PatternOne-linerKey Tech
01Ambient BackgroundSlow-drifting atmospheric particlessimplex noise + point sprites + additive blending
02Mouse TrailCursor leaves a particle wakeemitter at cursor + velocity inheritance + alpha decay
03Image/Text MorphImage or text dissolves into / assembles from particlescanvas sampling + spring physics + noise scatter
04Hover BurstParticles explode from a button on hoverradial velocity + gravity + short lifetime
05Scroll RevealElements materialize via particles on scrollIntersectionObserver + spring interpolation
06Radial PulseConcentric rings of particles breathing outwardring emitter + sin modulation + alpha falloff
07Galaxy / SpiralRotating spiral arms of particleslog-spiral distribution + vortex + FBM noise
08Fluid / SmokeOrganic flowing wispscurl noise velocity field + soft blending + narrow color ramp
09DissolveObject crumbles into drifting particlesmesh vertices + noise threshold + bloom edge
10Physics PlaygroundParticles with real collisions & forcesN-body / spatial hashing + collision detection

For full pattern details (parameters, variants, prompt examples), read references/patterns.md.

Step 2: Choose the Tech Stack

ScaleRecommended StackWhy
< 1,000 particlesCanvas 2DSimple, no deps, good for trails & bursts
1,000 – 50,000Three.js + Points/InstancedMeshBattle-tested, great ecosystem
50,000 – 500,000Three.js + GPGPU (FBO ping-pong)GPU-computed positions, CPU just renders
500,000+WebGPU compute shadersNative GPU compute, highest ceiling
React projectReact Three FiberThree.js with React integration

Step 3: Design the Color

Color is the #1 amateur tell. Before writing physics, decide the palette.

  1. Never use pure colors. No #ffffff, #ff0000, #000000. Tint everything. Background: #08080f or #0a0a1a (dark navy, not pure black). Whites: #f0e6ff or #e8f4ff (tinted, not stark).

  2. Build a 5-7 color palette with weighted distribution:

    • 60% dominant mood color
    • 25% secondary color
    • 10% accent (contrasting temperature)
    • 5% highlight (near-white, tinted)
  3. Warm-cool contrast. The best effects mix temperatures: cool blue base + warm gold accents, or warm orange flames + cool dark edges. Single-temperature palettes look flat.

  4. Color over lifetime. Particles should shift color as they age — bright at birth, muted at death (or vice versa). This one technique adds more visual richness than any physics change. See references/mastery.md Section 1 for code patterns.

Step 4: Build the Motion

Every particle should move as if it has mass. Weightless motion looks fake.

  1. Spring physics, not lerp. Use vel += (target - pos) * stiffness; vel *= damping instead of pos += (target - pos) * factor. Springs have overshoot, settle, and weight.

  2. Multi-octave noise. Never use a single noise layer — it looks mechanical. Layer 2-3 octaves with irrational frequency multipliers (2.13x, 4.37x) to avoid repetition:

    v += noise(p * freq, t) * amp
    v += noise(p * freq * 2.13, t * 1.37) * amp * 0.35
    v += noise(p * freq * 4.37, t * 1.71) * amp * 0.15
    
  3. Velocity inheritance. When spawning from a moving source (cursor, scroll), particles must inherit the source's momentum. Without this, trails look placed, not emitted.

  4. Graceful birth and death. Particles fade in over the first ~15% of life and fade out over the last ~30%. No popping.

  5. Choose damping to match weight:

    • 0.85–0.90: heavy, viscous (underwater, thick smoke)
    • 0.91–0.95: natural, weighted (most effects — the sweet spot)
    • 0.96–0.99: light, floaty (space, zero-gravity, ambient)
  6. Never use Math.random() per frame for motion. Use curl/simplex noise for organic flow. Random jitter ≠ organic movement.

For noise type selection, see references/terminology.md (Noise Types section).

Step 5: Compose with Depth

The space between particles is as important as the particles themselves.

  1. Layer at multiple scales. Use 2-3 layers, not one uniform field:

    • Background (15%): tiny, dim, slow — creates atmosphere
    • Mid (80%): standard — the main effect
    • Foreground (5%): large, bright, fast — creates depth illusion
  2. Size variation. Never uniform. Use a distribution skewed toward small: size = Math.exp(Math.random() * 1.2 - 0.3) gives many small, few large.

  3. Respect negative space. Professional work never fills the screen uniformly. Dense regions draw the eye; empty regions give it rest. Aim for 30-40% coverage on ambient effects; focal effects should have dense centers and sparse edges.

Step 6: Apply Post-Processing

Post-processing is not optional. It separates WebGL demo from shipped product.

  1. Bloom (UnrealBloomPass): Always include, but with restraint:

    • strength: 0.2–0.5 (not 1.0+)
    • threshold: 0.3–0.6 (only bright particles glow, not everything)
    • radius: 0.3–0.7 (tight, focused, not giant halos)
  2. Additive blending opacity rules (the most common mistake):

    • Dense effects (smoke, galaxy): 0.05–0.15
    • Medium effects (ambient, morph): 0.15–0.35
    • Sparse effects (trails, bursts): 0.3–0.6
    • If the output looks washed out / white, opacity is too high.
  3. Optional enhancements for premium effects:

    • Depth of Field: blur distant particles
    • Chromatic aberration: subtle RGB offset at edges
    • Vignette: darken screen edges to focus attention

Step 7: Wire the Controls

lil-gui is a design tool, not a debug panel.

  1. Always include lil-gui (unless the user explicitly declines).
  2. Group parameters into semantic folders: Emitter, Physics, Mouse, Rendering.
  3. Name controls for the user, not the code: "Wind Strength" not "noiseAmplitude".
  4. Include presets if the effect supports multiple moods:
    const presets = {
      dreamy:    { noiseSpeed: 0.08, damping: 0.97, bloomStrength: 0.4 },
      energetic: { noiseSpeed: 0.3,  damping: 0.90, bloomStrength: 0.2 },
      minimal:   { noiseSpeed: 0.05, damping: 0.98, bloomStrength: 0.1 },
    };
    
  5. Parameter changes must take effect immediately — no restart required.

Step 8: Quality Gate

Before delivering, verify against these anti-patterns (the "deadly sins" of particle effects):

CheckWhat to look forFix
White-outDense areas burn to pure whiteLower opacity, raise bloom threshold
Uniform soupAll particles same size/speed/colorAdd size variation, layering, palette weights
Linear motionConstant speed, no accelerationUse spring physics, easing, damping
Hard edgesParticles pop in/out instantlyAdd fade in/out over first/last 15% of life
Noise jitterShaking instead of flowingUse curl/simplex noise, not Math.random()
Screen stuffingParticles everywhere, no restReduce count, add negative space
Dead calmAssembled particles perfectly stillAdd very subtle noise idle drift (amp 0.002-0.005)
Missing GUIHard-coded magic numbersAdd lil-gui with grouped, named parameters

The bar is not "does it work." The bar is: would this look at home on a Lusion project page?

Quick Reference

  • Full terminology dictionary (40+ terms): references/terminology.md
  • All 10 patterns with parameters & prompt examples: references/patterns.md
  • Libraries, tools, websites & classic cases: references/resources.md
  • Master-level principles & anti-patterns: references/mastery.md ← read this first

Universal Prompt Template

When the user's request is vague, fill in this brief before coding:

Pattern: [from the 10 patterns above]
Tech stack: [Three.js / Canvas 2D / WebGPU / R3F]
Particle count: [5K / 50K / 500K]
Interaction: [mouse repel / attract / trail / scroll / none]
Visual style: [dreamy soft / hard sci-fi / organic natural / minimal geometric]
Palette: [5-7 specific hex values with warm-cool contrast]
Noise: [curl / simplex / FBM / none] × [octave count]
Post-processing: [bloom settings + optional DOF/vignette]
GUI presets: [mood names and their parameter values]

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.