linkedin-mcp-server: Skill for Claude Code

.agents/skills/1-triage-issues/SKILL.md

1-triage-issues is a skill for Claude Code from stickerdaniel/linkedin-mcp-server. It costs 138 tokens per session (1,747 once invoked), scanned A, original, Apache-2.0.

A read-only workflow for reviewing all open issues and pull requests in the stickerdaniel/linkedin-mcp-server repository. It ranks them using urgency, user impact, implementation quality, and contributor history.

In plain words
What is it for?
Finding urgent bugs, assessing proposed fixes, checking CI and test coverage, and linking pull requests to the issues they address.
Why use it?
It turns a large, live issue and pull-request list into a maintainer-focused priority order without changing the repository.

Skill for Claude Code

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

This is stickerdaniel/linkedin-mcp-server's own configuration. It tells Claude Code how to work on 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 linkedin-mcp-server configures →

About the project

linkedin-mcp-server is a local MCP server that gives compatible AI assistants access to LinkedIn through a logged-in browser session. Agents can use it to inspect profiles and companies, search jobs, retrieve job details, and manage certain LinkedIn interactions. The catalogue add-ons operate this server and expose its LinkedIn workflows to agents.

stickerdaniel/linkedin-mcp-server · 3,384 stars · on GitHub

Reuse

Borrowing it

Nothing to install: this file belongs to 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/stickerdaniel/linkedin-mcp-server/main/.agents/skills/1-triage-issues/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/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 1-triage-issues

README.md
[![agentmods](https://agentmods.dev/badge/skills/stickerdaniel/linkedin-mcp-server/1-triage-issues/github.svg)](https://agentmods.dev/skills/stickerdaniel/linkedin-mcp-server/1-triage-issues)
Your own site
<a href="https://agentmods.dev/skills/stickerdaniel/linkedin-mcp-server/1-triage-issues"><img src="https://agentmods.dev/badge/skills/stickerdaniel/linkedin-mcp-server/1-triage-issues/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 1-triage-issues

Your own site · 80×15
<a href="https://agentmods.dev/skills/stickerdaniel/linkedin-mcp-server/1-triage-issues"><img src="https://agentmods.dev/badge/skills/stickerdaniel/linkedin-mcp-server/1-triage-issues.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 138 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,747 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found 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.00138 $0.01747
Opus 5 $0.00069 $0.00873
Sonnet 5 $0.00028 $0.00349
Haiku 4.5 $0.00014 $0.00175

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

Security

Grade A, and why

1-triage-issues scanned grade A with 0 findings 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 9d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

5 near-identical copies found in the catalogue:

.agents/skills/1-triage-issues/SKILL.md · 99 lines

How it starts

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

Triage Open Issues and PRs

Goal: in one pass, turn the live state of stickerdaniel/linkedin-mcp-server into a maintainer-grade priority list. Read-only. No checkout, no edits, no reproduction. Reproduction belongs in /2-repro-issue; PR verification in /3-verify-pr-fix.

Inputs

$ARGUMENTS is optional. If set, treat as a label name (bug, enhancement) or freetext filter to narrow the scope. Otherwise scan everything open.

Phase 1 — Gather

REPO=stickerdaniel/linkedin-mcp-server

# Issues  (gh calls the reactions field `reactionGroups`, not `reactions`)
gh issue list --repo $REPO --state open --limit 200 \
  --json number,title,labels,createdAt,updatedAt,author,comments,reactionGroups,body

# PRs
gh pr list --repo $REPO --state open --limit 100 \
  --json number,title,labels,createdAt,updatedAt,author,mergeable,mergeStateStatus,statusCheckRollup,additions,deletions,changedFiles,reviewDecision,isDraft,headRepositoryOwner

# Cross-link issues ↔ PRs via body references
gh search prs --repo $REPO --state open --json number,body,title --limit 100

Build a map issue_number → [referencing_pr_numbers] by scanning PR bodies for Closes #, Fixes #, Resolves #, plain #N.

If $ARGUMENTS is given, filter both lists down before scoring.

Phase 2 — Score each issue

For every open issue, compute four signals. Cite the evidence inline so the user can audit.

  • Severity (1–5): 5 = data loss / broken-for-all-users / security; 4 = core tool unavailable (e.g. get_person_profile returning empty); 3 = degraded output for a subset (locale, edge-case profile); 2 = annoyance / cosmetic; 1 = question / docs. Read the body + labels (bug, critical, security, regression).
  • Reach (1–5): comment count, distinct commenters, +1/👍 reactions, references from other issues.
  • Age vs activity: createdAt → days old; updatedAt → days since last activity. Stale-but-high-severity ranks higher than fresh-but-cosmetic.
  • Has fix in flight: did anyone open a PR (look up in cross-link map)? Is that PR ready to merge?

Read the full file on GitHub · 99 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. 9d ago First seen · 99 lines · 138 tokens per session scan A 4d947111aab8

Subscribe to this mod's changes

1-triage-issues is a skill published in the GitHub repository stickerdaniel/linkedin-mcp-server (3,384 stars, last pushed today), licensed Apache-2.0. It adds 138 tokens to every session and 1,747 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

live-audit

Audit steam-games-mcp — build/test/lint gate, live MCP tool edge-case sweep (input validation, SteamID64/vanity/appid edge cases, key-gating), and source-level code review. Use when asked to test/audit the published or just-fixed steam-games-mcp package, hunt for bugs/edge cases, or repeat "the same kind of testing as…

Grinv/steam-games-mcp · 83 tokens

tool-description-check

Self-check a new or edited MCP tool description/field .describe() text before committing — verify every behavioral claim against live testing or source, check for contradictions with sibling tools, and score against Glama's Tool Definition Quality Score (TDQS) rubric. Use whenever a tool description or schema field…

Grinv/steam-games-mcp · 76 tokens

gitnexus-pr-review

Use when the user wants to review a pull request, understand what a PR changes, assess risk of merging, or check for missing test coverage. Examples: "Review this PR", "What does PR #42 change?", "Is this PR safe to merge?".

VKirill/agent-consult · 58 tokens

gitnexus-impact-analysis

Use when the user wants to know what will break if they change something, or needs safety analysis before editing code. Examples: "Is it safe to change X?", "What depends on this?", "What will break?".

VKirill/agent-consult · 50 tokens

gitnexus-refactoring

Use when the user wants to rename, extract, split, move, or restructure code safely. Examples: "Rename this function", "Extract this into a module", "Refactor this class", "Move this to a separate file".

VKirill/agent-consult · 53 tokens

liveagent-code-review

Review an open GitHub pull request or the current local branch and working tree with parallel, independent reviewers and evidence-based validation. Use when the user asks for code review, invokes the Code Review action from Git Review, or explicitly mentions this skill.

Stack-Cairn/LiveAgent · 54 tokens