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.
npx skills add Zhang-Henry/CoEvoSkills --skill evo-taxonomy-mergergit clone --depth 1 https://github.com/Zhang-Henry/CoEvoSkillsWrote 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/zhang-henry/coevoskills/evo-taxonomy-merger)<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.
<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>- 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.00057 | $0.00575 |
| Opus 5 | $0.00028 | $0.00287 |
| Sonnet 5 | $0.00011 | $0.00115 |
| Haiku 4.5 | $0.00006 | $0.00057 |
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.
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 — 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
- Preprocess (
preprocess.py): Load CSVs, remove prefix paths, normalize text, lemmatize - Embed (
embed.py): Compute sentence embeddings once using sentence-transformers - Cluster & Name (
pipeline.py): Hierarchical agglomerative clustering at each level with word-frequency naming - 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 CSVsremove_prefix_paths(df)- Remove redundant prefix pathspreprocess_dataframe(df)- Add normalized columnsnormalize_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 pointhierarchical_cluster_and_name(df, embeddings, ...)- Build hierarchy
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.
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.
- 9d ago First seen · 72 lines · 57 tokens per session scan A 9870e7e8ef4b
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.
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…
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.
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.
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.
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.
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.