nova-spektr: Skill for Claude Code

.claude/skills/search-patterns/SKILL.md

search-patterns is a skill for Claude Code from novasamatech/nova-spektr. It costs 76 tokens per session (472 once invoked), scanned A, original, Apache-2.0.

Rules for adding or reviewing search and filtering controls over lists such as accounts, contacts, wallets, or assets. They require searches to match the text users actually see.

In plain words
What is it for?
Use them when building search inputs, comboboxes, pickers, or list filters, and when diagnosing searches that fail to find displayed items.
Why use it?
They prevent visible items from being missed because the search checks hidden or differently formatted data.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is novasamatech/nova-spektr's own configuration. It tells Claude Code how to work on nova-spektr itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything nova-spektr configures →

Reuse

Borrowing it

Nothing to install: this file belongs to novasamatech/nova-spektr. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/novasamatech/nova-spektr/dev/.claude/skills/search-patterns/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/novasamatech/nova-spektr

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 search-patterns

README.md
[![agentmods](https://agentmods.dev/badge/skills/novasamatech/nova-spektr/search-patterns/github.svg)](https://agentmods.dev/skills/novasamatech/nova-spektr/search-patterns)
Your own site
<a href="https://agentmods.dev/skills/novasamatech/nova-spektr/search-patterns"><img src="https://agentmods.dev/badge/skills/novasamatech/nova-spektr/search-patterns/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 search-patterns

Your own site · 80×15
<a href="https://agentmods.dev/skills/novasamatech/nova-spektr/search-patterns"><img src="https://agentmods.dev/badge/skills/novasamatech/nova-spektr/search-patterns.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 76 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 472 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.00076 $0.00472
Opus 5 $0.00038 $0.00236
Sonnet 5 $0.00015 $0.00094
Haiku 4.5 $0.00008 $0.00047

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

Security

Grade A, and why

search-patterns 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 8d 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.

.claude/skills/search-patterns/SKILL.md · 36 lines

What it actually says

Search Patterns

The canonical convention is docs/content/docs/code/style/search.md — read it before writing or changing any list search. Core rule: the query matches the strings the user actually sees in the row, never raw stored fields.

Operational rules

  • Engine: performSearch from @/shared/lib/utils (weighted substring match, getMeta for computed display strings). Never hand-roll .toLowerCase().includes() filters for user-facing search.
  • Account lists: use accountService.searchAccounts from @/domains/network. It matches resolved account name (useAccountsNames), resolved wallet name (useWalletsNames) and the displayed SS58 address. Reference usage: src/renderer/features/multisig-wallet-create/*/components/components/Signatory.tsx; tests: src/renderer/domains/network/account/service.test.ts (searchAccounts block).
  • Rows rendered via <NamedAccount> / useAccountName / useWalletName ⇒ the same resolved names must be in the search meta. If the component displays ${walletName} (${accountName}), both parts must be searchable.
  • Do not re-rank lists whose order carries meaning (validators by stake, operations by date) — filter over displayed strings but keep the source order.
  • Effector-model searches (no React hooks available) must still search displayed strings — resolve names via accountService.resolveAccountName / domain caches, not raw wallet.name / account.name.

Review checklist

When reviewing a diff that touches search:

  1. Find what the row renders (which name/address, with what prefix).
  2. Find what the query is matched against.
  3. Any displayed string missing from the match set, or any matched field that is never displayed — flag it.
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. 8d ago First seen · 36 lines · 76 tokens per session scan A e726b5b57ea3

Subscribe to this mod's changes

search-patterns is a skill published in the GitHub repository novasamatech/nova-spektr (56 stars, last pushed 5d ago), licensed Apache-2.0. It adds 76 tokens to every session and 472 once invoked, about $0.0004 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-01.