peon-ping-remix

peon-ping-remix is a skill for Claude Code, Codex from PeonPing/peon-ping. It costs 116 tokens per session (930 once invoked), scanned A, original, MIT.

An internal job runner for rerendering sounds in a PeonPing voice pack, a collection of character notification sounds.

In plain words
What is it for?
Use it only when the PeonPing evaluation server supplies a reroll job describing the sound or pack to regenerate.
Why use it?
It lets the evaluation system replace a selected sound or an entire pack while keeping the existing pack style and configuration context.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it only when the PeonPing evaluation server supplies a reroll job describing the sound or pack to regenerate.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/peonping/peon-ping/peon-ping-remix
About the project

PeonPing/peon-ping is a notification tool that alerts users with game-character voice lines and on-screen banners when an AI coding agent needs attention or finishes work. It helps people monitor terminal-based agents without constantly watching the terminal. Its catalogue add-ons configure or extend these notifications for coding agents and MCP clients.

PeonPing/peon-ping · 5,022 stars · on GitHub · peonping.com

Install

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.

Any agent
npx skills add PeonPing/peon-ping --skill peon-ping-remix
Clone the repo
git clone --depth 1 https://github.com/PeonPing/peon-ping

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 peon-ping-remix

README.md
[![agentmods](https://agentmods.dev/badge/skills/peonping/peon-ping/peon-ping-remix/github.svg)](https://agentmods.dev/skills/peonping/peon-ping/peon-ping-remix)
Your own site
<a href="https://agentmods.dev/skills/peonping/peon-ping/peon-ping-remix"><img src="https://agentmods.dev/badge/skills/peonping/peon-ping/peon-ping-remix/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.

agentmods 80×15 button for peon-ping-remix

Your own site · 80×15
<a href="https://agentmods.dev/skills/peonping/peon-ping/peon-ping-remix"><img src="https://agentmods.dev/badge/skills/peonping/peon-ping/peon-ping-remix.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 116 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 930 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00116 $0.00930
Opus 5 $0.00058 $0.00465
Sonnet 5 $0.00023 $0.00186
Haiku 4.5 $0.00012 $0.00093

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

Security

Grade A, and why

peon-ping-remix 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 10d 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.

skills/peon-ping-remix/SKILL.md · 66 lines

How it starts

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

peon-ping-remix

You are executing ONE reroll job for a draft PeonPing pack. Work only inside the job's draft_dir. Do not touch any other directory, do not install anything, do not commit anything.

If invoked without a job-file path

This skill is internal: it is only ever invoked headlessly by the peon eval server with a job-file path. If you were invoked WITHOUT one (a human ran this directly), do nothing except tell them this skill runs automatically from the eval server and that they should run peon eval <pack> instead. Do not touch any files. Exit.

Procedure

  1. Read the job JSON at the path you were given: scope ("sound" or "pack"), category, index, caption, draft_dir.
  2. Read <draft_dir>/openpeon.json and <draft_dir>/prompts.json. If prompts.json is missing, fail with a clear message — you cannot reroll without the current prompts.
  3. Determine the target sound files: scope "sound" → the one file at categories[category].sounds[index].file; scope "pack" → every file in every category.
  4. For each target, author a NEW render input honoring the caption:
    • Keep the pack's established aesthetic (read the other prompts for context). The caption is a correction, not a reset: "too harsh, want softer" means adjust intensity, keep the instrument palette unless the caption says otherwise.
    • sfx entries: rewrite prompt. tts entries: rewrite text (keep voice_id — never change a pack's voice in a reroll).
    • If the caption is empty, produce a fresh variation of the same idea.
  5. Render each target: write the new input as a job file under <draft_dir>/jobs/ (e.g. <draft_dir>/jobs/render-job-<category>_<index>.jsonapprove prunes everything under jobs/, so a render input left at the draft root would ship as junk in the approved pack) and run python3 <peon-ping>/scripts/pack-render.py --job <file> with out set to the target WAV path (overwrite in place). The renderer exits nonzero on silent/failed renders — if it fails, STOP and exit nonzero yourself with its stderr; do not half-update the log. (Resolve <peon-ping> as the scripts directory next to the running peon install, in order: $PEON_DIR/scripts when set, else ${CLAUDE_CONFIG_DIR:-$HOME/.claude}/hooks/peon-ping/scripts, else the repo checkout you were invoked from.)
  6. After ALL targets render successfully: update prompts.json with the new inputs, and append one entry per rendered sound to <draft_dir>/eval-log.json (create as [] if missing): {"ts": "<ISO8601>", "scope", "category", "index", "caption", "old_prompt", "new_prompt", "file"}.
  7. Print a one-line summary per rendered sound. Exit 0.

Read the full file on GitHub · 66 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. 10d ago First seen · 66 lines · 116 tokens per session scan A ca8b98d5f1f1

Subscribe to this mod's changes

peon-ping-remix is a skill published in the GitHub repository PeonPing/peon-ping (5,022 stars, last pushed 10d ago), licensed MIT. It adds 116 tokens to every session and 930 once invoked, about $0.0006 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-30.

Related

Other skills, from other repositories

excalidraw-architect

Choose and compose the right Excalidraw diagram - architecture, flowchart, sequence, state, ER, swimlane, process, timeline, quadrant, pyramid, venn, loop, gantt, bar, line, scatter, and more - using the excalidraw-architect-mcp server. Use whenever a reader would learn more from a picture than from prose, or when…

BV-Venky/excalidraw-architect-mcp · 101 tokens

resolve-camera-motion

Create smooth camera motions, zoom punch-ins, pull-outs, and multi-keyframe paths in DaVinci Resolve using 14 standard easing curves and AI presets.

flamexnreal/davinci-resolve-ai-bridge-mcp · 36 tokens

magnifier-callout

Create broadcast-quality floating rounded-rectangle/circular magnifier callouts and background blur focus effects for screen recordings and video clips, seamlessly integrated with DaVinci Resolve timelines.

flamexnreal/davinci-resolve-ai-bridge-mcp · 39 tokens

resolve-ai-editing

Plan, perform, and verify careful edits in an open DaVinci Resolve project through Resolve AI Bridge MCP tools.

flamexnreal/davinci-resolve-ai-bridge-mcp · 28 tokens

gemini-omni-flash-api

Use this skill for generative video editing, text-to-video, image-referenced video generation, and first-frame-to-video transition animations using the official google-genai SDK. Includes workflows for pre-processing/optimizing high-resolution or long source videos with ffmpeg, stripping audio for full sound…

hamzabellouch/agent-skills · 79 tokens

webgl-and-threejs-3d-experiences

Production WebGL & Three.js 3D experience architecture, custom GLSL shaders, memory management & GPU disposal pipelines, instanced rendering, performance optimization, and anti-patterns.

hamzabellouch/agent-skills · 48 tokens