1-triage-issues

Featured

Scan all open issues and PRs in stickerdaniel/linkedin-mcp-server and rank them by urgency (severity, user impact, age, references), implementation quality (for PRs — mergeability, CI, diff scope, locale-independence, test coverage), and contributor track record (prior merged PRs, review quality, response cadence). Use when the user asks "what should I tackle first as core maintainer", "which PRs are production-ready", "triage backlog", "scan open issues", or any maintainer-prioritisation question about this repo. Outputs a ranked list with rationale per item, not a fix.

AI & Automation 2,921 stars 500 forks Updated today Apache-2.0

Install

View on GitHub

Quality Score: 96/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# 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 ```bash 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 u...

Details

Author
stickerdaniel
Repository
stickerdaniel/linkedin-mcp-server
Created
1 years ago
Last Updated
today
Language
Python
License
Apache-2.0

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category