vrchat-force-purge-all-favorite-worlds

vrchat-force-purge-all-favorite-worlds is a skill for Claude Code from aiya000/dotfiles. It costs 51 tokens per session (2,683 once invoked), scanned A, original, MIT.

An automated tool that deletes every saved world from a logged-in VRChat account through VRChat’s web API. The deletion cannot be undone through that API.

In plain words
What is it for?
Use it to purge, clear, wipe, or delete all favorited VRChat worlds after providing the account credentials it requires.
Why use it?
It removes the need to delete favorited worlds one by one. It is meant for completely clearing all world favorites, but it can permanently erase them.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool; mentions Claude Code.

Good fit Use it to purge, clear, wipe, or delete all favorited VRChat worlds after providing the account credentials it requires.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aiya000/dotfiles/vrchat-force-purge-all-favorite-worlds
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 aiya000/dotfiles --skill vrchat-force-purge-all-favorite-worlds
Clone the repo
git clone --depth 1 https://github.com/aiya000/dotfiles

Made for: Claude Code.

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 vrchat-force-purge-all-favorite-worlds

README.md
[![agentmods](https://agentmods.dev/badge/skills/aiya000/dotfiles/vrchat-force-purge-all-favorite-worlds/github.svg)](https://agentmods.dev/skills/aiya000/dotfiles/vrchat-force-purge-all-favorite-worlds)
Your own site
<a href="https://agentmods.dev/skills/aiya000/dotfiles/vrchat-force-purge-all-favorite-worlds"><img src="https://agentmods.dev/badge/skills/aiya000/dotfiles/vrchat-force-purge-all-favorite-worlds/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 vrchat-force-purge-all-favorite-worlds

Your own site · 80×15
<a href="https://agentmods.dev/skills/aiya000/dotfiles/vrchat-force-purge-all-favorite-worlds"><img src="https://agentmods.dev/badge/skills/aiya000/dotfiles/vrchat-force-purge-all-favorite-worlds.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,683 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 warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 41
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
  • medium Data Exfiltration · line 90
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
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.00051 $0.02683
Opus 5 $0.00026 $0.01341
Sonnet 5 $0.00010 $0.00537
Haiku 4.5 $0.00005 $0.00268

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

Security

Grade A, and why

vrchat-force-purge-all-favorite-worlds 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 12d 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.

allowed-tools: Bash(curl:*), Bash(jq:*), Bash(mkdir:*), Bash(kill:*), Bash(ps:*), Bash(touch:*), Bash(rm-dust:*), Bash(sleep:*)
.claude_global/skills/vrchat-force-purge-all-favorite-worlds/SKILL.md · 164 lines

How it starts

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

vrchat-force-purge-all-favorite-worlds

Deletes ALL favorited worlds (all groups: worlds1..worldsN) from the authenticated VRChat account. This is destructive and irreversible via the API — favorites are not recoverable after deletion.

Fixed paths used by this skill (intentionally NOT the per-session scratchpad — see Notes):

  • WORKDIR=/tmp/vrchat-force-purge-all-favorite-worlds
  • COOKIE_JAR=$WORKDIR/cookies.jar
  • FAVORITES_JSON=$WORKDIR/favorites.json
  • LOG=$WORKDIR/delete.log
  • LOCKFILE=/tmp/vrchat-force-purge-all-favorite-worlds.lock (sibling of WORKDIR, not inside it)

Behavior

  1. Credential precondition check — before anything else:

    • Verify both $VRC_USER and $VRC_PASS are set and non-empty
    • If either is missing: stop immediately. Tell the user to run export VRC_USER=... VRC_PASS=... (optionally VRC_CONTACT=..., see Notes) in their shell, then re-invoke this skill. Do not attempt login with a partial/empty credential
  2. Concurrency guard (lock):

    • mkdir -p "$WORKDIR"
    • If $LOCKFILE exists: read the PID from it, check liveness with kill -0 <PID>
      • Alive → stop, report another purge is already running (show PID + lock timestamp), refuse
      • Dead (stale) → note it, rm-dust -f "$LOCKFILE", continue
    • Do not write the lock yet — it's written atomically with the delete loop in step 8
  3. Authenticate:

    • rm-dust -f "$COOKIE_JAR" first (no stale cookies)
    • UA="vrchat-force-purge-all-favorite-worlds/1.0 (${VRC_CONTACT:-contact-not-provided})"
    • Call api.vrchat.cloud directly (never api.vrchat.com — it 307-redirects cross-host and curl drops the Authorization header on that redirect): curl -sS -u "$VRC_USER:$VRC_PASS" -A "$UA" -c "$COOKIE_JAR" -b "$COOKIE_JAR" -o "$WORKDIR/auth.json" -w '%{http_code}' https://api.vrchat.cloud/api/1/auth/user
    • Non-2xx → stop, report likely-bad credentials, no blind retry
    • If auth.json contains requiresTwoFactorAuth → step 3, else → step 4

Read the full file on GitHub · 164 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. 12d ago First seen · 164 lines · 51 tokens per session scan A 3d4c89c06402

Subscribe to this mod's changes

vrchat-force-purge-all-favorite-worlds is a skill published in the GitHub repository aiya000/dotfiles (19 stars, last pushed today), licensed MIT. It adds 51 tokens to every session and 2,683 once invoked, about $0.0003 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-08-30.