Company data normalization
Skill spiralcrew-ou/profilespider-agent-skills/company-data-normalization
24 free SKILL.md skills for Claude Code & compatible agents: qualify leads, research companies, clean lists.
npx -y skills add spiralcrew-ou/profilespider-agent-skills --skill company-data-normalizationAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 6 stars6 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Normalizes company names, industries, domains, locations, and descriptions. Use when the user provides company records and wants consistent canonical fields with confidence and unresolved items flagged.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
2.0 KB, as published. Nobody here has run it
Company Data Normalization
Purpose
Normalize company names, domains, industries, and locations into consistent values.
When to use this skill
- Standardizing company fields before a join or merge
- Cleaning a multi-source company list
- Preparing data for segmentation or analysis
- Resolving inconsistent industry labels
When not to use this skill
- You need to detect duplicates (use Duplicate Record Review)
- The records contain no company identifiers
- You need verified, authoritative registry data
Required inputs
- Company records
Optional inputs
- A canonical industry taxonomy
- A location format standard
- Known aliases to map
Rules
- Produce canonical values; do not invent unknown fields.
- Map industries only to the supplied taxonomy when given.
- Report a confidence level per record.
- List unresolved fields explicitly.
- Preserve originals alongside normalized values.
Process
- Parse each company record.
- Normalize name and domain.
- Map industry and standardize location.
- Assign confidence.
- List unresolved fields.
Output format
Return one record per company with the following fields:
- normalized_company_name
- normalized_domain
- standardized_industry
- standardized_location
- normalization_confidence
- unresolved_fields
Validation
- Confirm domains are root domains without protocol.
- Confirm industries match the taxonomy when provided.
- Confirm low-confidence rows are flagged.
Limitations
- Normalization is heuristic without an authoritative registry.
- Ambiguous names may need manual disambiguation.