
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-readerAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 978 |
|---|---|
| repo stars | ★ 3.1k |
| Security audit | 1 / 3 scanners passed |
| Last updated | July 21, 2026 |
| Repository | himself65/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
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/opencliIf 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}.zipfrom the GitHub Releases page - Unzip it, open
chrome://extensionsin 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 doctorThis auto-starts the daemon, verifies the extension is connected, and checks session health.
Common setup issues
| Symptom | Fix |
|---|---|
Extension not connected | Install Browser Bridge extension in Chrome and ensure it's enabled |
Daemon not running | Run opencli doctor — it auto-starts the daemon |
No session for linkedin.com | Login to linkedin.com in Chrome, then retry |
AuthRequiredError | LinkedIn 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 Request | Command | Key Flags |
|---|---|---|
| Setup check | opencli doctor | — |
| Home feed / posts | opencli linkedin timeline | --limit N (default 20, max 100) |
| Search for jobs | opencli linkedin search "QUERY" | --location, --limit N (default 10, max 100), --details |
| Finance job search | opencli 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 jsonKey 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)
| Format | Flag | Best for |
|---|---|---|
| Table | -f table (default) | Human-readable terminal output |
| JSON | -f json | Programmatic processing, LLM context |
| YAML | -f yaml | Structured output, readable |
| Markdown | -f md | Documentation, reports |
| CSV | -f csv | Spreadsheet 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 doctorThis checks daemon status, extension connectivity, and browser session health.
---
Error Reference
| Error | Cause | Fix |
|---|---|---|
Extension not connected | Browser Bridge not installed/enabled | Install extension and enable it in Chrome |
No session | Not logged into linkedin.com | Login to linkedin.com in Chrome |
AuthRequiredError | LinkedIn login wall detected | Refresh linkedin.com and log in again |
EmptyResultError | No results found for query | Broaden search terms or check feed has content |
| Rate limited | Too many requests | Wait 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.
linkedin-reader
Read-only LinkedIn skill for financial research using opencli.
What it does
Reads LinkedIn for financial research — reading professional market commentary, monitoring analyst posts, searching finance/trading jobs, and tracking professional sentiment. Capabilities include:
- Home feed / timeline — read posts from your LinkedIn feed (author, headline, text, reactions, comments)
- Job search — search LinkedIn job listings with filters for location, experience level, job type, remote/hybrid, date posted, and company
This skill is read-only. It does NOT support posting, liking, commenting, connecting, messaging, or any write operations.
Authentication
No API keys needed — opencli reuses your existing Chrome browser session via the Browser Bridge extension. Just be logged into linkedin.com in Chrome.
Triggers
- "check my LinkedIn feed", "LinkedIn posts about", "what's on LinkedIn"
- "search LinkedIn for jobs", "finance jobs on LinkedIn", "quant jobs"
- "LinkedIn market sentiment", "what are analysts saying on LinkedIn"
- "who's hiring in finance", "professional network buzz"
- Any mention of LinkedIn in context of financial news, market research, or job searches
Platform
Works on Claude Code and other CLI-based agents. Does not work on Claude.ai — the sandbox restricts network access and binaries required by opencli.
Setup
# As a plugin (recommended — installs all skills)
npx plugins add himself65/finance-skills --plugin finance-social-readers
# Or install just this skill
npx skills add himself65/finance-skills --skill linkedin-readerSee the main README for more installation options.
Prerequisites
- Node.js >= 21 (for
npm install -g @jackwener/opencli) - Chrome with the Browser Bridge extension installed (load unpacked from
chrome://extensionsin Developer mode) - Logged into linkedin.com in Chrome
Reference files
references/commands.md— Complete read command reference with all flags, research workflows, and usage examples
opencli LinkedIn Command Reference (Read-Only)
Complete read-only reference for LinkedIn commands in opencli, scoped to financial research use cases.
Install: npm install -g @jackwener/opencli
This skill is read-only. Write operations (posting, liking, commenting, connecting, messaging) are NOT supported in this finance skill.
---
Setup
opencli authenticates via your existing Chrome browser session — no API keys or credentials needed.
Requirements: 1. Node.js >= 21 (or Bun >= 1.0) 2. Chrome with the Browser Bridge extension installed 3. Logged into linkedin.com in Chrome
Install the Browser Bridge extension: 1. Download opencli-extension-v{version}.zip from the GitHub Releases page 2. Unzip it, open chrome://extensions, enable Developer mode 3. Click Load unpacked and select the unzipped folder
Verify setup:
opencli doctorThis auto-starts the daemon, verifies extension connectivity, and checks browser session health.
---
Read Operations
Timeline (Home Feed)
Reads posts from your LinkedIn home feed by scrolling and extracting visible posts.
opencli linkedin timeline # Last 20 posts (default)
opencli linkedin timeline --limit 50 # Up to 50 posts (max 100)
opencli linkedin timeline -f json # JSON output
opencli linkedin timeline -f yaml # YAML output
opencli linkedin timeline -f csv # CSV outputOutput columns: rank, author, author_url, headline, text, posted_at, reactions, comments, url
Job Search
Searches LinkedIn job listings by keyword with optional filters.
opencli linkedin search "keyword" # Basic job search (10 results)
opencli linkedin search "quantitative analyst" --limit 20 # More results
opencli linkedin search "trader" --location "Chicago" -f json # Filter by location
opencli linkedin search "financial analyst" --details -f json # Full descriptions
# Filter by experience level
opencli linkedin search "portfolio manager" --experience-level mid-senior -f json
# Filter by job type
opencli linkedin search "risk analyst" --job-type full-time -f json
# Filter by work mode
opencli linkedin search "data scientist finance" --remote remote -f json
# Filter by date posted
opencli linkedin search "hedge fund" --date-posted week -f json
# Combine filters
opencli linkedin search "investment banking" \
--location "New York" \
--experience-level associate \
--job-type full-time \
--date-posted month \
--details \
--limit 20 \
-f jsonFlags:
| Flag | Type | Default | Description |
|---|---|---|---|
--location | string | — | Location text (e.g., "San Francisco Bay Area") |
--limit | integer | 10 | Number of results (max 100) |
--start | integer | 0 | Pagination offset |
--details | boolean | false | Include full job descriptions and apply URLs (slower — fetches each listing) |
--company | string | — | Comma-separated company names or LinkedIn company IDs |
--experience-level | string | — | Comma-separated: internship, entry, associate, mid-senior, director, executive |
--job-type | string | — | Comma-separated: full-time, part-time, contract, temporary, volunteer, internship, other |
--date-posted | string | — | One of: any, month, week, 24h |
--remote | string | — | Comma-separated: on-site, hybrid, remote |
Output columns: rank, title, company, location, listed, salary, url
With --details: also description, apply_url
---
Output Formats
All commands support the -f / --format flag:
| Format | Flag | Description |
|---|---|---|
| Table | -f table (default) | Rich CLI table with bold headers, word wrapping, footer with count/elapsed time |
| JSON | -f json | Pretty-printed JSON (2-space indent) |
| YAML | -f yaml | Structured YAML |
| Markdown | -f md | Pipe-delimited markdown tables |
| CSV | -f csv | Comma-separated values with proper quoting/escaping |
---
Financial Research Workflows
Read professional market commentary
# Read your LinkedIn feed for analyst posts and market takes
opencli linkedin timeline --limit 30 -f jsonSearch for finance industry jobs
# Quantitative roles
opencli linkedin search "quantitative analyst" --location "New York" --details --limit 15 -f json
opencli linkedin search "quant trader" --experience-level mid-senior --limit 10 -f json
# Portfolio management
opencli linkedin search "portfolio manager" --job-type full-time --limit 15 -f json
# Risk and compliance
opencli linkedin search "risk analyst" --date-posted week --limit 10 -f json
opencli linkedin search "compliance officer fintech" --limit 10 -f jsonTrack hiring trends at specific companies
opencli linkedin search "analyst" --company "Goldman Sachs" --limit 20 -f json
opencli linkedin search "engineer" --company "Citadel,Two Sigma,Jane Street" --limit 20 -f jsonRemote finance opportunities
opencli linkedin search "financial analyst" --remote remote --limit 20 -f json
opencli linkedin search "data scientist trading" --remote hybrid --location "Chicago" --limit 10 -f jsonEntry-level finance positions
opencli linkedin search "investment banking analyst" --experience-level entry --date-posted month --limit 15 -f json
opencli linkedin search "junior trader" --experience-level entry --limit 10 -f jsonExport for analysis
# CSV for spreadsheet analysis
opencli linkedin search "hedge fund" --limit 50 -f csv > hedge_fund_jobs.csv
# JSON for programmatic processing
opencli linkedin timeline --limit 30 -f json > linkedin_feed.json---
Error Reference
| Error | Cause | Fix |
|---|---|---|
Extension not connected | Browser Bridge not installed | Install the Browser Bridge Chrome extension |
Daemon not running | opencli daemon not started | Run opencli doctor to auto-start |
No session for linkedin.com | Not logged into linkedin.com | Login to linkedin.com in Chrome |
AuthRequiredError | Login wall detected, session expired | Refresh linkedin.com and log in again |
EmptyResultError | No results found | Broaden search terms or check feed content |
| Rate limited | Too many requests | Wait a few minutes, then retry |
---
Limitations
- Read-only in this skill — write operations are not supported for finance use
- No profile lookups — individual user/company profile viewing is not yet supported
- No messaging — LinkedIn messages/InMail are not accessible
- No connection management — cannot view, send, or manage connection requests
- No notifications — LinkedIn notifications are not exposed
- Job search only — search is scoped to job listings, not posts or people
- Requires Chrome — opencli uses Chrome's Browser Bridge; other browsers are not supported
- Single browser profile — uses the active Chrome profile's session
---
Best Practices
- Keep request volumes low — use
--limit 20instead of--limit 100 - Use `opencli doctor` before your first command in a session to verify connectivity
- Use `-f json` for programmatic processing and LLM context
- Use `-f csv` when the user wants to analyze data in a spreadsheet
- Use `--details` only when you need full job descriptions — it's slower since it fetches each listing individually
- Use `--date-posted week` or `--date-posted 24h` for time-sensitive job market research
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.