evo-taxonomy-merger

evo-taxonomy-merger is a skill for Claude Code, Codex from Zhang-Henry/CoEvoSkills. It costs 57 tokens per session (575 once invoked), scanned A, original, Apache-2.0.

A pipeline that combines product-category lists from Amazon, Facebook, and Google Shopping into one validated hierarchy with up to five levels.

In plain words
What is it for?
Use it to clean category paths, group similar categories using text embeddings, create names for the groups, and check the resulting hierarchy against size and overlap rules.
Why use it?
It reduces the manual work of matching differently named and structured category systems across shopping platforms.

Skill for Claude CodeCodex

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

Good fit Use it to clean category paths, group similar categories using text embeddings, create names for the groups, and check the resulting hierarchy against size and overlap rules.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/zhang-henry/coevoskills/evo-taxonomy-merger
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 Zhang-Henry/CoEvoSkills --skill evo-taxonomy-merger
Clone the repo
git clone --depth 1 https://github.com/Zhang-Henry/CoEvoSkills

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 evo-taxonomy-merger

README.md
[![agentmods](https://agentmods.dev/badge/skills/zhang-henry/coevoskills/evo-taxonomy-merger/github.svg)](https://agentmods.dev/skills/zhang-henry/coevoskills/evo-taxonomy-merger)
Your own site
<a href="https://agentmods.dev/skills/zhang-henry/coevoskills/evo-taxonomy-merger"><img src="https://agentmods.dev/badge/skills/zhang-henry/coevoskills/evo-taxonomy-merger/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 evo-taxonomy-merger

Your own site · 80×15
<a href="https://agentmods.dev/skills/zhang-henry/coevoskills/evo-taxonomy-merger"><img src="https://agentmods.dev/badge/skills/zhang-henry/coevoskills/evo-taxonomy-merger.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 575 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.00057 $0.00575
Opus 5 $0.00028 $0.00287
Sonnet 5 $0.00011 $0.00115
Haiku 4.5 $0.00006 $0.00057

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

Security

Grade A, and why

evo-taxonomy-merger 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 9d ago.

The scan reads SKILL.md. This mod also ships 7 executable files (scripts/__init__.py, scripts/cluster.py, scripts/embed.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

artifacts/skills/taxonomy-tree-merge/evo-taxonomy-merger/SKILL.md · 72 lines

How it starts

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

Taxonomy Merger Skill

Merges hierarchical product category taxonomies from multiple e-commerce platforms into a single unified 5-level taxonomy.

Quick Start

import sys
sys.path.insert(0, '/app/environment/skills/evo-taxonomy-merger/scripts')
from pipeline import run_pipeline
from validate import print_validation_report

# Run the full pipeline
full_df, hier_df = run_pipeline(
    data_dir='/root/data',
    output_dir='/root/output',
    max_levels=5,
    top_min=10,
    top_max=20,
    child_min=3,
    child_max=20
)

# Validate output
passed = print_validation_report(
    '/root/output/unified_taxonomy_full.csv',
    '/root/output/unified_taxonomy_hierarchy.csv'
)
print(f"Validation passed: {passed}")

Pipeline Phases

  1. Preprocess (preprocess.py): Load CSVs, remove prefix paths, normalize text, lemmatize
  2. Embed (embed.py): Compute sentence embeddings once using sentence-transformers
  3. Cluster & Name (pipeline.py): Hierarchical agglomerative clustering at each level with word-frequency naming
  4. Validate (validate.py): Check all constraints (category counts, naming rules, overlaps, distribution)

Key Constraints Enforced

  • 10-20 top-level categories
  • 3-20 subcategories per parent at deeper levels
  • Category names use " | " separator, max 5 words
  • 70%+ representativeness coverage
  • No parent-child name overlap
  • <30% word overlap between siblings
  • Balanced cluster sizes and even source distribution

Module Reference

preprocess.py

  • load_sources(data_dir) - Load and tag source CSVs
  • remove_prefix_paths(df) - Remove redundant prefix paths
  • preprocess_dataframe(df) - Add normalized columns
  • normalize_and_lemmatize(text) - Full text normalization

embed.py

  • compute_embeddings(texts, model_name, batch_size) - Compute sentence embeddings

pipeline.py

  • run_pipeline(data_dir, output_dir, ...) - End-to-end entry point
  • hierarchical_cluster_and_name(df, embeddings, ...) - Build hierarchy

Read the full file on GitHub · 72 lines

Files

What ships with it

7 files 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. 9d ago First seen · 72 lines · 57 tokens per session scan A 9870e7e8ef4b

Subscribe to this mod's changes

evo-taxonomy-merger is a skill published in the GitHub repository Zhang-Henry/CoEvoSkills (66 stars, last pushed 23d ago), licensed Apache-2.0. It adds 57 tokens to every session and 575 once invoked, about $0.0003 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-09-03.

Related

Other skills, from other repositories

apify-product-data-setup

Wire an AI agent to live e-commerce product data using Apify's E-commerce Scraping Tool over MCP, either as runtime tool calls or as a scheduled refresh into a vector store. Trigger on "give my agent live product data", "my agent quotes stale prices", "connect Apify MCP to Claude or Cursor or n8n", "add product data…

apify/awesome-skills · 132 tokens

rp-source-csv

CSV file source adapter: parse core, vendor fingerprinting (Shopify, WooCommerce, Magento, BigCommerce), layout inference, file-set handling, and read contract for codegen. Use when the migration starts from one or more CSV/export files instead of a live source URL.

wix/skills · 61 tokens

linkfox-multimodal-extract-attributes

A product-image analysis tool that turns what appears in main listing photos into structured attributes, such as colour, shape, material, or style. It can also produce prompts describing the visual content.

linkfox-ai/linkfox-skills · 162 tokens

ai-api-gateway-migration-guide-ai-hive

A migration guide for teams comparing an AI API gateway, which connects software to multiple AI providers, with AI-HIVE.

wubin1836/ai-hive-agent-skills · 161 tokens

ai-api-task-ledger-ai-hive

An audit ledger for AI generation jobs, recording each input, model setup, price snapshot, task ID, status, result, and failure reason.

wubin1836/ai-hive-agent-skills · 161 tokens

ai-hive-api-token-hub

An enterprise gateway for connecting applications to multiple AI model providers through one interface. It covers tenant separation, API keys, usage limits, routing, task tracking, billing, logs and failover.

wubin1836/ai-hive-agent-skills · 132 tokens