linkedin-search

linkedin-search is a skill for Claude Code from ishandutta2007/Awesome-AI-Job-Hunting. It costs 125 tokens per session (1,243 once invoked), scanned A, a copy of linkedin-search, MIT.

A skill for finding live LinkedIn job listings worldwide, including remote work, through LinkedIn’s public job pages. It does not require an account, API key, or extra runtime packages.

In plain words
What is it for?
Use it to search by location, recency, and workplace type, or to retrieve the full description of a specific LinkedIn job listing.
Why use it?
It provides one job-search workflow that works across countries and locations. It can reduce manual searching, while its personal-use warning highlights that automated access may conflict with LinkedIn’s terms.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: installed under .agents/ (shared by several agents).

Good fit Use it to search by location, recency, and workplace type, or to retrieve the full description of a specific LinkedIn job listing.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ishandutta2007/awesome-ai-job-hunting/linkedin-search
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ishandutta2007/Awesome-AI-Job-Hunting --skill linkedin-search
Clone the repo
git clone --depth 1 https://github.com/ishandutta2007/Awesome-AI-Job-Hunting

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for linkedin-search

README.md
[![agentmods](https://agentmods.dev/badge/skills/ishandutta2007/awesome-ai-job-hunting/linkedin-search/github.svg)](https://agentmods.dev/skills/ishandutta2007/awesome-ai-job-hunting/linkedin-search)
Your own site
<a href="https://agentmods.dev/skills/ishandutta2007/awesome-ai-job-hunting/linkedin-search"><img src="https://agentmods.dev/badge/skills/ishandutta2007/awesome-ai-job-hunting/linkedin-search/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for linkedin-search

Your own site · 80×15
<a href="https://agentmods.dev/skills/ishandutta2007/awesome-ai-job-hunting/linkedin-search"><img src="https://agentmods.dev/badge/skills/ishandutta2007/awesome-ai-job-hunting/linkedin-search.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 125 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,243 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00125 $0.01243
Opus 5 $0.00063 $0.00622
Sonnet 5 $0.00025 $0.00249
Haiku 4.5 $0.00013 $0.00124

Measured 12d ago against content hash f7d0a742b12c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

linkedin-search scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

The scan reads SKILL.md. This mod also ships 10 executable files (cli/src/cli.ts, cli/src/commands/detail.ts, cli/src/commands/search.ts, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to linkedin-search — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.agents/skills/linkedin-search/SKILL.md · 104 lines

How it starts

The opening of the file, as written. The whole thing — 104 lines — stays where its author put it; the contents beside it link to each section on GitHub.

LinkedIn Search Skill

Search live job listings from LinkedIn's public job board for any country/region (and remote). No authentication, no API key, and zero runtime dependencies — it runs with just bun. The location is always passed explicitly, so the same skill works for a forker in any market out of the box.

This is a country-agnostic worked example of the repo's job-portal-skill pattern. LinkedIn's jobs-guest endpoints are global and the HTML parsing is country-independent; only the --location you pass changes per market.

⚠️ Personal use only

This uses LinkedIn's public job pages; automated access is against LinkedIn's Terms of Service, so keep volume low and don't use it commercially or for bulk data collection. Run it on your own responsibility.

When to use this skill

  • Search for job openings in a given location (any country/city) or remotely
  • Filter by recency (posted today / last 7 / 14 / 30 days) or workplace type (remote/hybrid/onsite)
  • Get the full description of a specific job listing

Commands

Search job listings

bun run .agents/skills/linkedin-search/cli/src/cli.ts search --location "<place>" [flags]

Key flags:

  • --location <text> / -l <text>required. A LinkedIn place string, e.g. "Mumbai, Maharashtra, India", "Berlin, Germany", "London, United Kingdom", or "Remote".
  • --query <text> / -q <text> — keyword search (title, skill, role). Recommended.
  • --jobage <days> — posted within N days: 1, 7, 14, 30. Omit for all postings.
  • --jobage-minutes <n> — posted within N minutes (sub-day precision, e.g. 30). Conflicts with --jobage — pass only one.
  • --remote <mode>remote, hybrid, or onsite (workplace-type filter).
  • --page <n> — page number (1-indexed, 10 results per page).
  • --limit <n> / -n <n> — cap total results emitted (client-side).
  • --format json|table|plain — default json.

Fetch full job detail

bun run .agents/skills/linkedin-search/cli/src/cli.ts detail <id|url> [--format json|plain]

Read the full file on GitHub · 104 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 104 lines · 125 tokens per session scan A f7d0a742b12c

Subscribe to this mod's changes

linkedin-search is a skill published in the GitHub repository ishandutta2007/Awesome-AI-Job-Hunting (3 stars, last pushed 17d ago), licensed MIT. It adds 125 tokens to every session and 1,243 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to linkedin-search, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

thetoolforthat

Guide for discovering 540+ developer tools, design resources, AI platforms, and agencies using the thetoolforthat MCP server. Use when asked to find tools for a project, recommend tech stack components, discover design agencies, or search for specific tool categories.

pipeabellos/thetoolforthat · 59 tokens

ax-extract-workflow

Reconstructs the workflow behind a shipped artifact from ax session evidence, commits, and PR context. Use when asking what made a feature, fix, demo, or PR work, or when turning a past success into a repeatable recipe.

ishandutta2007/Awesome-Agent-Skills · 54 tokens

video-router

Guides agents to select and lock a video-production route. Use when a brief must be classified as generation, deterministic composition, footage editing, or an end-to-end combination before production, asset creation, editing, or rendering begins.

ishandutta2007/Awesome-Agent-Skills · 49 tokens

xquik-public-data

Guides agents through safe Xquik public X data workflows using documented API, MCP, monitor, and webhook surfaces. Use when a task needs X/Twitter tweet, user, trend, list, community, article, monitor, or webhook data through Xquik.

ishandutta2007/Awesome-Agent-Skills · 60 tokens

hermes-tweet

Guides agents through safe Hermes Tweet X/Twitter plugin setup, read workflows, and explicit action gating. Use when installing Hermes Tweet, checking its Hermes Agent integration, or choosing read versus action tools.

ishandutta2007/Awesome-Agent-Skills · 45 tokens

eval-driven-development

Building rigorous LLM evaluation pipelines. Use when developing AI features to ensure quality and prevent regressions across different model versions.

ishandutta2007/Awesome-Agent-Skills · 28 tokens