legacy-archaeologist

legacy-archaeologist is a skill for Claude Code from k1lgor/virtual-company. It costs 34 tokens per session (3,358 once invoked), scanned A, original, MIT.

A guided method for exploring old or unfamiliar software projects before changing them. It maps entry points, follows how data moves, and records hidden business rules and technical debt.

In plain words
What is it for?
Use it to understand monoliths and legacy applications, document undocumented systems, find hidden payment or other business logic, locate dead code, and plan gradual refactoring.
Why use it?
It reduces the risk of breaking behavior that nobody has documented. It helps replace guesswork with a clear picture of how the existing system works.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions CLAUDE.md.

Part of the virtual-company plugin — 27 skills, 1 command, 6 agents, 3 hooks shipped together

Good fit Use it to understand monoliths and legacy applications, document undocumented systems, find hidden payment or other business logic, locate dead code, and plan gradual refactoring.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/k1lgor/virtual-company/25-legacy-archaeologist
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 k1lgor/virtual-company --skill 25-legacy-archaeologist
Clone the repo
git clone --depth 1 https://github.com/k1lgor/virtual-company

Made for: Claude Code.

Or install virtual-company, the plugin that ships this one along with the rest of its 27 skills, 1 command, 6 agents, 3 hooks.

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 legacy-archaeologist

README.md
[![agentmods](https://agentmods.dev/badge/skills/k1lgor/virtual-company/25-legacy-archaeologist/github.svg)](https://agentmods.dev/skills/k1lgor/virtual-company/25-legacy-archaeologist)
Your own site
<a href="https://agentmods.dev/skills/k1lgor/virtual-company/25-legacy-archaeologist"><img src="https://agentmods.dev/badge/skills/k1lgor/virtual-company/25-legacy-archaeologist/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 legacy-archaeologist

Your own site · 80×15
<a href="https://agentmods.dev/skills/k1lgor/virtual-company/25-legacy-archaeologist"><img src="https://agentmods.dev/badge/skills/k1lgor/virtual-company/25-legacy-archaeologist.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,358 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.
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.00034 $0.03358
Opus 5 $0.00017 $0.01679
Sonnet 5 $0.00007 $0.00672
Haiku 4.5 $0.00003 $0.00336

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

Security

Grade A, and why

legacy-archaeologist 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.

skills/25-legacy-archaeologist/SKILL.md · 334 lines

How it starts

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

🏛️ Legacy Archaeologist

You explore the "ruins" of old codebases to recover valuable business logic and identify dangerous technical debt.

🛑 The Iron Law

NO REFACTORING WITHOUT UNDERSTANDING THE EXISTING SYSTEM FIRST

You cannot refactor what you don't understand. Read before you change. Map before you move. Every "cleanup" that breaks production was done without understanding.

🛠️ Tool Guidance

  • Exploration: Use Glob (recursive) to map the entry points of unknown systems.
  • Tracing: Use Grep to find where "magic variables" or deprecated APIs are used.
  • Documentation: Use Read to extract logic for reverse-engineering docs.
  • Verification: Use Bash to run existing tests or scripts.

📍 When to Apply

  • "Figure out how this old monolith works."
  • "Document this legacy project before we migrate it."
  • "Find where the payment logic is hidden in this mess."
  • "Plan an incremental refactor for this Python 2 app."

Decision Tree: Legacy Exploration

graph TD
    A[Legacy Codebase] --> B[Map entry points: main, routes, cron]
    B --> C[Trace data flow: input → processing → output]
    C --> D{Found hot spots?}
    D -->|Yes| E[Document: which modules are depended on most]
    D -->|No| F[Search deeper: grep for function calls, imports]
    F --> D
    E --> G[Catalog dead code: never-imported, never-called]
    G --> H[Identify security holes: SQL injection, hardcoded secrets]
    H --> I{Tests exist?}
    I -->|No| J[Write characterization tests for critical paths FIRST]
    I -->|Yes| K[Verify tests pass (establish baseline)]
    J --> L[Plan Strangler Fig refactoring]
    K --> L
    L --> M[Incremental changes: one module at a time]
    M --> N{Tests still pass?}
    N -->|No| O[Revert change, understand why]
    O --> M
    N -->|Yes| P[✅ Refactoring step complete]

Read the full file on GitHub · 334 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 334 lines · 34 tokens per session scan A 9990e3a08cda

Subscribe to this mod's changes

legacy-archaeologist is a skill published in the GitHub repository k1lgor/virtual-company (4 stars, last pushed 2mo ago), licensed MIT. It adds 34 tokens to every session and 3,358 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-31.

Related

Other skills, from other repositories

health-check

Runs plugin health checks (venv packages, skill registration, and album slug collisions). Use when the user asks to check plugin health, verify setup, or troubleshoot missing skills.

bitwize-music-studio/claude-ai-music-skills · 38 tokens

session-profiler

Profile and debug Hermes sessions from their JSONL transcripts. Find a session and its subagents, build a queryable event table, summarize the work as a hierarchical table of contents, break down wall time, inference, tools, tokens, and estimated cost per agent, identify errors and improvement opportunities, and…

tamdogood/builder-essential-skills · 117 tokens

bug-fix

Investigate, reproduce, and safely fix a bug with regression protection. Composes context, diagnosis, architecture, code quality, and testing guardrails into a reproduce-first repair workflow. Use when the user says 'fix this bug', 'debug this', 'investigate this failure', 'patch this regression', 'repair this issue'…

techygarg/lattice · 77 tokens

refactor-safely

Restructure existing code safely without changing externally observable behavior. Composes context, design, architecture, code quality, and testing guardrails into a characterization-first refactoring workflow. Use when the user says 'refactor this', 'clean this up', 'untangle this module', 'move this to the right…

techygarg/lattice · 82 tokens

playwright-debugging

Use when Playwright scripts fail, tests are flaky, selectors stop working, or timeouts occur - provides systematic debugging approach for browser automation issues.

ed3dai/ed3d-plugins · 33 tokens

perf-code-paths

Use when mapping code paths, entrypoints, and likely hot files before profiling.

composio-community/awesome-claude-plugins · 21 tokens