gh-contribution-planner

gh-contribution-planner is a skill for Claude Code from ulises-jeremias/agent-toolkit. It costs 63 tokens per session (1,709 once invoked), scanned A, original, MIT.

A planning workflow that reviews your own GitHub repositories and recent contributions, then proposes what to work on next.

In plain words
What is it for?
It helps find issues, stale pull requests, and outdated forks, rank possible tasks, and—after approval—send approved work to existing pull-request and CI workflows.
Why use it?
It reduces the effort of scanning many repositories for useful, manageable contribution opportunities.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions subagents; mentions Claude Code; mentions OpenCode.

Part of the agent-toolkit-complete plugin — 116 skills shipped together

Good fit It helps find issues, stale pull requests, and outdated forks, rank possible tasks, and—after approval—send approved work to existing pull-request and CI workflows.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ulises-jeremias/agent-toolkit/gh-contribution-planner
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ulises-jeremias/agent-toolkit --skill gh-contribution-planner
Clone the repo
git clone --depth 1 https://github.com/ulises-jeremias/agent-toolkit

Made for: Claude Code.

Or install agent-toolkit-complete, the plugin that ships this one along with the rest of its 116 skills.

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 gh-contribution-planner

README.md
[![agentmods](https://agentmods.dev/badge/skills/ulises-jeremias/agent-toolkit/gh-contribution-planner/github.svg)](https://agentmods.dev/skills/ulises-jeremias/agent-toolkit/gh-contribution-planner)
Your own site
<a href="https://agentmods.dev/skills/ulises-jeremias/agent-toolkit/gh-contribution-planner"><img src="https://agentmods.dev/badge/skills/ulises-jeremias/agent-toolkit/gh-contribution-planner/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 gh-contribution-planner

Your own site · 80×15
<a href="https://agentmods.dev/skills/ulises-jeremias/agent-toolkit/gh-contribution-planner"><img src="https://agentmods.dev/badge/skills/ulises-jeremias/agent-toolkit/gh-contribution-planner.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 63 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,709 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 warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Excessive Agency · line 44
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
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.00063 $0.01709
Opus 5 $0.00032 $0.00855
Sonnet 5 $0.00013 $0.00342
Haiku 4.5 $0.00006 $0.00171

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

Security

Grade A, and why

gh-contribution-planner 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 5d 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.

plugins/agent-toolkit-complete/.github/skills/gh-contribution-planner/SKILL.md · 161 lines

How it starts

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

GitHub Contribution Planner

Discover what to work on across your GitHub footprint, propose a prioritized daily plan, and — on approval — fan out parallel sub-agents to open draft PRs. The skill infers the current user from the authenticated gh CLI, so no manual configuration is required.

When to use

  • "Plan my GitHub contributions for today" / "what should I work on across my repos" / "give me a daily contribution plan".
  • You want to maintain your own repositories and forks without manually scanning each one.
  • You want to find low-friction openings (good first issues, stale PRs, outdated forks) in projects you have already contributed to.

Do not use this skill to operate on a specific PR you already picked — use gh-fix-ci, gh-address-comments, or github-cli-workflow directly.

Prerequisites

  • gh installed and authenticated (gh auth status exits 0). Scopes typically required: repo, read:org. doctor reports this under Integrations.
  • python3 for the bundled analyzer.
  • Network access to api.github.com (or the host configured via GH_HOST).
  • A host that supports parallel sub-agent dispatch (Claude Code's Task tool, OpenCode's subagent fan-out, etc.). Hosts without that primitive fall back to sequential execution.

Workflow

  1. Verify auth. Run gh auth status. If unauthenticated, ask the user to run gh auth login and stop. Do not prompt for tokens.

  2. Resolve the current user. gh api user --jq .login — never ask the user; always infer from gh.

  3. Run the analyzer.

    python3 ~/.local/share/agent-toolkit/skills/gh-contribution-planner/scripts/inspect_contributions.py \
      --since 90d --max-per-bucket 5
    

    Useful flags:

    • --json — machine-readable output (recommended when composing with another agent).
    • --user <login> — override the inferred login (useful for testing or planning for an organization the user maintains).
    • --dry-run — print the gh calls the analyzer would make and exit; useful for sanity-checking before a live run.
    • --max-per-bucket <n> — cap items per bucket (default 5).
    • --since <window> — lookback window for recent contributions. Accepts 30d, 90d, 180d, or an ISO date.

Read the full file on GitHub · 161 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. 5d ago First seen · 161 lines · 63 tokens per session scan A dc7ae8e23af3

Subscribe to this mod's changes

gh-contribution-planner is a skill published in the GitHub repository ulises-jeremias/agent-toolkit (16 stars, last pushed today), licensed MIT. It adds 63 tokens to every session and 1,709 once invoked, about $0.0003 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-09-04.

Related

Other skills, from other repositories

github-navigator

GitHub operations via gh CLI. CRITICAL: Use instead of WebFetch for any github.com URL or GitHub repo path like owner/repo. Use when the user asks to inspect repositories, files, issues, pull requests, releases, Actions runs, or repository structure. Use when the user says 'show README', 'list issues', 'check PR'…

arvindand/agent-skills · 107 tokens

active-review

Use when the user wants to prepare for a manual PR code review and asks for help targeting it — a terse PR summary, ranked files to read first, and paste-ready inline comment drafts with GitHub deep-links. Triggers: "active review this PR", "walk me through this PR", "help me review this", "give me inline comments to…

paultyng/skill-issue · 157 tokens

bisect

Use when hunting a regression, phrases like "bisect", "find the commit that broke X", "this used to work", "regression in test Y", "when did start". Also use when escalated from ci-debug-loop because log analysis can't pinpoint the offending change, or when a previously-passing test/build/behavior is now failing and…

paultyng/skill-issue · 121 tokens

analyze-knowledge

Use when the user asks who knows specific code, who should review a PR or files, what the lottery factor is, whether knowledge is concentrated or spread, who to talk to about a code area, or when suggesting reviewers beyond GitHub's built-in suggestions.

paultyng/skill-issue · 57 tokens

fix-pr-conflict

Resolve merge conflicts on a pull request by rebasing onto the base branch. Use when a PR is not mergeable, has merge conflicts, or the user asks to fix conflicts on a PR.

paultyng/skill-issue · 44 tokens

create-pr

Use when creating a new GitHub pull request, opening a PR for the current branch, or when another skill (like ship-it) needs a PR created for a branch that does not have one yet.

paultyng/skill-issue · 44 tokens