Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
himself65 avatar

Linkedin Reader

  • 978 installs
  • 3.1k repo stars
  • Updated July 21, 2026
  • himself65/finance-skills

linkedin-reader is a read-only Claude Code finance skill that uses opencli to pull LinkedIn feed posts and finance job listings into terminal agent workflows for market research.

About

linkedin-reader is a finance-skills plugin that connects Claude Code to LinkedIn through the opencli CLI, reusing an existing Chrome login via the Browser Bridge extension instead of API keys. The skill reads home-feed posts (author, headline, text, reactions, comments) and searches finance or trading jobs with filters for location, experience, job type, remote/hybrid, date posted, and company. Developers invoke linkedin-reader when they need professional sentiment on tickers, earnings, or hiring trends during research. The skill is strictly read-only and does not post, like, comment, connect, or message. Setup requires Node.js 21+ and opencli doctor verification before queries run.

  • Reads your personal LinkedIn home feed including author, headline, post text, reactions and comments
  • Performs advanced job searches with filters for location, experience, job type, remote, date posted and company
  • Supports financial research triggers such as market sentiment, analyst commentary and professional network buzz
  • Completely read-only — no posting, liking, commenting or connection requests
  • Reuses your existing Chrome browser session via Browser Bridge — no API keys required

Linkedin Reader by the numbers

  • 978 all-time installs (skills.sh)
  • +30 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #1,124 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/himself65/finance-skills --skill linkedin-reader

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs978
repo stars3.1k
Security audit1 / 3 scanners passed
Last updatedJuly 21, 2026
Repositoryhimself65/finance-skills

How do you read LinkedIn finance posts in terminal?

Pull real-time professional commentary, analyst sentiment, and targeted finance job data directly from LinkedIn into their agent workflows.

Who is it for?

Developers building finance agents who need read-only LinkedIn feed and job-search data via opencli without LinkedIn API credentials.

Skip if: Skip linkedin-reader when you need to post, message, connect, or automate any write action on LinkedIn.

When should I use this skill?

User asks to check LinkedIn feed, search finance jobs on LinkedIn, or gather professional market commentary from LinkedIn.

What you get

Structured LinkedIn feed posts, job listing results with filters applied, and professional sentiment excerpts for agent analysis

  • LinkedIn feed excerpts
  • filtered job listings
  • professional sentiment summary

Files

SKILL.mdMarkdownGitHub ↗

LinkedIn Skill (Read-Only)

Reads LinkedIn for financial research using opencli, a universal CLI tool that bridges web services to the terminal via browser session reuse.

This skill is read-only. It is designed for financial research: reading professional commentary on markets, monitoring analyst posts, searching finance/trading jobs, and tracking professional sentiment. It does NOT support posting, liking, commenting, connecting, messaging, or any write operations.

Important: opencli reuses your existing Chrome login session — no API keys or cookie extraction needed. Just be logged into linkedin.com in Chrome and have the Browser Bridge extension installed.

---

Step 1: Ensure opencli Is Installed and Ready

Current environment status:

!`(command -v opencli && opencli doctor 2>&1 | head -5 && echo "READY" || echo "SETUP_NEEDED") 2>/dev/null || echo "NOT_INSTALLED"`

If the status above shows READY, skip to Step 2. If NOT_INSTALLED, install first:

# Install opencli globally
npm install -g @jackwener/opencli

If SETUP_NEEDED, guide the user through setup:

Setup

opencli requires Node.js >= 21 and a Chrome browser with the Browser Bridge extension:

1. Install the Browser Bridge extension:

  • Download the latest opencli-extension-v{version}.zip from the GitHub Releases page
  • Unzip it, open chrome://extensions in Chrome, and enable Developer mode
  • Click Load unpacked and select the unzipped folder

2. Login to linkedin.com in Chrome — opencli reuses your existing browser session 3. Verify connectivity:

opencli doctor

This auto-starts the daemon, verifies the extension is connected, and checks session health.

Common setup issues

SymptomFix
Extension not connectedInstall Browser Bridge extension in Chrome and ensure it's enabled
Daemon not runningRun opencli doctor — it auto-starts the daemon
No session for linkedin.comLogin to linkedin.com in Chrome, then retry
AuthRequiredErrorLinkedIn session expired — refresh linkedin.com in Chrome and log in again

---

Step 2: Identify What the User Needs

Match the user's request to one of the read commands below, then use the corresponding command from references/commands.md.

User RequestCommandKey Flags
Setup checkopencli doctor
Home feed / postsopencli linkedin timeline--limit N (default 20, max 100)
Search for jobsopencli linkedin search "QUERY"--location, --limit N (default 10, max 100), --details
Finance job searchopencli linkedin search "QUERY"--experience-level, --job-type, --remote, --company, --date-posted, --start

---

Step 3: Execute the Command

General pattern

# Read LinkedIn feed posts
opencli linkedin timeline --limit 20 -f json

# Search for finance/trading jobs
opencli linkedin search "quantitative analyst" --limit 10 -f json
opencli linkedin search "portfolio manager" --location "New York" --limit 15 -f json

# Detailed job listings with descriptions
opencli linkedin search "financial analyst" --details --limit 10 -f json

Key rules

1. Check setup first — run opencli doctor before any other command if unsure about connectivity 2. Use `-f json` or `-f yaml` for structured output when processing data programmatically 3. Use `-f csv` when the user wants spreadsheet-compatible output 4. Use `--limit N` to control result count — start with 10-20 unless the user asks for more 5. For job search, use filters--location, --experience-level, --job-type, --remote, --date-posted to narrow results 6. NEVER execute write operations — this skill is read-only; do not post, like, comment, connect, message, or apply to jobs

Output format flag (-f)

FormatFlagBest for
Table-f table (default)Human-readable terminal output
JSON-f jsonProgrammatic processing, LLM context
YAML-f yamlStructured output, readable
Markdown-f mdDocumentation, reports
CSV-f csvSpreadsheet export

Output columns

Timeline posts include: rank, author, author_url, headline, text, posted_at, reactions, comments, url.

Job search results include: rank, title, company, location, listed, salary, url. With --details: also description, apply_url.

---

Step 4: Present the Results

After fetching data, present it clearly for financial research:

1. Summarize key content — highlight the most relevant posts or jobs for the user's research 2. Include attribution — show author name, headline, post text, and engagement (reactions, comments) 3. Provide URLs when the user might want to read the full post or job listing 4. For feed posts, highlight market commentary, analyst takes, earnings reactions, and professional sentiment 5. For job search results, present title, company, location, salary (when available), and posting date 6. Flag sentiment — note bullish/bearish professional sentiment, consensus vs contrarian views 7. Treat sessions as private — never expose browser session details

---

Step 5: Diagnostics

If something isn't working, run:

opencli doctor

This checks daemon status, extension connectivity, and browser session health.

---

Error Reference

ErrorCauseFix
Extension not connectedBrowser Bridge not installed/enabledInstall extension and enable it in Chrome
No sessionNot logged into linkedin.comLogin to linkedin.com in Chrome
AuthRequiredErrorLinkedIn login wall detectedRefresh linkedin.com and log in again
EmptyResultErrorNo results found for queryBroaden search terms or check feed has content
Rate limitedToo many requestsWait a few minutes, then retry

---

Reference Files

  • references/commands.md — Complete read command reference with all flags, research workflows, and usage examples

Read the reference file when you need exact command syntax, research workflow patterns, or output details.

Related skills

How it compares

Use linkedin-reader for authenticated read-only LinkedIn research via browser session; use RSS or news APIs when you only need public headlines without login.

FAQ

Does linkedin-reader need LinkedIn API credentials?

linkedin-reader does not use LinkedIn API keys. The skill runs opencli, which reuses your existing Chrome login through the Browser Bridge extension after you run opencli doctor to verify the session.

Can linkedin-reader post or message on LinkedIn?

linkedin-reader is read-only by design. The skill supports reading feed posts and searching jobs but explicitly does not post, like, comment, connect, message, or perform any write operation on LinkedIn.

Is Linkedin Reader safe to install?

skills.sh reports 1 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

AI & Agent Buildingresearchautomation

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.