Given a domain (e.g. acme.com), infer the most likely email pattern by probing 6-8 known seed names — john.smith@, jsmith@, john@, smith.j@, etc. — and returning the pattern with a confidence score.
Why: today the user has to call deliveriq_find_email once per known person and have the model pattern-match manually. A dedicated tool is ~5× faster and more reliable.
Inputs: domain, optional list of known sample names.
Outputs: pattern string ({first}.{last}@{domain}), confidence (0-1), evidence (which seeds matched).
Credits: 6 (one verify call per seed).
Happy to take a PR.
Given a domain (e.g.
acme.com), infer the most likely email pattern by probing 6-8 known seed names —john.smith@,jsmith@,john@,smith.j@, etc. — and returning the pattern with a confidence score.Why: today the user has to call
deliveriq_find_emailonce per known person and have the model pattern-match manually. A dedicated tool is ~5× faster and more reliable.Inputs: domain, optional list of known sample names.
Outputs: pattern string (
{first}.{last}@{domain}), confidence (0-1), evidence (which seeds matched).Credits: 6 (one verify call per seed).
Happy to take a PR.