
Security News
Frontier AI Is Now Critical Infrastructure
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.
@agent-pattern-labs/iso-canon
Advanced tools
Deterministic canonicalization and entity matching for AI-agent workflows: normalize URLs, companies, roles, and stable dedupe keys without model calls.
Deterministic canonicalization and entity matching for AI-agent workflows.
iso-canon answers: what stable key represents this URL, company, role,
or company-role pair? It normalizes common workflow identifiers and compares
them without model calls, MCP servers, or prompt-token-heavy duplicate rules.
It is:
npm install @agent-pattern-labs/iso-canon
iso-canon normalize url "https://www.example.com/jobs/123?utm_source=x"
iso-canon normalize company "OpenAI, Inc."
iso-canon key company-role --company "Anthropic, PBC" --role "Senior SWE - Remote US"
iso-canon compare company "OpenAI, Inc." "Open AI" --config examples/jobforge-canon.json --profile jobforge
iso-canon explain --config examples/jobforge-canon.json --profile jobforge
compare prints same, possible, or different. It exits 0 for all
valid comparisons so callers can decide how strict to be.
iso-canon key company-role \
--company "Anthropic, PBC" \
--role "Senior SWE, AI Platform - Remote US" \
--config examples/jobforge-canon.json \
--profile jobforge
Output:
company-role:anthropic:senior-software-engineer-ai-platform
{
"version": 1,
"profiles": [
{
"name": "jobforge",
"url": {
"dropHash": true,
"stripQueryParams": ["utm_*", "gh_src", "source"]
},
"company": {
"aliases": {
"open ai": "openai"
},
"suffixes": ["inc", "llc", "pbc"]
},
"role": {
"aliases": {
"swe": "software engineer"
},
"stopWords": ["remote", "us", "united states"]
},
"match": {
"strong": 0.92,
"possible": 0.78
}
}
]
}
Profiles extend built-in defaults, so you only need to declare domain-specific aliases, suffixes, stop words, and thresholds.
import {
canonicalizeCompanyRole,
compareCanon,
loadCanonConfig,
resolveProfile,
} from "@agent-pattern-labs/iso-canon";
const config = loadCanonConfig(JSON.parse(configText));
const profile = resolveProfile(config, "jobforge");
const key = canonicalizeCompanyRole("OpenAI, Inc.", "Senior SWE - Remote US", profile).key;
const duplicate = compareCanon("company", "OpenAI, Inc.", "Open AI", profile);
iso-canon does not decide which source of truth wins and does not mutate
trackers, ledgers, indexes, or caches. Domain packages own source precedence
and decide whether a possible match should block work, warn, or route to a
human review step.
FAQs
Deterministic canonicalization and entity matching for AI-agent workflows: normalize URLs, companies, roles, and stable dedupe keys without model calls.
We found that @agent-pattern-labs/iso-canon demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.

Security News
AI agents are pulling packages into environments no scanner is watching, creating exposure before security teams can see it.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.