merge-aliases

merge-aliases is a skill for Claude Code from ayeshakhalid192007-dev/graph-engineering-crash-course. It costs 37 tokens per session (1,135 once invoked), scanned A, original, MIT.

An alias checker that decides whether different names refer to the same backend system and records one canonical name when they do. It keeps each original name, its source, and its retrievability information.

In plain words
What is it for?
Use it to reconcile system names across documents and create a traceable list of aliases and their evidence.
Why use it?
It reduces duplicate system records without losing the original wording or merging names based only on similar spelling.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter; reads .claude/ paths; mentions Claude Code.

Good fit Use it to reconcile system names across documents and create a traceable list of aliases and their evidence.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ayeshakhalid192007-dev/graph-engineering-crash-course/merge-aliases
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 ayeshakhalid192007-dev/graph-engineering-crash-course --skill merge-aliases
Clone the repo
git clone --depth 1 https://github.com/ayeshakhalid192007-dev/graph-engineering-crash-course

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 merge-aliases

README.md
[![agentmods](https://agentmods.dev/badge/skills/ayeshakhalid192007-dev/graph-engineering-crash-course/merge-aliases/github.svg)](https://agentmods.dev/skills/ayeshakhalid192007-dev/graph-engineering-crash-course/merge-aliases)
Your own site
<a href="https://agentmods.dev/skills/ayeshakhalid192007-dev/graph-engineering-crash-course/merge-aliases"><img src="https://agentmods.dev/badge/skills/ayeshakhalid192007-dev/graph-engineering-crash-course/merge-aliases/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 merge-aliases

Your own site · 80×15
<a href="https://agentmods.dev/skills/ayeshakhalid192007-dev/graph-engineering-crash-course/merge-aliases"><img src="https://agentmods.dev/badge/skills/ayeshakhalid192007-dev/graph-engineering-crash-course/merge-aliases.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,135 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.00037 $0.01135
Opus 5 $0.00018 $0.00567
Sonnet 5 $0.00007 $0.00227
Haiku 4.5 $0.00004 $0.00113

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

Security

Grade A, and why

merge-aliases 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 10d 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.

starters/alias-merge-with-trail/.claude/skills/merge-aliases/SKILL.md · 101 lines

How it starts

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

merge-aliases

Takes two or more surface names pulled from different source documents and decides whether they name the same underlying system. When they do, it produces one canonical entity, but every surface string that fed into that decision stays in the output as its own retrievable record — nothing gets overwritten or thrown away to make room for the canonical name.

Instructions

You are a Claude Code skill implementing the alias-merge-with-trail pattern. A merge is a claim, and a claim needs standing evidence — not a resemblance between two strings. Follow these steps in order:

  1. Read the schema first. Open schema.example.json and note the two shapes it defines: a Service entity with a canonical_name and a merge_reason, and an alias record whose mentions array holds one entry per surface string, each carrying its own source and a retrievable flag. Treat this shape as fixed for the run.
  2. Read the source material. Default to sample-input.md in this kit unless the user names a different file or pair of files. Pull out every surface string used for a system, along with which source section it came from and any timestamp or reference number attached to it.
  3. Group candidate surface strings into pairs (or larger clusters) that might name the same system. For each candidate group, look for a concrete, checkable link between the sources involved — a shared timestamp window, an explicit cross-reference from one document to the other, a shared ticket or deployment identifier. A pair that shares nothing but a plausible-sounding name is not a candidate for merging; set it aside.
  4. For a group with real evidence: create one canonical Service entity, write the concrete evidence into merge_reason in plain language (name the shared timestamp or cross-reference, don't just say "these seem related"), and add one mentions entry per original surface string — each with its own source and retrievable: true. Do not delete, rename, or collapse the original surface strings into the canonical one; they stay as separate entries pointing at it.
  5. For a group with no real evidence (including the decoy pair in sample-input.md): do not merge. Report the pair by name and state plainly why it was left alone — e.g., no shared timestamp, no cross-reference between the two mentions.
  6. Write the result to output.json (or the path the user requested) in this kit's root, following schema.example.json's entities and aliases shape. Print the same structure alongside a short list of any groups you considered and chose not to merge, with the reason for each.
  7. Confirm reversibility before finishing: for every canonical entity you produced, check that a lookup keyed on each of its original surface strings independently — not just a lookup on the canonical name — would still return that entity and both of its mentions. State this check explicitly in your output rather than assuming it.

Read the full file on GitHub · 101 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. 10d ago First seen · 101 lines · 37 tokens per session scan A e1e9b068b87e

Subscribe to this mod's changes

merge-aliases is a skill published in the GitHub repository ayeshakhalid192007-dev/graph-engineering-crash-course (5 stars, last pushed 15d ago), licensed MIT. It adds 37 tokens to every session and 1,135 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

author-skill

Use when authoring a NEW rsc skill or editing an existing one — scoping it to one job, writing the description that decides whether it ever loads, splitting the body into references/, writing its evals, auditing it against the rubric. NOT building a product feature (that is specify) and NOT designing an agent loop…

ericrisco/rsc-harness · 79 tokens

building-agents

Use when building or restructuring an LLM agent — provider adapter, tool calling, structured output, RAG, agent loop, eval gate, cost routing, tracing, MCP server — model-agnostic across OpenAI/Anthropic/Gemini/OSS so a model swap is a config change. NOT vector-store SQL alone (that is postgresdb) or service…

ericrisco/rsc-harness · 85 tokens

cpp

Use when writing, reviewing, modernizing, building, or debugging C++ - RAII and resource lifetime, smart-pointer ownership, move semantics and the Rule of Zero/Five, target-based CMake with FetchContent, and killing undefined behavior with ASan/UBSan/TSan plus clang-tidy. NOT borrow-checker / Result-Option / cargo…

ericrisco/rsc-harness · 81 tokens

gamedev-multiplayer

Use when adding multiplayer or netcode to a game — client-server vs P2P, server authority and anti-cheat, state replication vs RPCs, prediction and reconciliation, lag compensation, plus Godot 4 / Unity NGO / Unreal wiring. NOT single-player gameplay (that is godot, unity, unreal), NOT matchmaking or server hosting…

ericrisco/rsc-harness · 86 tokens

open-weights

Use when choosing an open-weight LLM and clearing it for use — which family and size fit the task, the hardware and the budget, and above all whether the license permits shipping. Owns the license-class map (OSI-open versus custom-community versus non-commercial), the always-verify-the-model-card rule, size-to-VRAM…

ericrisco/rsc-harness · 146 tokens

postgresdb

Use when PostgreSQL engine behaviour decides the answer — schema and type design, index choice, reading EXPLAIN on a slow query, zero-downtime DDL and backfills, or ops (roles, RLS, pooling, vacuum, partitioning, PITR). PG16, ORM-agnostic. NOT portable query logic (that is sql), NOT a managed provider's platform…

ericrisco/rsc-harness · 91 tokens