regenerator2000: Skill for Claude Code

.agent/skills/r2000-analyze-symbol/SKILL.md

r2000-analyze-symbol is a skill for Claude Code, Codex from ricardoquesada/regenerator2000. It costs 39 tokens per session (2,539 once invoked), scanned A, original, Apache-2.0.

A reverse-engineering helper that examines a memory address or label in a compiled program to work out what it represents, such as a variable, flag, pointer, or hardware register.

In plain words
What is it for?
Use it to trace where a memory location is read or changed and identify the computer system and program context needed to interpret it.
Why use it?
It helps explain the purpose of a memory location when the original source code or documentation is unavailable.

Skill for Claude CodeCodex

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

This is ricardoquesada/regenerator2000's own configuration. It tells Claude Code and Codex how to work on regenerator2000 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 regenerator2000 configures →

Reuse

Borrowing it

Nothing to install: this file belongs to ricardoquesada/regenerator2000. 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/ricardoquesada/regenerator2000/main/.agent/skills/r2000-analyze-symbol/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/ricardoquesada/regenerator2000

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 r2000-analyze-symbol

README.md
[![agentmods](https://agentmods.dev/badge/skills/ricardoquesada/regenerator2000/r2000-analyze-symbol/github.svg)](https://agentmods.dev/skills/ricardoquesada/regenerator2000/r2000-analyze-symbol)
Your own site
<a href="https://agentmods.dev/skills/ricardoquesada/regenerator2000/r2000-analyze-symbol"><img src="https://agentmods.dev/badge/skills/ricardoquesada/regenerator2000/r2000-analyze-symbol/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 r2000-analyze-symbol

Your own site · 80×15
<a href="https://agentmods.dev/skills/ricardoquesada/regenerator2000/r2000-analyze-symbol"><img src="https://agentmods.dev/badge/skills/ricardoquesada/regenerator2000/r2000-analyze-symbol.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,539 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.00039 $0.02539
Opus 5 $0.00019 $0.01269
Sonnet 5 $0.00008 $0.00508
Haiku 4.5 $0.00004 $0.00254

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

Security

Grade A, and why

r2000-analyze-symbol 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 11d 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.

.agent/skills/r2000-analyze-symbol/SKILL.md · 140 lines

How it starts

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

Analyze Symbol Workflow

Use this skill when the user asks to "analyze this label", "what is this variable?", or "trace this address". This skill focuses on data flow—understanding what a memory location represents rather than just what code executes.

1. Determine Context & System

  • Get the Target: If the user provides a label or address, use that. If not, use r2000_get_disassembly_cursor or r2000_get_address_details to identify the address under the cursor.
  • Get the System: Use r2000_get_binary_info.
    • CRITICAL: Knowing the system is essential for identifying hardware registers and OS/KERNAL addresses. You MUST use your knowledge of the specific target computer's memory map, hardware registers, and OS entry points.
    • CONTEXT: Use the filename response and description (if provided) to identify the specific game or program. This allows you to infer domain-specific labels (e.g., "lap_counter" for a racing game, "lives" for a platformer) and look up known memory maps for popular titles.
    • UNDOCUMENTED OPCODES: If may_contain_undocumented_opcodes is true, the binary may use illegal/undocumented MOS 6502 opcodes. When tracing cross-references, be aware that instructions like LAX, SAX, DCP, etc. are valid and their read/write side effects must be considered in the data flow analysis.

2. Gather Usage Data

  • Use r2000_get_cross_references on the target address.
    • This returns a list of everywhere the address is used (read, write, or modify).
    • Note: Pay attention to the instruction type at each reference.
      • Writes: STA, STX, STY, INC, DEC, ASL, LSR, ROR, ROL.
      • Reads: LDA, LDX, LDY, BIT, CMP, CPX, CPY, ADC, SBC.
      • Modify: INC, DEC, ASL, LSR, ROR, ROL (read-modify-write).
  • If r2000_get_cross_references returns zero results:
    • The symbol may be referenced indirectly via a pointer — check if the address is in Zero Page ($00–$FF) and whether nearby code uses ($addr),Y or ($addr,X) patterns.
    • The symbol may be a well-known OS/KERNAL address that the disassembler doesn't generate an explicit cross-reference for — use your knowledge of the target system's memory map based on the system value from r2000_get_binary_info.
    • It may be dead code / an unused variable. Note this in the report.

Read the full file on GitHub · 140 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. 11d ago First seen · 140 lines · 39 tokens per session scan A d57d9c2fdfa1

Subscribe to this mod's changes

r2000-analyze-symbol is a skill published in the GitHub repository ricardoquesada/regenerator2000 (164 stars, last pushed 16d ago), licensed Apache-2.0. It adds 39 tokens to every session and 2,539 once invoked, about $0.0002 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

cartridge-programming

Use when writing, building, or debugging a Commodore 64 cartridge — plain 8K/16K/Ultimax or bank-switched EasyFlash — with the c64 CLI or the c64-tools MCP server. Covers the two boot mechanisms (CBM80 vs the $FFFC reset vector), the memory modes, cart-native code in ROM, the EasyFlash banking discipline from…

nschneir/Project64 · 96 tokens

6502-debugging

Use when a C64 program misbehaves at runtime — crashes, corruption, wrong values, dead input, visual glitches — and you need a procedure, not a guess. Symptom-indexed playbook of runtime debugging procedures using c64-tools.

nschneir/Project64 · 55 tokens

chrome-devtools-cli

Use this skill to write shell scripts or run shell commands to automate tasks in the browser or otherwise use Chrome DevTools via CLI.

ChromeDevTools/chrome-devtools-mcp · 31 tokens

a11y-debugging

Uses Chrome DevTools MCP for accessibility (a11y) debugging and auditing based on web.dev guidelines. Use when testing semantic HTML, ARIA labels, focus states, keyboard navigation, tap targets, and color contrast.

ChromeDevTools/chrome-devtools-mcp · 50 tokens

chrome-devtools

Uses Chrome DevTools via MCP for efficient debugging, troubleshooting and browser automation. Use when debugging web pages, automating browser interactions, analyzing performance, or inspecting network requests. This skill does not apply to --slim mode (MCP configuration).

ChromeDevTools/chrome-devtools-mcp · 55 tokens

n8n-error-handling

Wire n8n error handling so failures are loud, structured, and recoverable. Use when building any webhook/API workflow, a scheduled or unattended workflow, or any path where a silent failure would drop user-visible work — and whenever the user mentions error handling, onError, continueErrorOutput, error…

czlonkowski/n8n-mcp · 128 tokens