Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/dwgx/smartcli/cmd-artnpx skills add dwgx/SmartCLI --skill cmd-artgit clone --depth 1 https://github.com/dwgx/SmartCLIWhat 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 | $0.00133 | $0.04116 |
| Opus 5 | $0.00067 | $0.02058 |
| Sonnet 5 | $0.00027 | $0.00823 |
| Haiku 4.5 | $0.00013 | $0.00412 |
Grade A, and why
cmd-art scanned grade A with 0 findings 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 2d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 197 lines — stays where its author put it; the contents beside it link to each section on GitHub.
cmd-art
Render and design terminal visual effects with fx, a living-template engine: an Effect ABC + a @register decorator + pkgutil auto-discovery, so effects, themes, and multi-effect shows all compose. Pure Python stdlib (optional pyfiglet for fonts, PIL for real images). Truecolor + ANSI, tuned for Windows Terminal but works on any VT-capable terminal.
When to use
- User asks for a terminal/CMD animation or ANSI art: "spinning ball", "donut", "matrix rain", "plasma", "fire", "game of life", "3D title", "rainbow banner", "starfield", "tunnel", "fireworks".
- User wants a static ASCII title/banner with a color gradient, or an image turned into ASCII.
- User wants to invent a new console effect (drop one file in
fx/effects/).
The 30 effects (registry names)
Run python -m fx list for the live catalog. Names + aliases as registered:
| name | kind | what | aliases |
|---|---|---|---|
sphere |
anim | rotating Lambert-shaded 3D ball ("spinning ball") | |
donut |
anim | THE spinning ASCII torus (Sloane donut.c) | |
solarsystem |
anim | orrery: planets on elliptical orbits round a pulsing sun | orrery, planets |
cube |
anim | rotating wireframe cube | |
tunnel |
anim | demoscene tunnel fly-through | |
starfield |
anim | perspective starfield warp | |
plasma |
anim | full-screen sine interference field | wave |
julia |
anim | animated Julia-set fractal (morphing c) | juliaset |
mandelbrot |
anim | infinite zoom into the Mandelbrot set | mandel |
perlin |
anim | flowing Perlin gradient-noise field (clouds) | noise, clouds |
flames |
anim | noise-convection fire, black-body color (vs cellular fire) |
firefield, bonfire |
water |
anim | water surface: sum-of-sines swell + caustic net | ocean, waves |
nebula |
anim | domain-warped gas nebula: filaments, multi-color, stars | galaxy, cosmos |
spectrum_bars |
anim | audio-style spectrum meter: log bins, gravity smoothing, eighth-blocks | spectrum, bars |
text_flyin |
anim | text intro: characters fly in and land | flyin |
text_converge |
anim | text intro: characters converge from a scattered cloud | converge |
text_decrypt |
anim | text intro: cells churn glyphs, then lock to the word | decrypt_text |
fire |
anim | demoscene fire (heat buffer + cooling) | |
rain |
anim | matrix digital rain | |
life |
anim | Conway's Game of Life, toroidal | game_of_life |
boids |
anim | Reynolds flocking | |
cbonsai |
anim | procedural ASCII bonsai grown by a stochastic branching turtle | |
fireworks |
anim | rising shells → gravity sparks | |
sparkle |
anim | dim text under bright glints | |
text3d |
anim* | big figlet/block banner, gradient; shimmer animates | banner |
gradient_text |
anim | lolcat rainbow / theme-gradient text | lolcat |
banner_scroll |
anim | scrolling figlet marquee | marquee |
typewriter |
anim | char-by-char reveal with a cursor | |
decrypt |
anim | scramble-to-plaintext reveal | |
image2ascii |
static | image → half-block truecolor / ASCII ramp | img |
What ships with it
46 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.
- fx/__init__.py 1.2 KB runs code
- fx/__main__.py 114 B runs code
- fx/_noiselib.py 3.6 KB runs code
- fx/base.py 8.2 KB runs code
- fx/cli.py 12 KB runs code
- fx/core.py 6.8 KB runs code
- fx/easing.py 2.7 KB runs code
- fx/effects/__init__.py 275 B runs code
- fx/effects/_texteffect.py 3.4 KB runs code
- fx/effects/banner_scroll.py 2.5 KB runs code
- fx/effects/boids.py 3.6 KB runs code
- fx/effects/cbonsai.py 6.7 KB runs code
- fx/effects/cube.py 3.4 KB runs code
- fx/effects/decrypt.py 3.2 KB runs code
- fx/effects/donut.py 3.2 KB runs code
- fx/effects/fire.py 2.5 KB runs code
- fx/effects/fireworks.py 3.9 KB runs code
- fx/effects/flames.py 2.6 KB runs code
- fx/effects/game_of_life.py 2.9 KB runs code
- fx/effects/gradient_text.py 2.7 KB runs code
- fx/effects/image2ascii.py 8.1 KB runs code
- fx/effects/julia.py 3.7 KB runs code
- fx/effects/mandelbrot.py 3.2 KB runs code
- fx/effects/nebula.py 3.4 KB runs code
- fx/effects/perlin.py 5.6 KB runs code
- fx/effects/plasma.py 2.2 KB runs code
- fx/effects/rain.py 2.9 KB runs code
- fx/effects/solarsystem.py 7.6 KB runs code
- fx/effects/sparkle.py 2.2 KB runs code
- fx/effects/spectrum_bars.py 6.5 KB runs code
- fx/effects/sphere.py 3.0 KB runs code
- fx/effects/starfield.py 2.2 KB runs code
- fx/effects/text_effects.py 4.2 KB runs code
- fx/effects/text3d.py 6.4 KB runs code
- fx/effects/tunnel.py 3.0 KB runs code
- fx/effects/typewriter.py 1.6 KB runs code
- fx/effects/water.py 3.1 KB runs code
- fx/registry.py 3.6 KB runs code
- fx/show.py 9.1 KB runs code
- fx/theme.py 5.1 KB runs code
- fx/util.py 2.3 KB runs code
- references/effects.md 5.8 KB
- scripts/ascii_fx.py 5.3 KB runs code
- tmux/fx-popup.sh 5.3 KB runs code
- tmux/fx-split.sh 5.0 KB runs code
- tmux/README.md 4.0 KB
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.
- 2d ago First seen · 197 lines · 133 tokens per session scan A aaa82d3ecedc
cmd-art is a skill published in the GitHub repository dwgx/SmartCLI (3 stars, last pushed 23d ago), licensed MIT. It adds 133 tokens to every session and 4,116 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
ascii-shader-tsx
Generate animated ASCII art, dithered visuals, and shader-like effects as self-contained React/TSX components. Use when the user wants to create ASCII backgrounds, dithered image/video effects, CRT/retro overlays, matrix rain, noise fields, halftone patterns, particle systems, braille art, terminal aesthetics, or any…
vox-director
Turn ONE topic into a finished Vox-style paper-collage explainer / ad video, end to end on the Atlas Cloud API + local ffmpeg — script, collage keyframes, motion, voice-over, music, captions, all automated. Use this whenever the user wants a "Vox style" video, a paper/torn-paper collage animation, a "motion collage"…
social-post
學習使用者的 Facebook/Instagram/YouTube/Threads/X 語氣與受眾,規劃、撰寫、確認後發佈內容;以已登入 Chrome 受控掃描、草擬及回覆 FB/IG/Threads 留言;並作為流量、留存與轉化的結構化帳本。使用者說「發文」「用我的口氣」「回覆留言」「自動回留言」「掃留言」「查流量」「演算法」「把數據訓練進去」「比較貼文」「優化 pattern」時使用。.
privacy-eu
EU 사용자 대상 서비스용 Privacy Notice·Terms of Service·Consent Modal·Cookie Banner 자동 생성. GDPR (Regulation 2016/679) + ePrivacy Directive + Consumer Rights Directive 2011/83 + Digital Services Act + Digital Content Directive + Unfair Terms Directive 반영. 영문 인터뷰로 진행.
privacy-terms
처리방침·이용약관 자동 생성 진입점. 호출 즉시 6개 하위 스킬(privacy-kr·privacy-eu·privacy-us·privacy-jp·privacy-global·privacy-global-jp)을 번호 메뉴로 제시하고, 번호 입력 즉시 해당 스킬 인터뷰로 직행한다.
higgsfield-troubleshoot
Use when a Higgsfield generation fails, produces poor quality, looks wrong, doesn't match the prompt, or the user needs to fix or improve an output.