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.
curl -O https://raw.githubusercontent.com/ricardoquesada/regenerator2000/main/.agent/skills/r2000-analyze-symbol/SKILL.mdgit clone --depth 1 https://github.com/ricardoquesada/regenerator2000Wrote 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.
[](https://agentmods.dev/skills/ricardoquesada/regenerator2000/r2000-analyze-symbol)<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.
<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>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once 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 |
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.
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_cursororr2000_get_address_detailsto 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
filenameresponse anddescription(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_opcodesistrue, the binary may use illegal/undocumented MOS 6502 opcodes. When tracing cross-references, be aware that instructions likeLAX,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_referenceson 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).
- Writes:
- If
r2000_get_cross_referencesreturns 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),Yor($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
systemvalue fromr2000_get_binary_info. - It may be dead code / an unused variable. Note this in the report.
- The symbol may be referenced indirectly via a pointer — check if the address is in Zero Page (
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.
- 11d ago First seen · 140 lines · 39 tokens per session scan A d57d9c2fdfa1
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.
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…
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.
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.
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.
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).
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…