一键导入
named-entity-normalization
Normalize named entities and concept variants into canonical forms using controlled vocabularies or standard taxonomies.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Normalize named entities and concept variants into canonical forms using controlled vocabularies or standard taxonomies.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Analyze vocabulary overlap and identify named entities unique to domain/document corpora.
Transform lengthy documents into a semantic tree structure. It extracts sections, summaries, and hierarchies optimized for use with Large Language Models (LLMs).
Design formal ontologies using OWL/RDFS. Defines classes, properties, and relationships for complex semantic modeling.
Systematic cataloging of information assets. Creates comprehensive inventories or card sorting materials from content.
Generate JSON-LD structured data for web content. Maps content to Schema.org types to improve search engine understanding and rich result eligibility.
Analyze multiple documents to extract entities and relationships, generating a knowledge graph structure (RDF/Turtle).
| name | named-entity-normalization |
| description | Normalize named entities and concept variants into canonical forms using controlled vocabularies or standard taxonomies. |
| required_roles | {"scribe":"roles/scribe.viewer"} |
| personas | ["information-architect","content-strategist","taxonomist","knowledge-engineer"] |
Resolve lexical variations, typos, casing differences, and industry aliases of named entities within a document set into single canonical concepts. This skill maps unstructured entity mentions directly to unique database identifiers, standard taxonomies, or a custom controlled vocabulary (thesaurus), resolving vocabulary bloat and embedding fragmentation.
PATH - The document directory or file path containing raw entities to normalize (e.g., "/threat-intel-reports").TAXONOMY_PATH - (Optional) Path to a target taxonomy, glossary, database, or controlled vocabulary (e.g., a MITRE ATT&CK group catalog or medical UMLS schema) to ground entities against. If not provided, the agent will construct a self-consistent canonical thesaurus directly from the document set's unique concepts.CANONICAL_MAPPING - (Optional) Boolean, whether to output a JSON mapping dictionary (thesaurus) alongside the markdown report (default: true).HYBRID_STRATEGY - (Optional) Boolean, whether to apply LLM-driven semantic inference (HNEN) for highly heterogeneous or inconsistent parameter names alongside lexical string matching (default: true).Locate all Named Entity mentions in the document set at PATH.
Apply base linguistic cleaning rules to standardize formatting variants.
Match entity mentions to target canonical entries in TAXONOMY_PATH or general domain baselines.
HYBRID_STRATEGY is true and terms are highly heterogeneous (e.g., parameter naming conventions like V_in, Vin, InputVoltage), use semantic inference to map them to unified concepts based on datasheet conventions and domain schemas.Compile synonym sets and designate Preferred Terms.
A NAMED_ENTITY_NORMALIZATION_REPORT in markdown format containing:
MITRE_G1017 or custom ID) if matched against a taxonomy.If CANONICAL_MAPPING is true:
nen-thesaurus.json: A structured JSON mapping file where keys are raw spelling variants (all lowercased for robust lookup) and values are the corresponding Preferred Terms.