contribute

contribute is a skill for Claude Code, Codex from GXDEVS/grouter. It costs 135 tokens per session (2,919 once invoked), scanned A, original, MIT.

A guided contribution workflow for grouter, a GitHub software project. It takes a developer from local changes through branch creation, commits, pushing, and opening a pull request.

In plain words
What is it for?
Use it when preparing a grouter contribution: create a correctly named branch, make Conventional Commits, push the branch, and open a pull request with the GitHub CLI.
Why use it?
It removes guesswork from the project’s contribution rules and helps keep each change separate and clearly described. It also checks the developer’s Git identity and requires approval for shared repository actions.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/gxdevs/grouter/contribute
Any agent
npx skills add GXDEVS/grouter --skill contribute
Clone the repo
git clone --depth 1 https://github.com/GXDEVS/grouter

Made for: Claude Code, Codex.

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 contribute

README.md
[![agentmods](https://agentmods.dev/badge/skills/gxdevs/grouter/contribute.svg)](https://agentmods.dev/skills/gxdevs/grouter/contribute)
Your own site
<a href="https://agentmods.dev/skills/gxdevs/grouter/contribute"><img src="https://agentmods.dev/badge/skills/gxdevs/grouter/contribute.svg" alt="Measured on agentmods" height="20"></a>
Per session 135 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,919 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00135 $0.02919
Opus 5 $0.00068 $0.01460
Sonnet 5 $0.00027 $0.00584
Haiku 4.5 $0.00014 $0.00292

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

Security

Grade A, and why

contribute 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 4d 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.

.claude/skills/contribute/SKILL.md · 259 lines

How it starts

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

grouter — Contribution Flow

End-to-end helper for contributing to grouter (GXDEVS/grouter). Take the user from "I have changes" to "PR open on GitHub" with zero guesswork.

Ground rules — non-negotiable

  1. Use the developer's git identity. Read git config user.name and git config user.email. Never run git config --global user.* or override the identity. If unset, stop and tell the user to configure it (see step 0).
  2. No emojis. Not in branch names, commit messages, PR titles, PR bodies, or terminal output. None.
  3. No Claude attribution. Do not append Co-Authored-By: Claude …, "Generated with Claude Code", or any similar footer to commits or PRs. Leave the message ending with the body/footer the user approved.
  4. Never force-push, never --no-verify, never amend a commit that was already pushed. If a hook fails, fix the underlying issue and create a new commit.
  5. Commit scope matches the user's intent. Ask per logical change — one feature/fix per commit. Do not silently bundle unrelated files.
  6. Confirm before destructive or shared-state actions. Branch deletion, rebases, PR creation, and git push always get an explicit "yes" from the user.

Step 0 — Verify the developer is logged in

Run these checks in parallel before anything else:

git config user.name
git config user.email
git -C . remote get-url origin
gh auth status 2>&1 || true

Decision table:

Check Missing → do this
user.name / user.email empty Stop. Tell the user to run git config --global user.name "Your Name" and git config --global user.email "[email protected]" themselves, then retry.
gh auth status not logged in Tell the user to run gh auth login in the prompt as ! gh auth login (interactive). PR step needs it. Commits/branch work can still proceed.
origin points to a fork Fine — PRs will target GXDEVS/grouter:main via gh pr create --repo GXDEVS/grouter. Confirm the fork URL with the user.

Read the full file on GitHub · 259 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. 4d ago First seen · 259 lines · 0 tokens per session scan A cc0182a4780d

Subscribe to this mod's changes

contribute is a skill published in the GitHub repository GXDEVS/grouter (55 stars, last pushed 6d ago), licensed MIT. It adds 135 tokens to every session and 2,919 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

close-task-commit-push-pr

Close the active backlog task (detected from branch name), commit all changes, push to remote, and open a pull request. Use when the user says "close task and ship it", "close task commit push pr", or invokes /close-task-commit-push-pr.

devoxx/DevoxxGenieIDEAPlugin · 64 tokens

document

Run /document pr | changelog | release-note | postmortem (or let it ask) to write the human facing prose about a change. Drafts from the real commits and diff, writing to the right place. Does not write code, tests, or specs.

jsmastery-pro/skills · 65 tokens

git-push

把项目推送到 GitHub,三种模式自动判断:首次推送(大文件扫描 → 生成 .gitignore → git init → gh 建仓 → 推送)、日常更新(commit + push)、版本发布(打 tag + 建 Release,可附下载文件)。核心原则是安全第一:推之前必扫大文件和敏感文件,宁可多问一句也不把不该推的东西推上去。当用户说"推到GitHub""推送到GitHub""git push""上传到GitHub""提交并推送""发版本""打release""打tag""/git-push"时触发。不适用于:规划哪些功能进哪个版本号(用 issue-pool——本 skill 只负责把已经定好的版本号打成…

yunshu0909/yunshu_skillshub · 223 tokens

ship

Commit, push, and create a PR for staged changes, with confirmation at each step. Use when your work is done and you want to ship.

poshan0126/dotclaude · 32 tokens

git-workflow

Git operations: commits, branches, PRs, and conflict resolution.

vstorm-co/pydantic-deepagents · 17 tokens

conventional-commits

Conventional Commits specification for consistent, machine-readable git commit messages. Use when crafting commit messages, enforcing commitlint rules, or generating changelogs/releases.

pdsuwwz/chatgpt-vue3-light-mvp · 38 tokens