Source profileQuality 83/100

NousResearch/hermes-agent/skills/creative/ascii-video/SKILL.md

ascii-video

ASCII video: convert video/audio to colored ASCII MP4/GIF.

Source repository stars
225,255
Declared platforms
0
Static risk flags
0
Last source update
2026-08-04
Source checked
2026-08-04

Decision brief

What it does—and where it fits

ASCII video: convert video/audio to colored ASCII MP4/GIF.

Best for

  • Use when users request: ASCII video, text art video, terminal-style video, character art animation, retro text visualization, audio visualizer in ASCII, converting video to ASCII art, matrix-style effects, or any animat…

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/NousResearch/hermes-agent --skill "skills/creative/ascii-video"
Safe inspection promptEditorial

Inspect the Agent Skill "ascii-video" from https://github.com/NousResearch/hermes-agent/blob/f5be9236e00ddf2f2a412697f267078fc4ee068e/skills/creative/ascii-video/SKILL.md at commit f5be9236e00ddf2f2a412697f267078fc4ee068e. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Workflow

    Before any code, articulate the creative concept:

    Mood/atmosphere: What should the viewer feel? Energetic, meditative, chaotic, elegant, ominous?Visual story: What happens over the duration? Build tension? Transform? Dissolve?Color world: Warm/cool? Monochrome? Neon? Earth tones? What's the dominant hue?
  2. 02

    Step 1: Creative Vision

    Before any code, articulate the creative concept:

    Mood/atmosphere: What should the viewer feel? Energetic, meditative, chaotic, elegant, ominous?Visual story: What happens over the duration? Build tension? Transform? Dissolve?Color world: Warm/cool? Monochrome? Neon? Earth tones? What's the dominant hue?
  3. 03

    Step 2: Technical Design

    Mode — which of the 6 modes above

    Mode — which of the 6 modes aboveResolution — landscape 1920x1080 (default), portrait 1080x1920, square 1080x1080 @ 24fpsHardware detection — auto-detect cores/RAM, set quality profile. See references/optimization.md
  4. 04

    Step 3: Build the Script

    Single Python file. Components (with references):

    Hardware detection + quality profile — references/optimization.mdInput loader — mode-dependent; references/inputs.mdFeature analyzer — audio FFT, video luminance, or synthetic
  5. 05

    Step 4: Quality Verification

    Test frames first: render single frames at key timestamps before full render

    Test frames first: render single frames at key timestamps before full renderBrightness check: canvas.mean() 8 for all ASCII content. If dark, lower gammaVisual coherence: do all scenes feel like they belong to the same video?

Permission review

Static risk signals and limitations

No configured static risk pattern was detected

This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score83/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars225,255SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
NousResearch/hermes-agent
Skill path
skills/creative/ascii-video/SKILL.md
Commit
f5be9236e00ddf2f2a412697f267078fc4ee068e
License
MIT
Collected
2026-08-04
Default branch
main
View the original SKILL.md

ASCII Video Production Pipeline

When to use

Use when users request: ASCII video, text art video, terminal-style video, character art animation, retro text visualization, audio visualizer in ASCII, converting video to ASCII art, matrix-style effects, or any animated ASCII output.

What's inside

Production pipeline for ASCII art video — any format. Converts video/audio/images/generative input into colored ASCII character video output (MP4, GIF, image sequence). Covers: video-to-ASCII conversion, audio-reactive music visualizers, generative ASCII art animations, hybrid video+audio reactive, text/lyrics overlays, real-time terminal rendering.

Creative Standard

This is visual art. ASCII characters are the medium; cinema is the standard.

Before writing a single line of code, articulate the creative concept. What is the mood? What visual story does this tell? What makes THIS project different from every other ASCII video? The user's prompt is a starting point — interpret it with creative ambition, not literal transcription.

First-render excellence is non-negotiable. The output must be visually striking without requiring revision rounds. If something looks generic, flat, or like "AI-generated ASCII art," it is wrong — rethink the creative concept before shipping.

Go beyond the reference vocabulary. The effect catalogs, shader presets, and palette libraries in the references are a starting vocabulary. For every project, combine, modify, and invent new patterns. The catalog is a palette of paints — you write the painting.

Be proactively creative. Extend the skill's vocabulary when the project calls for it. If the references don't have what the vision demands, build it. Include at least one visual moment the user didn't ask for but will appreciate — a transition, an effect, a color choice that elevates the whole piece.

Cohesive aesthetic over technical correctness. All scenes in a video must feel connected by a unifying visual language — shared color temperature, related character palettes, consistent motion vocabulary. A technically correct video where every scene uses a random different effect is an aesthetic failure.

Dense, layered, considered. Every frame should reward viewing. Never flat black backgrounds. Always multi-grid composition. Always per-scene variation. Always intentional color.

Modes

ModeInputOutputReference
Video-to-ASCIIVideo fileASCII recreation of source footagereferences/inputs.md § Video Sampling
Audio-reactiveAudio fileGenerative visuals driven by audio featuresreferences/inputs.md § Audio Analysis
GenerativeNone (or seed params)Procedural ASCII animationreferences/effects.md
HybridVideo + audioASCII video with audio-reactive overlaysBoth input refs
Lyrics/textAudio + text/SRTTimed text with visual effectsreferences/inputs.md § Text/Lyrics
TTS narrationText quotes + TTS APINarrated testimonial/quote video with typed textreferences/inputs.md § TTS Integration

Stack

Single self-contained Python script per project. No GPU required.

LayerToolPurpose
CorePython 3.10+, NumPyMath, array ops, vectorized effects
SignalSciPyFFT, peak detection (audio modes)
ImagingPillow (PIL)Font rasterization, frame decoding, image I/O
Video I/Offmpeg (CLI)Decode input, encode output, mux audio
Parallelconcurrent.futuresN workers for batch/clip rendering
TTSElevenLabs API (optional)Generate narration clips
OptionalOpenCVVideo frame sampling, edge detection

Pipeline Architecture

Every mode follows the same 6-stage pipeline:

INPUT → ANALYZE → SCENE_FN → TONEMAP → SHADE → ENCODE
  1. INPUT — Load/decode source material (video frames, audio samples, images, or nothing)
  2. ANALYZE — Extract per-frame features (audio bands, video luminance/edges, motion vectors)
  3. SCENE_FN — Scene function renders to pixel canvas (uint8 H,W,3). Composes multiple character grids via _render_vf() + pixel blend modes. See references/composition.md
  4. TONEMAP — Percentile-based adaptive brightness normalization. See references/composition.md § Adaptive Tonemap
  5. SHADE — Post-processing via ShaderChain + FeedbackBuffer. See references/shaders.md
  6. ENCODE — Pipe raw RGB frames to ffmpeg for H.264/GIF encoding

Creative Direction

Aesthetic Dimensions

DimensionOptionsReference
Character paletteDensity ramps, block elements, symbols, scripts (katakana, Greek, runes, braille), project-specificarchitecture.md § Palettes
Color strategyHSV, OKLAB/OKLCH, discrete RGB palettes, auto-generated harmony, monochrome, temperaturearchitecture.md § Color System
Background textureSine fields, fBM noise, domain warp, voronoi, reaction-diffusion, cellular automata, videoeffects.md
Primary effectsRings, spirals, tunnel, vortex, waves, interference, aurora, fire, SDFs, strange attractorseffects.md
ParticlesSparks, snow, rain, bubbles, runes, orbits, flocking boids, flow-field followers, trailseffects.md § Particles
Shader moodRetro CRT, clean modern, glitch art, cinematic, dreamy, industrial, psychedelicshaders.md
Grid densityxs(8px) through xxl(40px), mixed per layerarchitecture.md § Grid System
Coordinate spaceCartesian, polar, tiled, rotated, fisheye, Möbius, domain-warpedeffects.md § Transforms
FeedbackZoom tunnel, rainbow trails, ghostly echo, rotating mandala, color evolutioncomposition.md § Feedback
MaskingCircle, ring, gradient, text stencil, animated iris/wipe/dissolvecomposition.md § Masking
TransitionsCrossfade, wipe, dissolve, glitch cut, iris, mask-based revealshaders.md § Transitions

Per-Section Variation

Never use the same config for the entire video. For each section/scene:

  • Different background effect (or compose 2-3)
  • Different character palette (match the mood)
  • Different color strategy (or at minimum a different hue)
  • Vary shader intensity (more bloom during peaks, more grain during quiet)
  • Different particle types if particles are active

Project-Specific Invention

For every project, invent at least one of:

  • A custom character palette matching the theme
  • A custom background effect (combine/modify existing building blocks)
  • A custom color palette (discrete RGB set matching the brand/mood)
  • A custom particle character set
  • A novel scene transition or visual moment

Don't just pick from the catalog. The catalog is vocabulary — you write the poem.

Workflow

Step 1: Creative Vision

Before any code, articulate the creative concept:

  • Mood/atmosphere: What should the viewer feel? Energetic, meditative, chaotic, elegant, ominous?
  • Visual story: What happens over the duration? Build tension? Transform? Dissolve?
  • Color world: Warm/cool? Monochrome? Neon? Earth tones? What's the dominant hue?
  • Character texture: Dense data? Sparse stars? Organic dots? Geometric blocks?
  • What makes THIS different: What's the one thing that makes this project unique?
  • Emotional arc: How do scenes progress? Open with energy, build to climax, resolve?

Map the user's prompt to aesthetic choices. A "chill lo-fi visualizer" demands different everything from a "glitch cyberpunk data stream."

Step 2: Technical Design

  • Mode — which of the 6 modes above
  • Resolution — landscape 1920x1080 (default), portrait 1080x1920, square 1080x1080 @ 24fps
  • Hardware detection — auto-detect cores/RAM, set quality profile. See references/optimization.md
  • Sections — map timestamps to scene functions, each with its own effect/palette/color/shader config
  • Output format — MP4 (default), GIF (640x360 @ 15fps), PNG sequence

Step 3: Build the Script

Single Python file. Components (with references):

  1. Hardware detection + quality profilereferences/optimization.md
  2. Input loader — mode-dependent; references/inputs.md
  3. Feature analyzer — audio FFT, video luminance, or synthetic
  4. Grid + renderer — multi-density grids with bitmap cache; references/architecture.md
  5. Character palettes — multiple per project; references/architecture.md § Palettes
  6. Color system — HSV + discrete RGB + harmony generation; references/architecture.md § Color
  7. Scene functions — each returns canvas (uint8 H,W,3); references/scenes.md
  8. Tonemap — adaptive brightness normalization; references/composition.md
  9. Shader pipelineShaderChain + FeedbackBuffer; references/shaders.md
  10. Scene table + dispatcher — time → scene function + config; references/scenes.md
  11. Parallel encoder — N-worker clip rendering with ffmpeg pipes
  12. Main — orchestrate full pipeline

Step 4: Quality Verification

  • Test frames first: render single frames at key timestamps before full render
  • Brightness check: canvas.mean() > 8 for all ASCII content. If dark, lower gamma
  • Visual coherence: do all scenes feel like they belong to the same video?
  • Creative vision check: does the output match the concept from Step 1? If it looks generic, go back

Critical Implementation Notes

Brightness — Use tonemap(), Not Linear Multipliers

This is the #1 visual issue. ASCII on black is inherently dark. Never use canvas * N multipliers — they clip highlights. Use adaptive tonemap:

def tonemap(canvas, gamma=0.75):
    f = canvas.astype(np.float32)
    lo, hi = np.percentile(f[::4, ::4], [1, 99.5])
    if hi - lo < 10: hi = lo + 10
    f = np.clip((f - lo) / (hi - lo), 0, 1) ** gamma
    return (f * 255).astype(np.uint8)

Pipeline: scene_fn() → tonemap() → FeedbackBuffer → ShaderChain → ffmpeg

Per-scene gamma: default 0.75, solarize 0.55, posterize 0.50, bright scenes 0.85. Use screen blend (not overlay) for dark layers.

Font Cell Height

macOS Pillow: textbbox() returns wrong height. Use font.getmetrics(): cell_height = ascent + descent. See references/troubleshooting.md.

ffmpeg Pipe Deadlock

Never stderr=subprocess.PIPE with long-running ffmpeg — buffer fills at 64KB and deadlocks. Redirect to file. See references/troubleshooting.md.

Font Compatibility

Not all Unicode chars render in all fonts. Validate palettes at init — render each char, check for blank output. See references/troubleshooting.md.

Per-Clip Architecture

For segmented videos (quotes, scenes, chapters), render each as a separate clip file for parallel rendering and selective re-rendering. See references/scenes.md.

Performance Targets

ComponentBudget
Feature extraction1-5ms
Effect function2-15ms
Character render80-150ms (bottleneck)
Shader pipeline5-25ms
Total~100-200ms/frame

References

FileContents
references/architecture.mdGrid system, resolution presets, font selection, character palettes (20+), color system (HSV + OKLAB + discrete RGB + harmony generation), _render_vf() helper, GridLayer class
references/composition.mdPixel blend modes (20 modes), blend_canvas(), multi-grid composition, adaptive tonemap(), FeedbackBuffer, PixelBlendStack, masking/stencil system
references/effects.mdEffect building blocks: value field generators, hue fields, noise/fBM/domain warp, voronoi, reaction-diffusion, cellular automata, SDFs, strange attractors, particle systems, coordinate transforms, temporal coherence
references/shaders.mdShaderChain, _apply_shader_step() dispatch, 38 shader catalog, audio-reactive scaling, transitions, tint presets, output format encoding, terminal rendering
references/scenes.mdScene protocol, Renderer class, SCENES table, render_clip(), beat-synced cutting, parallel rendering, design patterns (layer hierarchy, directional arcs, visual metaphors, compositional techniques), complete scene examples at every complexity level, scene design checklist
references/inputs.mdAudio analysis (FFT, bands, beats), video sampling, image conversion, text/lyrics, TTS integration (ElevenLabs, voice assignment, audio mixing)
references/optimization.mdHardware detection, quality profiles, vectorized patterns, parallel rendering, memory management, performance budgets
references/troubleshooting.mdNumPy broadcasting traps, blend mode pitfalls, multiprocessing/pickling, brightness diagnostics, ffmpeg issues, font problems, common mistakes

Creative Divergence (use only when user requests experimental/creative/unique output)

If the user asks for creative, experimental, surprising, or unconventional output, select the strategy that best fits and reason through its steps BEFORE generating code.

  • Forced Connections — when the user wants cross-domain inspiration ("make it look organic," "industrial aesthetic")
  • Conceptual Blending — when the user names two things to combine ("ocean meets music," "space + calligraphy")
  • Oblique Strategies — when the user is maximally open ("surprise me," "something I've never seen")

Forced Connections

  1. Pick a domain unrelated to the visual goal (weather systems, microbiology, architecture, fluid dynamics, textile weaving)
  2. List its core visual/structural elements (erosion → gradual reveal; mitosis → splitting duplication; weaving → interlocking patterns)
  3. Map those elements onto ASCII characters and animation patterns
  4. Synthesize — what does "erosion" or "crystallization" look like in a character grid?

Conceptual Blending

  1. Name two distinct visual/conceptual spaces (e.g., ocean waves + sheet music)
  2. Map correspondences (crests = high notes, troughs = rests, foam = staccato)
  3. Blend selectively — keep the most interesting mappings, discard forced ones
  4. Develop emergent properties that exist only in the blend

Oblique Strategies

  1. Draw one: "Honor thy error as a hidden intention" / "Use an old idea" / "What would your closest friend do?" / "Emphasize the flaws" / "Turn it upside down" / "Only a part, not the whole" / "Reverse"
  2. Interpret the directive against the current ASCII animation challenge
  3. Apply the lateral insight to the visual design before writing code

Alternatives

Compare before choosing

Computed 10042,968

coreyhaines31/marketingskills

ab-testing

When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program

Computed 10042,968

coreyhaines31/marketingskills

churn-prevention

When the user wants to reduce churn, build cancellation flows, set up save offers, recover failed payments, or implement retention strategies. Also use when the user mentions 'churn,' 'cancel flow,' 'offboarding,' 'save offer,' 'dunning,' 'failed payment recovery,' 'win-back,' 'retention,' 'exit survey,' 'pause subscription,' 'involuntary churn,' 'people keep canceling,' 'churn rate is too high,' 'how do I keep users,' or 'customers are leaving.' Use this whenever someone is losing subscribers o

Computed 100165

JasonColapietro/suede-creator-skills

suede-ab-testing

Suede-owned experimentation discipline for hypotheses, sample sizing, test duration, significance, and repeatable experiment programs. Use when comparing variants, deciding whether a result is reliable, or building an experiment backlog and cadence. NOT FOR: analytics instrumentation (use suede-analytics), post-click conversion diagnosis (use suede-site-alchemy), or writing the variant copy itself (use suede-copy).

Computed 1007

narrative-io/narrative-skills-marketplace

design-analysis

Translate a fuzzy analytical question into a rigorous investigation plan. Interrogates the ask, grounds the plan in the available data dictionary, applies analytical best practices, and produces a structured brief of query specifications for a downstream query-writing skill. Plans, does not write SQL. Use when: "why did X drop", "is there a relationship between A and B", "who are our highest-value customers", "what's driving the change in Y", "investigate this trend", "design an analysis for", "