manage-apps-and-sounds-headless

manage-apps-and-sounds-headless is a skill for Claude Code from terrylica/cc-skills. It costs 148 tokens per session (1,276 once invoked), scanned A, original, MIT.

A headless browser automation tool for the Pushover website. It can log in to the dashboard, manage applications, and add or remove custom notification sounds; headless means the browser runs without a visible window.

In plain words
What is it for?
Use it to list, create, or delete Pushover applications and to add or remove custom notification sounds through the web dashboard.
Why use it?
It handles dashboard actions that the regular HTTP API does not provide, so those tasks do not need to be performed manually in a browser.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the pushover-commander plugin — 9 skills shipped together , and of cc-skills

Good fit Use it to list, create, or delete Pushover applications and to add or remove custom notification sounds through the web dashboard.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/terrylica/cc-skills/manage-apps-and-sounds-headless
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 terrylica/cc-skills --skill manage-apps-and-sounds-headless
Clone the repo
git clone --depth 1 https://github.com/terrylica/cc-skills

Made for: Claude Code.

Or install pushover-commander, the plugin that ships this one along with the rest of its 9 skills.

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 manage-apps-and-sounds-headless

README.md
[![agentmods](https://agentmods.dev/badge/skills/terrylica/cc-skills/manage-apps-and-sounds-headless/github.svg)](https://agentmods.dev/skills/terrylica/cc-skills/manage-apps-and-sounds-headless)
Your own site
<a href="https://agentmods.dev/skills/terrylica/cc-skills/manage-apps-and-sounds-headless"><img src="https://agentmods.dev/badge/skills/terrylica/cc-skills/manage-apps-and-sounds-headless/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 manage-apps-and-sounds-headless

Your own site · 80×15
<a href="https://agentmods.dev/skills/terrylica/cc-skills/manage-apps-and-sounds-headless"><img src="https://agentmods.dev/badge/skills/terrylica/cc-skills/manage-apps-and-sounds-headless.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 148 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,276 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00148 $0.01276
Opus 5 $0.00074 $0.00638
Sonnet 5 $0.00030 $0.00255
Haiku 4.5 $0.00015 $0.00128

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

Security

Grade A, and why

manage-apps-and-sounds-headless scanned grade A 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 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- Network: prefix `op`/HTTP with `env -u *PROXY*` (and curl `--noproxy '*'`) to bypass the sandbox proxy.
plugins/pushover-commander/skills/manage-apps-and-sounds-headless/SKILL.md · 73 lines

How it starts

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

manage-apps-and-sounds-headless

Self-Evolving Skill: This skill improves through use. If instructions are wrong, parameters drifted, or a workaround was needed — fix this file immediately, don't defer. Only update for real, reproducible issues.

Headless dashboard automation via pushover_headless_web_control.ts (function/enum-driven Bun TypeScript — run directly, no build; needs bun install in skills/_lib/ for playwright-core). pushover.net login is a plain email/password form (no anti-bot / CAPTCHA / 2FA — verified 2026-05-30), so plain Playwright + system Chrome works.

export PO_EMAIL="$(bash "$(cc-plugin-root pushover-commander)/skills/_lib/resolve_pushover_secret.sh" login_email)"
export PO_PW="$(bash "$(cc-plugin-root pushover-commander)/skills/_lib/resolve_pushover_secret.sh" login_password)"
export PO_USER="$(bash "$(cc-plugin-root pushover-commander)/skills/_lib/resolve_pushover_secret.sh" user_key)"   # create-app token disambiguation
WEB() { env -u HTTPS_PROXY -u HTTP_PROXY \
  bun "$(cc-plugin-root pushover-commander)/skills/_lib/pushover_headless_web_control.ts" "$@"; }

WEB apps                                              # list application names
WEB create-app --name "My App" --desc "..." --reveal # create app, print its API token (--reveal = full)
WEB delete-app --name "My App"                        # delete app (by --name or --slug)
WEB list-sounds                                       # list custom sound names
WEB add-sound --name po_fanfare --file x.mp3 --desc "..."   # upload a custom sound
WEB remove-sound --name po_fanfare                   # delete a custom sound

Custom sounds: constraints + sourcing pipeline (verified 2026-05-30)

Pushover custom sounds: MP3 only, < 500 KB, ≤ 30 s (iOS won't play longer). Sweet spot for "loud + as long as possible": ~29 s at 128 kbps ≈ 454 KB. Two helpers automate sourcing/processing:

# 1) discover free MP3 jingles (Mixkit free license, attribution optional)
bash "$(cc-plugin-root pushover-commander)/skills/_lib/find_jingles.sh" win        # or game musical alarm celebration
bash "$(cc-plugin-root pushover-commander)/skills/_lib/find_jingles.sh" tag/happy  # stock-music tags (longer tracks)

# 2) trim + LOUDNESS-NORMALIZE + size-fit to a compliant sound (loudnorm I=-10, peak -1dB, <500KB)
bash "$(cc-plugin-root pushover-commander)/skills/_lib/make_custom_sound.sh" <url|file> out.mp3 [start_s] [dur] [bitrate]
#   -> JSON {kb, dur, max_db, mean_db, under_500kb}; non-zero exit if >=500KB (then lower bitrate)

# 3) upload it
WEB add-sound --name my_jingle --file out.mp3 --desc "loud 29s jingle"

Read the full file on GitHub · 73 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 · 73 lines · 148 tokens per session scan A d17f8ab31db1

Subscribe to this mod's changes

manage-apps-and-sounds-headless is a skill published in the GitHub repository terrylica/cc-skills (73 stars, last pushed today), licensed MIT. It adds 148 tokens to every session and 1,276 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.

Related

Other skills, from other repositories

gs-skillify

Codify a successful gstack scrape/browser flow into a permanent browser-skill on disk (scrape-specific). CARL TRIGGERS: make this a skill, skillify, turn into a skill, save this workflow, capture this pattern. SOURCE: garrytan/gstack/skillify, integrated as gs-skillify on 2026-05-29.

YousefNabil-SOC/claude-apex · 81 tokens

gcp-setup

Automates Google Cloud Console setup via browser. Use when the user wants to set up a GCP project, enable APIs, create service accounts, configure IAM, set up billing, configure OAuth, set up firewall rules, or deploy to Cloud Run/App Engine/GKE. Also use when the user says "set up GCP", "configure Google Cloud"…

N-O-P-E/nope-marketplace · 161 tokens

Instagram Access

Permanent capability skill for authenticated Instagram data extraction using instaloader and a reusable session cookie file.

YousefNabil-SOC/claude-apex · 21 tokens

search-console

Audit Google Search Console via browser. Use when the user says "check Search Console", "what's wrong with my domain", "why aren't my pages indexed", "SEO audit", "sitemap issues", or wants to investigate indexing problems, Core Web Vitals, structured data errors, or merchant listing issues. Opens GSC in Chrome, reads…

N-O-P-E/nope-marketplace · 83 tokens

cloudflare-connect

Adds a subdomain to a Cloudflare-managed zone and wires it to a hosting platform (Railway, Vercel) via browser automation. Use when the user wants to point a subdomain at a Railway service, Vercel project, or other hosting platform. Also use when the user says "add a subdomain", "connect domain to Railway/Vercel"…

N-O-P-E/nope-marketplace · 169 tokens

playwright-visual-testing

Browser automation, visual testing, and screenshot validation using Playwright MCP server for accelerated web development. Master visual regression testing, automated UI testing, and cross-browser validation.

manutej/luxor-claude-marketplace · 39 tokens