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

Procedural Fish Render

  • 782 installs
  • 987 repo stars
  • Updated July 25, 2026
  • vibe-motion/skills

procedural-fish-render is a Claude skill that clones or updates the vibe-motion/procedural-fish repository and renders procedural fish animation videos on demand using the project's Remotion render command.

About

procedural-fish-render is an agent skill from vibe-motion/skills for generating procedural fish animation videos from chat. The workflow resolves the skill directory across agents, clones or updates https://github.com/vibe-motion/procedural-fish, and runs that project's native render command to export Remotion-based 程序鱼 video output. Developers reach for procedural-fish-render when asked to render procedural fish, export a 程序鱼视频, or run procedural-fish Remotion rendering without manually wiring the repo each time. The skill includes a helper script to locate skill_dir across common agent home paths before executing the render pipeline.

  • Clones or updates the official vibe-motion/procedural-fish repository automatically
  • Runs the project's own Remotion render command to export MP4 or MOV video
  • Accepts optional workspace, output path, and JSON preset parameters
  • Returns the absolute path of the rendered video file
  • Works with Claude Code, Cursor, and Codex agent environments

Procedural Fish Render by the numbers

  • 782 all-time installs (skills.sh)
  • +37 installs in the week ending Jul 27, 2026 (Skillselion tracking)
  • Ranked #320 of 1,335 Generative Media skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/vibe-motion/skills --skill procedural-fish-render

Add your badge

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

Listed on Skillselion
Installs782
repo stars987
Last updatedJuly 25, 2026
Repositoryvibe-motion/skills

How do you render procedural fish animation videos?

Generate high-quality procedural fish animation videos on demand directly from agent chat.

Who is it for?

Developers or media builders who want on-demand procedural fish video exports via agent-driven Remotion rendering.

Skip if: General Remotion projects unrelated to procedural-fish or teams that already maintain a custom render pipeline outside that repository.

When should I use this skill?

The user asks to render procedural fish, export a 程序鱼视频, or run the procedural-fish Remotion render workflow.

What you get

A rendered procedural fish video file produced by the procedural-fish Remotion render command.

  • Rendered procedural fish video file

Files

SKILL.mdMarkdownGitHub ↗

Procedural Fish Render

Workflow

1. Resolve skill_dir and run the helper script:

   skill_dir=""
   for base in "${AGENTS_HOME:-$HOME/.agents}" "${CLAUDE_HOME:-$HOME/.claude}" "${CODEX_HOME:-$HOME/.codex}"; do
     if [ -d "$base/skills/procedural-fish-render" ]; then
       skill_dir="$base/skills/procedural-fish-render"
       break
     fi
   done
   [ -n "$skill_dir" ] || { echo "procedural-fish-render skill not found under ~/.agents, ~/.claude, or ~/.codex"; exit 1; }

   /usr/local/bin/python3 "$skill_dir/scripts/render_procedural_fish.py"

2. Optional parameters:

   /usr/local/bin/python3 "$skill_dir/scripts/render_procedural_fish.py" \
     --workspace "$(pwd)" \
     --output "out/procedural-fish-custom.mov" \
     --props-file "shared/project/render-presets/default.json"

3. Return the final absolute video path printed by the script.

Behavior

  • Repository source is fixed to https://github.com/vibe-motion/procedural-fish by default.
  • If local repo exists, the script performs git fetch + git checkout main + git pull --ff-only.
  • If local repo does not exist, the script clones it.
  • Rendering always uses project command pnpm run remotion:render.
  • Default output is out/procedural-fish-transparent.mov.
  • Default props file is shared/project/render-presets/default.json.

Related skills

How it compares

Use procedural-fish-render for the procedural-fish Remotion repo rather than generic Remotion project scaffolding.

FAQ

Which repository does procedural-fish-render use?

procedural-fish-render clones or updates https://github.com/vibe-motion/procedural-fish and uses that repository's own render command to produce procedural fish animation video output.

What triggers procedural-fish-render?

procedural-fish-render runs when users request procedural fish rendering, 程序鱼视频 export, or procedural-fish Remotion rendering, after resolving the skill directory on the agent machine.

This week in AI coding

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

unsubscribe anytime.