fuzzy-name-search

fuzzy-name-search is a skill for Claude Code, Codex from benchflow-ai/skillsbench. It costs 39 tokens per session (709 once invoked), scanned A, original, Apache-2.0.

A fuzzy search tool for finding funds or stocks in SEC 13F information when the supplied name may be incomplete or slightly wrong. SEC 13F filings are reports in which large investment managers disclose many of their U.S. stock holdings.

In plain words
What is it for?
Use it to search fund names or stock identifiers such as CUSIPs, inspect matching filing records, and find information for a selected reporting quarter.
Why use it?
Exact name searches can miss a fund or security because of spelling differences, abbreviations, or legal name variations. The tool returns likely matches ranked by name similarity.

Skill for Claude CodeCodex

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

Good fit Use it to search fund names or stock identifiers such as CUSIPs, inspect matching filing records, and find information for a selected reporting quarter.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/benchflow-ai/skillsbench/fuzzy-name-search
About the project

SkillsBench is a benchmark for measuring how effectively AI agents use modular skills—folders containing instructions, scripts, and resources—to complete specialized tasks. It helps researchers and developers evaluate both skill quality and agent behavior, including tasks that require combining multiple skills. The catalogue’s skills and instructions are evaluated as part of this workflow.

benchflow-ai/skillsbench · 1,757 stars · on GitHub · skillsbench.ai

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 benchflow-ai/skillsbench --skill fuzzy-name-search
Clone the repo
git clone --depth 1 https://github.com/benchflow-ai/skillsbench

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 fuzzy-name-search

README.md
[![agentmods](https://agentmods.dev/badge/skills/benchflow-ai/skillsbench/fuzzy-name-search/github.svg)](https://agentmods.dev/skills/benchflow-ai/skillsbench/fuzzy-name-search)
Your own site
<a href="https://agentmods.dev/skills/benchflow-ai/skillsbench/fuzzy-name-search"><img src="https://agentmods.dev/badge/skills/benchflow-ai/skillsbench/fuzzy-name-search/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 fuzzy-name-search

Your own site · 80×15
<a href="https://agentmods.dev/skills/benchflow-ai/skillsbench/fuzzy-name-search"><img src="https://agentmods.dev/badge/skills/benchflow-ai/skillsbench/fuzzy-name-search.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 709 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.00039 $0.00709
Opus 5 $0.00019 $0.00354
Sonnet 5 $0.00008 $0.00142
Haiku 4.5 $0.00004 $0.00071

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

Security

Grade A, and why

fuzzy-name-search 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 6d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/search_fund.py, scripts/search_stock_cusip.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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

tasks/sec-financial-report/environment/skills/fuzzy-name-search/SKILL.md · 83 lines

How it starts

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

Overview

This tool is essentially a search engine that provides you the ability to search a fund or stock meta information with a name. Note that you don't have to provide the accurate name since this tool has built-in fuzzy string search algorithms based on Levinsteins.

Usage

Fuzzy search a fund using its name

python3 scripts/search_fund.py --keywords "bridgewater" --quarter 2025-q2 --topk 10

And the results will include top-10 funds with name most similar to "bridgewater" search term:

** Rank 1 (score = 81.818) **
  ACCESSION_NUMBER: 0001172661-25-003151
  REPORTCALENDARORQUARTER: 30-JUN-2025
  FILINGMANAGER_NAME: Bridgewater Associates, LP
  FILINGMANAGER_STREET: One Nyala Farms Road
  FILINGMANAGER_CITY: Westport
  FILINGMANAGER_STATEORCOUNTRY: CT
  FORM13FFILENUMBER: 028-11794

** Rank 2 (score = 81.818) **
  ACCESSION_NUMBER: 0001085146-25-004534
  REPORTCALENDARORQUARTER: 30-JUN-2025
  FILINGMANAGER_NAME: Bridgewater Advisors Inc.
  FILINGMANAGER_STREET: 600 FIFTH AVENUE
  FILINGMANAGER_CITY: NEW YORK
  FILINGMANAGER_STATEORCOUNTRY: NY
  FORM13FFILENUMBER: 028-16088
...

Exact search a fund using accession number

If you know the accession number of the fund, you could precisely identify the fund using:

python3 scripts/search_fund.py \
    --accession_number 0001172661-25-003151 \
    --quarter 2025-q2

It will result to exactly one match if found:

** Rank 1 (score = 100.000) **
  ACCESSION_NUMBER: 0001172661-25-003151
  REPORTCALENDARORQUARTER: 30-JUN-2025
  FILINGMANAGER_NAME: Bridgewater Associates, LP
  FILINGMANAGER_STREET: One Nyala Farms Road
  FILINGMANAGER_CITY: Westport
  FILINGMANAGER_STATEORCOUNTRY: CT
  FORM13FFILENUMBER: 028-11794

Fuzzy search a stock using its name

Similarly, you can fuzzy search a stock information, such as CUSIP, by its name as keywords:

python3 scripts/search_stock_cusip.py \
    --keywords palantir \
    --topk 10
Search Results:
** Rank 1 (score = 90.000) **
  Name: palantir technologies inc
  CUSIP: 69608A108

** Rank 2 (score = 90.000) **
  Name: palantir technologies inc
  CUSIP: 69608A108
...

Read the full file on GitHub · 83 lines

Files

What ships with it

2 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. 6d ago First seen · 83 lines · 39 tokens per session scan A d3a1180be787

Subscribe to this mod's changes

fuzzy-name-search is a skill published in the GitHub repository benchflow-ai/skillsbench (1,757 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 39 tokens to every session and 709 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-09-03.