ワンクリックで
salesnav-saved-searches
List, run, and delete Sales Navigator saved searches (both lead and account types).
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
List, run, and delete Sales Navigator saved searches (both lead and account types).
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Terminal automation skills for web platforms. CLI commands — no browser needed after initial auth.
Web market / industry analysis from a SimilarWeb FREE account: list 200+ industry categories and rank the top + rising websites in any industry by traffic share, visits, engagement, and month-over-month change.
Website traffic analytics from a SimilarWeb FREE account: overview, traffic & engagement, weekly visit trend, marketing channels, audience geography, similar sites, referrals, social traffic, and display advertising. Covers a single most-recent month, worldwide.
Backlink analytics from SimilarWeb: backlink summary with TLD/country distribution, top referring domains, and individual backlinks with source URLs, anchors, and domain/page scores.
Side-by-side domain comparison using SimilarWeb Pro: engagement metrics, traffic channels, device split, rankings, and more.
SEO keyword research from SimilarWeb: SEO overview, keyword rank distribution, top organic/paid pages, keyword gap analysis, and SEO trends.
| name | salesnav-saved-searches |
| description | List, run, and delete Sales Navigator saved searches (both lead and account types). |
List, run, and delete Sales Navigator saved searches (both lead and account types).
www.linkedin.com/sales/... tab kept openRequests run inside your Chrome tab (via CDP), not from Node — this is what lets them past LinkedIn's sales-api edge. So a Sales Navigator tab must stay open for every command, not just auth. If no /sales/ tab is open, open one (see chrome-cdp "Agent guidance"): node skills/chrome-cdp/scripts/cdp.mjs open https://www.linkedin.com/sales/home.
One-time authentication (requires Chrome with Sales Navigator open):
node salesnav-saved-searches.mjs auth
# List saved lead searches (default)
node salesnav-saved-searches.mjs list
# List saved account searches
node salesnav-saved-searches.mjs list --type=account
# Run a saved lead search
node salesnav-saved-searches.mjs run 12345
# Run a saved account search
node salesnav-saved-searches.mjs run 12345 --type=account
# Run with pagination
node salesnav-saved-searches.mjs run 12345 --count=50 --start=0
# Run saved lead search + fetch full profiles in one step
node salesnav-saved-searches.mjs run-profiles 12345
# Delete a saved search
node salesnav-saved-searches.mjs delete 12345
li_at + JSESSIONID), and writes a marker session.json. Cookies are never copied out — every later request runs inside your Chrome tab with credentials:'include'.salesApiSavedSearchesV2 with q=savedPeopleSearches or q=savedCompanySearches to retrieve all saved searches with metadata (name, new hits count, filters, keywords).salesApiLeadSearch (leads) or salesApiAccountSearch (accounts) using q=savedSearchId. Supports pagination with --start and --count.salesApiProfiles (max 25 per batch) with the full decoration string (positions, education, skills, contact info, etc.).salesApiSavedSearchesV2/<id>.~/.local/share/showrun/data/salesnav-saved-searches/
session.json Auth marker (no cookies stored)
cache/
saved-searches-lead.json Cached list of saved lead searches
saved-searches-account.json Cached list of saved account searches
run-lead-<id>.json Lead search results
run-account-<id>.json Account search results
run-profiles-<id>.json Lead search results with full profiles
If you get a 401 or 403 error, re-run the auth command:
node salesnav-saved-searches.mjs auth
LinkedIn sessions typically last several hours. A logged-in Sales Navigator tab must stay open in Chrome for all commands (requests run in-page).