LinkedIn

search-people-by-location

linkedin.com · Cowork
Download for Coworkthe skill folder, zipped
How to use it in Coworkonce per skill
Download the skill (.zip)

One .zip per skill. Inside: SKILL.md with the intent and the frontmatter, and the code that runs in the page.

Open Skills in Cowork

Settings → Personalize → Skills. This is Cowork's own skill library, shared across every chat.

Add → pick the .zip

Click Add and choose the file you just downloaded. Cowork installs it once; no CLAUDE.md, no per-project setup.

Ask in plain language

The skill stays available in every session. Cowork runs it in your own Chrome, riding the session you are already signed into.

Side effectread
Authsession
Needsnavigate · evaluate
Summary

Search people on LinkedIn passing the location by NAME (resolves geoUrn via linkedin-geo-typeahead -> linkedin-search-people).

Params
{"page":"string","title":"string","company":"string","network":"string","keywords":"string","lastName":"string","location":"string","firstName":"string"}
SKILL.md13 lines

Intent

Search people on LinkedIn passing the location by NAME (resolves geoUrn via linkedin-geo-typeahead -> linkedin-search-people). Takes the FIRST typeahead match; if ambiguous pass 'city country IN ENGLISH' (e.g. 'Madrid Spain'). If the location doesn't resolve, it searches WITHOUT a filter (by design). The people end up in handles.results[0].results (or handles.people). For fine control, run linkedin-geo-typeahead first and pass the geoUrn to linkedin-search-people directly. PARAMS: location + filters (keywords, title, company, firstName, lastName, network, page); unused ones are passed as ''.

Preconditions

  • Logged-in session in the browser you drive.
  • If not logged in: navigate to https://linkedin.com and let the user log in, then retry.

Execute

This is a composite skill: it chains other skills in order, threading outputs to inputs ({{var}} = a param or a previous step's captured output).

  1. Run skill linkedin.com/geo-typeahead with {"q":"{{location}}"}, capture bestGeoUrn.
  2. Run skill linkedin.com/search-people with {"queries":"[{"keywords":"{{keywords}}","title":"{{title}}","company":"{{company}}","firstName":"{{firstName}}","lastName":"{{lastName}}","geoUrn":"{{bestGeoUrn}}","network":"{{network}}","page":"{{page}}"}]"}, capture people.
search-people-by-location: the LinkedIn skill in Cowork · browser-memory