Getting it into your agent
There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.
Wrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/y5-snowies/nourish/shader-skill)<a href="https://agentmods.dev/skills/y5-snowies/nourish/shader-skill"><img src="https://agentmods.dev/badge/skills/y5-snowies/nourish/shader-skill/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/y5-snowies/nourish/shader-skill"><img src="https://agentmods.dev/badge/skills/y5-snowies/nourish/shader-skill.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.18530 |
| Opus 5 | $0.00000 | $0.09265 |
| Sonnet 5 | $0.00000 | $0.03706 |
| Haiku 4.5 | $0.00000 | $0.01853 |
Grade C, and why
shader-skill scanned grade C with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Tells the agent never to refusehighAnti-refusal
Suppressing the ability to decline removes a core safety control; a later harmful request then succeeds.
does not run into one of these, **it is buildable** — work out the function, do not decline. How it starts
The opening of the file, as written. The whole thing — 1,383 lines — stays where its author put it; the contents beside it link to each section on GitHub.
y5 background shader — skill
Audience: an agent writing a shader bundle for the y5 compositor from a natural-language request. This document is the specification. It is exhaustive: everything you need to emit a correct bundle is here. The example bundles listed at the end are for calibration — read one when you want to see a shape in practice, not to discover what exists.
This folder is self-contained. Everything it refers to is inside it, and every path below is relative to this file:
SKILL.md this document
y5-shader-x86 a prebuilt client for the compositor's gRPC service
shader.proto the service schema, for any other gRPC client
examples/ every bundle referenced below
Resolve the paths against wherever you loaded the skill from. Nothing here reaches outside the folder, so it can be copied anywhere and still work.
Every fact here is checked against the implementation. Where something is parsed but does not work, it says so — those are the traps that cost the most time.
0. Before you write anything
Read first, then build
You are being asked for an effect, and this document is long. Read the sections the request actually needs before emitting a single line — a bundle that has to be corrected three times is slower and more visible to the person waiting than two minutes of reading.
Always read §1 (which form) and §3 (the push block). Then, by what the request involves:
| The request mentions | Read | Open |
|---|---|---|
| just a background, wallpaper, pattern | §1.1, §10 | examples/aurora |
| the desktop, "everything", a whole-screen look | §5, §5.1 | examples/mp-grayscale |
| windows — glow, outline, per-window treatment | §5, §6.1 | examples/tb-window-frost |
| seeing behind a window: transparency, refraction | §7 | examples/tb-window-chroma |
| focus, dragging, resizing, "the active window" | §6.2, §6.3 | examples/tb-window-descriptors |
| the cursor | §6.4 | examples/tb-storage-embers |
| several stages, blur, bloom, pyramids | §2, §11 | examples/tb-chain-bleed |
| trails, decay, "leaves a mark", feedback | §9.1 | examples/tb-persist-trail |
| particles, counters, anything accumulating | §9.2 | examples/tb-storage-embers |
| barrel/lens/CRT distortion, anything that bends the picture | §8 | examples/mp-crt |
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- examples/aurora/wgsl/shader.wgsl 1.7 KB
- examples/broken-wgsl/wgsl/shader.wgsl 396 B
- examples/crt-input-map-live/lib/warp.wgsl 1.6 KB
- examples/crt-input-map-live/passes/crt.wgsl 5.2 KB
- examples/crt-input-map-live/pipeline.json 692 B
- examples/crt-rotating-input-both/lib/warp.wgsl 3.3 KB
- examples/crt-rotating-input-both/passes/crt.wgsl 5.1 KB
- examples/crt-rotating-input-both/passes/world.wgsl 6.7 KB
- examples/crt-rotating-input-both/pipeline.json 699 B
- examples/glass/passes/backdrop.wgsl 1.2 KB
- examples/glass/passes/glass.wgsl 5.0 KB
- examples/glass/pipeline.json 427 B
- examples/make-texture-assets.py 7.3 KB runs code
- examples/motion-blur/passes/backdrop.wgsl 1.8 KB
- examples/motion-blur/passes/blur.wgsl 3.4 KB
- examples/motion-blur/pipeline.json 388 B
- examples/mp-colorblind/passes/vision.wgsl 4.5 KB
- examples/mp-colorblind/pipeline.json 562 B
- examples/mp-crt/lib/warp.wgsl 2.8 KB
- examples/mp-crt/passes/crt.wgsl 9.0 KB
- examples/mp-crt/pipeline.json 683 B
- examples/mp-effects/passes/effects.wgsl 13 KB
- examples/mp-effects/passes/finish.wgsl 7.8 KB
- examples/mp-effects/pipeline.json 949 B
- examples/mp-grayscale/passes/gray.wgsl 1.7 KB
- examples/mp-grayscale/pipeline.json 557 B
- examples/mp-invert/passes/invert.wgsl 1.9 KB
- examples/mp-invert/pipeline.json 558 B
- examples/mp-levels/passes/levels.wgsl 4.3 KB
- examples/mp-levels/pipeline.json 584 B
- examples/mp-parallax/lib/parallax.wgsl 6.7 KB
- examples/mp-parallax/passes/backdrop.wgsl 1.5 KB
- examples/mp-parallax/pipeline.json 289 B
- examples/tb-cadence/passes/out.wgsl 2.0 KB
- examples/tb-cadence/passes/slow.wgsl 1.2 KB
- examples/tb-cadence/pipeline.json 454 B
- examples/tb-chain-bleed/passes/blur.wgsl 2.4 KB
- examples/tb-chain-bleed/passes/combine.wgsl 3.9 KB
- examples/tb-chain-bleed/passes/down.wgsl 2.4 KB
- examples/tb-chain-bleed/passes/extract.wgsl 3.0 KB
- examples/tb-chain-bleed/pipeline.json 2.0 KB
- examples/tb-crt-spin/lib/warp.wgsl 1.2 KB
- examples/tb-crt-spin/passes/crt.wgsl 5.1 KB
- examples/tb-crt-spin/pipeline.json 667 B
- examples/tb-persist-trail/passes/accumulate.wgsl 3.5 KB
- examples/tb-persist-trail/passes/present.wgsl 2.5 KB
- examples/tb-persist-trail/pipeline.json 626 B
- examples/tb-storage-embers/passes/clear.wgsl 1.9 KB
- examples/tb-storage-embers/passes/render.wgsl 3.2 KB
- examples/tb-storage-embers/passes/simulate.wgsl 11 KB
- examples/tb-storage-embers/pipeline.json 784 B
- examples/tb-storage-histogram/passes/graph.wgsl 2.7 KB
- examples/tb-storage-histogram/passes/reset.wgsl 1.6 KB
- examples/tb-storage-histogram/passes/tally.wgsl 2.2 KB
- examples/tb-storage-histogram/pipeline.json 767 B
- examples/tb-texture-all/grade.png 8.9 KB
- examples/tb-texture-all/paper.png 209 KB
- examples/tb-texture-all/passes/grade.wgsl 5.5 KB
- examples/tb-texture-all/passes/world.wgsl 12 KB
- examples/tb-texture-all/pipeline.json 851 B
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 1,383 lines · 0 tokens per session scan C f6bcd50da086
shader-skill is a skill published in the GitHub repository y5-snowies/nourish (228 stars, last pushed 7d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 18,530 tokens. A static security scan graded it C with 1 finding (tells the agent never to refuse). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
screenshot-game-view
Capture a screenshot of the Unity Editor's Game View by reading its internal render texture directly. Image size matches the current Game View resolution; the tool corrects Y-flip on DirectX / Metal so the output is always upright. Requires an open Game View window.
threejs-audio-generator
Generate, convert, clean, and integrate audio for Three.js browser games with ElevenLabs: sound effects, looping ambience, UI sounds, impact/weapon/vehicle audio, creature and boss stingers, announcer and dialogue TTS, voice conversion from a scratch performance, voice cleanup, audio manifests, and Web Audio…
sprite-gen
A pipeline for turning generated 2D game-character images into transparent sprite sheets, which store animation frames for a game.
audio-design
Implement game audio practice — bus/mixer architecture and gain in decibels, ducking (sidechain), adaptive/dynamic music via layering and re-sequencing, SFX variation, and beat synchronization. Engine-neutral. Use when the user mentions audio mixing, audio buses, adaptive/dynamic music, ducking, SFX variation, music…
create-game-assets
Plan, generate, source, normalize, and validate cohesive visual game assets. Use for art direction, style bibles, sprites, tilesets, backgrounds, UI art, icons, textures, concept art, or 3D asset briefs.
threejs-world-generation
Build deterministic, editable, free-viewpoint Three.js worlds from text or structured briefs. Use for cinematic 3D terrain, semantic regions, procedural biomes, explicit landmarks, environmental scattering, camera fly-throughs, world diagnostics, or requests for a real 3D environment rather than generated 2D footage.…