buddy-universal-agent-profile: Skill for Claude Code

.claude/skills/libresprite-buddy/SKILL.md

libresprite-buddy is a skill for Claude Code, Codex from codysumpter-cloud/buddy-universal-agent-profile. It costs 149 tokens per session (2,642 once invoked), scanned A, original, Apache-2.0.

A toolkit for creating and editing small buddy sprites, which are digital characters or images, with LibreSprite and Python's Pillow library.

In plain words
What is it for?
Use it to make 64x64 or other-sized sprites, recolored versions, altered features, and new shapes based on existing poses, rotations, or animations.
Why use it?
It provides repeatable ways to resize, copy, recolor, swap parts, and build sprite variations while keeping the art crisp.

Skill for Claude CodeCodex

Written for Claude Code and Codex: installed under .claude/, but also reads ~/.codex or $CODEX_HOME. Also seen: mentions subagents; mentions Codex.

This is codysumpter-cloud/buddy-universal-agent-profile's own configuration. It tells Claude Code and Codex how to work on buddy-universal-agent-profile itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything buddy-universal-agent-profile configures →

Reuse

Borrowing it

Nothing to install: this file belongs to codysumpter-cloud/buddy-universal-agent-profile. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/codysumpter-cloud/buddy-universal-agent-profile/main/.claude/skills/libresprite-buddy/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/codysumpter-cloud/buddy-universal-agent-profile

Made for: Claude Code, Codex.

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.

agentmods badge for libresprite-buddy

README.md
[![agentmods](https://agentmods.dev/badge/skills/codysumpter-cloud/buddy-universal-agent-profile/libresprite-buddy.svg)](https://agentmods.dev/skills/codysumpter-cloud/buddy-universal-agent-profile/libresprite-buddy)
Your own site
<a href="https://agentmods.dev/skills/codysumpter-cloud/buddy-universal-agent-profile/libresprite-buddy"><img src="https://agentmods.dev/badge/skills/codysumpter-cloud/buddy-universal-agent-profile/libresprite-buddy.svg" alt="Measured on agentmods" height="20"></a>
Per session 149 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,642 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00149 $0.02642
Opus 5 $0.00075 $0.01321
Sonnet 5 $0.00030 $0.00528
Haiku 4.5 $0.00015 $0.00264

Measured 7d ago against content hash 00a6c3f80cb9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

libresprite-buddy 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 7d 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.

.claude/skills/libresprite-buddy/SKILL.md · 159 lines

How it starts

The opening of the file, as written. The whole thing — 159 lines — stays where its author put it; the contents beside it link to each section on GitHub.

libresprite-buddy

A hybrid sprite toolkit. Pillow is the pixel engine. LibreSprite is the editor / preview only. The entrypoint is a single dispatcher:

plugins/buap/skills/libresprite-buddy/scripts/buddy.py

Hard constraints (verified — build on these, do not relitigate)

  • LibreSprite headless (-b) scripting cannot do pixel ops. In batch mode the app object only exposes launch, open, yield, createDialog, documentation — no activeImage / activeSprite / pixelColor / command. The pixel API exists only in the GUI. So all automation here uses Python/Pillow, never LibreSprite CLI scripting.
  • LibreSprite CLI resize (--scale, --shrink-to) is smooth/bilinear only (no nearest) → soft results. Do not use it for quality resizes; use the resize subcommand.
  • Opening a file for preview works: /Applications/LibreSprite.app/Contents/MacOS/libresprite <file>. The open subcommand shells to that — optional, GUI-only, best-effort.
  • Resize of the Buddy art is best-effort, not lossless. The source art is true ~116px anti-aliased color, not a clean low-res grid, so downscaling is a quality reconstruction (LANCZOS + a light UnsharpMask), not a pixel-perfect conversion.

Dependency

Requires Pillow. If it is missing the scripts exit with code 2 and print: Install it with: pip3 install --user Pillow. Verified present on this machine as Pillow 11.3.0 under python3 (3.9.6).

Subcommands

Run python3 .../buddy.py <subcommand> --help for full flags.

  • resize input output [--size 64] [--method lanczos-sharp|lanczos|nearest|box] Crisp-resize a PNG, or a whole directory of PNGs, preserving alpha. Default lanczos-sharp (LANCZOS + UnsharpMask) is tuned for the anti-aliased Buddy art; use nearest when the input is already clean low-res pixel art.
  • clone source dest [--force] Copy a single template file, or a whole pose/rotation/animation directory, to a destination.
  • recolor input outdir [--count N | --hue 0..1] [--size 64] [--method ...] Generate hue-shifted variants. Identity is preserved: fully transparent pixels stay transparent; near-gray/white pixels (face, eyes, outline) are kept; the warm belly-heart accent is kept; everything else rotates by the hue shift. Emits a native copy plus a resized copy per variant.
  • feature-swap base feature output [--x N --y N] [--size 0] [--method ...] Alpha-paste a feature layer (alternate antennae / eyes / belly icon) onto a base buddy at an offset. Feature parts are user-supplied PNGs.
  • new-buddy --outdir DIR [--name N] [--base FRAME] [--hue 0..1] [--feature PNG --fx --fy] [--size 64] [--procedural [--egg]] "New shape" generator. Two paths:
    • Pose reuse (preferred): pass --base = a pose/rotation/animation frame from a Buddy pack (8 rotations, 24 animation sets), then apply recolor and/or feature-swap. Emits native + resized.
    • Procedural v1 (--procedural): simple parametric primitives (round or --egg body, dot eyes, smile, antennae, belly accent) drawn with PIL.ImageDraw.
  • open file [--libresprite PATH] Preview a file in the LibreSprite GUI. Optional, GUI-only, best-effort.

Read the full file on GitHub · 159 lines

Changes

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.

  1. 7d ago First seen · 159 lines · 149 tokens per session scan A 00a6c3f80cb9

Subscribe to this mod's changes

libresprite-buddy is a skill published in the GitHub repository codysumpter-cloud/buddy-universal-agent-profile (2 stars, last pushed 21d ago), licensed Apache-2.0. It adds 149 tokens to every session and 2,642 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.

Related

Other skills, from other repositories

webgl-holographic-foil

A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.

nexu-io/open-design · 41 tokens

general-video

Author or edit a custom HyperFrames composition when no specialized workflow fits, or when BRIEF.md sets flow: companion. Use for longer or multi-scene pieces, brand and sizzle reels, montages, static loops, static title cards, footage remixes, and freeform builds. Use motion-graphics instead for a short unnarrated…

heygen-com/hyperframes · 92 tokens

html-ppt-hermes-cyber-terminal

OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.

nexu-io/open-design · 53 tokens

html-ppt-taste-brutalist

16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).

nexu-io/open-design · 78 tokens

diagnostic-stem-delivery

Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.

HKUDS/OpenSpace · 23 tokens

chengfeng-check-updates

An environment manager for a video-editing system. It checks whether its skills and runtime—the software needed to run them—are installed and compatible.

Agentchengfeng/chengfeng-videocut-skills · 120 tokens