Awesome-omni-skill AI Ark Similarity Search
install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/cli-automation/ai-ark-similarity-search" ~/.claude/skills/diegosouzapw-awesome-omni-skill-ai-ark-similarity-search && rm -rf "$T"
manifest:
skills/cli-automation/ai-ark-similarity-search/SKILL.mdsafety · automated scan (low risk)
This is a pattern-based risk scan, not a security review. Our crawler flagged:
- eval/exec/Function constructor
Always read a skill's source content before installing. Patterns alone don't mean the skill is malicious — but they warrant attention.
source content
Available Context
@_platform-references/org-variables.md
AI Ark Similarity Search
Goal
Find companies similar to a seed company using AI Ark's AI-powered similarity matching engine. This uses the
lookalikeDomains parameter — AI Ark's unique differentiator with no Apollo equivalent.
Credit Cost
Each similarity search costs ~2.5 credits (uses the company search endpoint with
lookalikeDomains).
Use preview_mode: true to fetch 5 results first (same cost) before running a full search.
Always warn the user before executing.
Required Capabilities
- AI Ark API: Similarity search via
edge function (ai-ark-search
withaction: 'company_search'
)lookalike_domains
Inputs
: Domain of the target company (preferred). Up to 5 domains for multi-seed matching. Examples: 'stripe.com', 'notion.so', 'hubspot.com', 'figma.com', 'salesforce.com'seed_company_domain
: Company name fallback if domain unknownseed_company_name
: How many lookalikes to find (default: 25, max: 100)match_count
: Fetch 5 results first for quick validationpreview_mode
Execution
- Identify the seed company domain (ask user if unclear)
- Warn the user: "This search will cost ~2.5 AI Ark credits. Proceed?" (or offer preview first)
- Optionally run with
to show 5 resultspreview_mode: true - On confirmation, call
with seed domain(s)ai-ark-search - Present results as a table for review
Output Contract
Return a table with columns:
- Company Name, Domain, Industry, Employee Count, Employee Range, Location, Description, Technologies, LinkedIn, Website
Show
total_count to indicate how many lookalikes exist in the database.
Key Differentiator
Uses AI Ark's
lookalikeDomains parameter on the company search endpoint.
Accepts up to 5 seed domains or LinkedIn URLs. AI Ark matches by firmographic profile similarity
(industry, size, tech stack, growth signals) — not keyword matching.
Common Patterns
- Seed from best customer -> find 100 lookalikes -> people search for VPs -> outbound
- Seed from closed-won deal -> lookalikes -> pipeline expansion
- Multi-seed: pass 3-5 top accounts as seeds -> find companies matching that ICP profile