From entity-linker
Standalone text cleaning for entity-linker pipelines. Detects source type and applies the right cleaner (ASR, email, markdown, HTML, plain). TRIGGERS: "clean up transcript", "parse speaker turns", "normalize timestamps", "strip email headers", "flatten markdown", "preprocess this text".
How this skill is triggered — by the user, by Claude, or both
Slash command
/entity-linker:input-preprocessinginheritThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Reusable text preprocessing for any pipeline that ingests text. The entity-linker skill calls this automatically; other pipelines (Echelon, intelligence agent) can also use it standalone.
Reusable text preprocessing for any pipeline that ingests text. The entity-linker skill calls this automatically; other pipelines (Echelon, intelligence agent) can also use it standalone.
from entity_db.preprocess import clean, detect_source_type
source_type = detect_source_type(raw_text) # or pass --type flag
clean_text = clean(raw_text, source_type)
| Type | Detection | Cleaner |
|---|---|---|
email | From: <email> header | Strip headers, signatures, quoted replies |
asr | [HH:MM:SS] timestamps | Strip timestamps, speaker labels, fillers |
markdown | # heading patterns | Strip formatting, preserve text |
html | <html> tag | Extract text, strip tags and entities |
plain | fallback | Pass-through (no-op) |
From:, To:, Cc:, Subject:, Date:, etc. at top.-- followed by name block).> lines, On DATE, wrote: blocks).references/asr.md — ASR-specific noise patternsreferences/email.md — email header list, signature heuristicsreferences/markdown.md — markdown element strippingreferences/html.md — HTML entity handlingreferences/plain.md — plain text conventionsnpx claudepluginhub viktorbezdek/entity-linker --plugin entity-linkerProvides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.