AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Linkedin Automation

skill-sloemo01-hermes-skills-bundle-linkedin-automation · by sloemo01

LinkedIn people search via Kimi WebBridge — URLs, filters.

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-sloemo01-hermes-skills-bundle-linkedin-automation

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-sloemo01-hermes-skills-bundle-linkedin-automation)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
15d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Linkedin Automation? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

LinkedIn Automation with Kimi WebBridge

Patterns for finding people on LinkedIn via browser automation. Use when you need to search for profiles, filter by connection degree, paginate results, or search by education/employment.

Quick Reference: Search URL Patterns

| Goal | URL Pattern | |------|-------------| | Basic name search | https://www.linkedin.com/search/results/people/?keywords=NAME | | 1st-degree connections only | ...&origin=FACETED_SEARCH&network=%5B%22F%22%5D | | 2nd-degree connections only | ...&origin=FACETED_SEARCH&network=%5B%22S%22%5D | | 3rd+ connections only | ...&origin=FACETED_SEARCH&network=%5B%22O%22%5D | | Specific person's connections | https://www.linkedin.com/in/USERNAME/connections/ | | Search within connections | https://www.linkedin.com/search/results/people/?keywords=TERM&origin=MEMBER_PROFILE_CANNED_SEARCH | | Education/school search | https://www.linkedin.com/search/results/people/?keywords=SCHOOL_NAME | | Name + school combo | https://www.linkedin.com/search/results/people/?keywords=NAME+SCHOOL | | Pagination | Add &page=N to any search URL |

Workflow

  1. Navigate to search URL with newTab:true and a descriptive group_title
  2. Snapshot the page (full:true for complete tree, full:false for interactive elements)
  3. Extract profile links from @e refs in the snapshot (look for role: "link" with profile names)
  4. Click a profile link to open it, then snapshot for details
  5. Paginate by clicking page number buttons (@e refs for "Page 1", "Page 2", etc.) or navigating to &page=N

Connection Degree Filters

| Network Value | Meaning | |---------------|---------| | %5B%22F%22%5D | 1st connections (encoded ["F"]) | | %5B%22S%22%5D | 2nd connections (encoded ["S"]) | | %5B%22O%22%5D | 3rd+ connections (encoded ["O"]) |

Use with origin=FACETED_SEARCH parameter.

Profile URL Pattern

Individual profiles follow: https://www.linkedin.com/in/USERNAME/

From search results, click the profile name link (@e ref) to navigate, then read the URL from the snapshot's url field.

Education Search Tips

  • Search school name alone: keywords=Amrita%20Vidyalayam
  • Combine with name: keywords=Arjun%20Kannan%20Amrita%20Vidyalayam
  • Filter by 1st/2nd connections to find alumni in your network
  • If no results, try variations: "Amritha Vidyalayam", "Amrita Vidyalaya", "Amrita Vidhyalayam"

Pitfalls

  • LinkedIn blocks automation — some actions may fail with "event.isTrusted" errors. Manual interaction needed for captchas, login walls.
  • Search results are truncated in snapshots — use full:true and parse the tree, or click through pages.
  • Profile URLs change — usernames may differ from display names. Always capture the actual URL after clicking.
  • Rate limiting — LinkedIn may throttle rapid requests. Add delays between actions.
  • Dynamic content@e refs change on each snapshot. Re-snapshot after navigation before clicking.

Example Session Flow

# 1. Open search tab
curl -X POST http://127.0.0.1:10086/command \
  -d '{"action":"navigate","args":{"url":"https://www.linkedin.com/search/results/people/?keywords=Arjun%20Kannan","newTab":true,"group_title":"Arjun Kannan search"},"session":"linkedin"}'

# 2. Get full page tree
curl -X POST http://127.0.0.1:10086/command \
  -d '{"action":"snapshot","args":{"full":true},"session":"linkedin"}'

# 3. Click a profile (use @e ref from snapshot)
curl -X POST http://127.0.0.1:10086/command \
  -d '{"action":"click","args":{"selector":"@e33"},"session":"linkedin"}'

# 4. Get profile details
curl -X POST http://127.0.0.1:10086/command \
  -d '{"action":"snapshot","args":{"full":true},"session":"linkedin"}'

# 5. Filter to 1st connections only
curl -X POST http://127.0.0.1:10086/command \
  -d '{"action":"navigate","args":{"url":"https://www.linkedin.com/search/results/people/?keywords=Arjun%20Kannan&origin=FACETED_SEARCH&network=%5B%22F%22%5D","newTab":true},"session":"linkedin"}'

Related Skills

  • kimi-webbridge — underlying browser automation tool
  • computer-use — alternative desktop automation approach

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.