stickerdaniel_linkedin-mcp-server: Skill for Claude Code

.agents/skills/2-repro-issue/SKILL.md

2-repro-issue is a skill for Claude Code from bartest5/stickerdaniel_linkedin-mcp-server. It costs 75 tokens per session (2,584 once invoked), scanned A, a copy of 2-repro-issue, Apache-2.0.

Instructions for reproducing one LinkedIn-MCP issue on the current code branch using a real authenticated LinkedIn session. MCP is a standard way for an agent to call external tools.

In plain words
What is it for?
Investigating a numbered LinkedIn-MCP issue, checking its exact failing inputs, and confirming the affected scraper path.
Why use it?
It captures the actual error or missing data and connects the failure to the scraper code that caused it, instead of relying on a mock test.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: mentions CLAUDE.md; positional $N argument; installed under .agents/ (shared by several agents).

This is bartest5/stickerdaniel_linkedin-mcp-server's own configuration. It tells Claude Code how to work on stickerdaniel_linkedin-mcp-server itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything stickerdaniel_linkedin-mcp-server configures →

Reuse

Borrowing it

Nothing to install: this file belongs to bartest5/stickerdaniel_linkedin-mcp-server. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/bartest5/stickerdaniel_linkedin-mcp-server/main/.agents/skills/2-repro-issue/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/bartest5/stickerdaniel_linkedin-mcp-server

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for 2-repro-issue

README.md
[![agentmods](https://agentmods.dev/badge/skills/bartest5/stickerdaniel_linkedin-mcp-server/2-repro-issue/github.svg)](https://agentmods.dev/skills/bartest5/stickerdaniel_linkedin-mcp-server/2-repro-issue)
Your own site
<a href="https://agentmods.dev/skills/bartest5/stickerdaniel_linkedin-mcp-server/2-repro-issue"><img src="https://agentmods.dev/badge/skills/bartest5/stickerdaniel_linkedin-mcp-server/2-repro-issue/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for 2-repro-issue

Your own site · 80×15
<a href="https://agentmods.dev/skills/bartest5/stickerdaniel_linkedin-mcp-server/2-repro-issue"><img src="https://agentmods.dev/badge/skills/bartest5/stickerdaniel_linkedin-mcp-server/2-repro-issue.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 75 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,584 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00075 $0.02584
Opus 5 $0.00037 $0.01292
Sonnet 5 $0.00015 $0.00517
Haiku 4.5 $0.00007 $0.00258

Measured 8d ago against content hash e85d615973d6, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

2-repro-issue scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s -D /tmp/repro-$NUM-headers -X POST http://127.0.0.1:$PORT/mcp \
Origin

This is a copy

100% identical to 2-repro-issue — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.agents/skills/2-repro-issue/SKILL.md · 172 lines

How it starts

The opening of the file, as written. The whole thing — 172 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Reproduce a LinkedIn-MCP Issue Locally

Goal: take an issue number, run the exact failing tool call against the real LinkedIn via the local MCP server, and produce concrete evidence — output JSON, error message, partial state — that confirms or refutes the bug on the current branch. Always use the authenticated profile already at ~/.linkedin-mcp/profile/. Never mock.

Phase 1 — Read and map

# Accept "442", "#442", or "https://github.com/.../issues/442" — extract the digits only
NUM=$(echo "$ARGUMENTS" | sed -E 's|.*/||; s|#||g' | grep -oE '^[0-9]+' | head -1)
[ -z "$NUM" ] && { echo "Invalid input: '$ARGUMENTS'. Pass an issue number or URL." >&2; exit 1; }
REPO=stickerdaniel/linkedin-mcp-server

gh issue view $NUM --repo $REPO --comments

From the issue body extract:

  • Which MCP tool is affected (get_person_profile, connect_with_person, search_jobs, …). The issue templates ask for this explicitly.
  • The exact arguments that trigger the failure (username, company slug, job ID, sections list).
  • The expected vs actual behaviour.
  • Any locale signal — German UI, non-English profile name, RTL language. Locale-sensitive bugs need a deliberately diverse target.

Map the tool to code so you know where to look if the repro confirms the bug:

  1. linkedin_mcp_server/tools/<surface>.py — MCP entrypoint and arg validation
  2. linkedin_mcp_server/scraping/<feature>.py — actual scraping (extractor.py, connection.py, feed.py, inbox.py, …)
  3. linkedin_mcp_server/scraping/fields.pyPERSON_SECTIONS / COMPANY_SECTIONS (each entry = one navigation)
  4. Existing test in tests/test_scraping.py covering the same surface

State out loud before running anything: "Reproducing tool X with args Y on branch <current> — expecting <failure mode from issue>."

Phase 2 — Confirm session, branch, dependencies

git status --porcelain | head -5         # workspace must be clean
git log -1 --oneline                     # record the SHA we're testing
ls ~/.linkedin-mcp/profile/ | head -3    # profile must exist

Read the full file on GitHub · 172 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 172 lines · 75 tokens per session scan A e85d615973d6

Subscribe to this mod's changes

2-repro-issue is a skill published in the GitHub repository bartest5/stickerdaniel_linkedin-mcp-server (0 stars, last pushed 27d ago), licensed Apache-2.0. It adds 75 tokens to every session and 2,584 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 100% identical to 2-repro-issue, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

debug-optimize-lcp

Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…

ChromeDevTools/chrome-devtools-mcp · 99 tokens

systematic-debugging

Use when debugging a failing test, build error, or runtime issue that isn't immediately obvious. Guides a 4-phase root cause analysis instead of random fix attempts.

open-metadata/OpenMetadata · 37 tokens

diagnose

Trace from a reproduced symptom to the source code that causes it. Pin the specific file and approximate line, rate confidence in the cause and clarity of the fix independently, and always propose a concrete fix.

emdash-cms/emdash · 43 tokens

repro-admin

Reproduce an EmDash admin UI bug. Attach a container, start the demo dev server, drive the admin with agent-browser using the dev-bypass session, and capture the reproduction as screenshots plus a replayable transcript.

emdash-cms/emdash · 48 tokens

log-error-digest

Analyze log files to troubleshoot errors, identify peak error periods, and produce error clustering, frequency statistics, and time distribution reports. Supports JSON, syslog, and Nginx formats with automatic detection. Use when a user uploads a .log file and asks to analyze errors, find patterns, debug issues, or…

zebbern/claude-code-guide · 71 tokens

byted-util-volcengine-detect-retry

An orchestration workflow for Volcengine Cloud Detect, a service that checks websites or network endpoints from test locations.

bytedance/agentkit-samples · 101 tokens