Install
$ agentstack add skill-sloemo01-hermes-skills-bundle-linkedin-automation ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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
- Navigate to search URL with
newTab:trueand a descriptivegroup_title - Snapshot the page (
full:truefor complete tree,full:falsefor interactive elements) - Extract profile links from
@erefs in the snapshot (look forrole: "link"with profile names) - Click a profile link to open it, then snapshot for details
- Paginate by clicking page number buttons (
@erefs 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:trueand 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 —
@erefs 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 toolcomputer-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.
- Author: sloemo01
- Source: sloemo01/hermes-skills-bundle
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.