community-health

community-health is a skill for Claude Code from vinnie357/claude-skills. It costs 37 tokens per session (2,673 once invoked), scanned A, original, MIT.

A guide for preparing GitHub repositories for open-source collaboration. It covers files such as licenses, contribution instructions, behavior rules, security policies, and issue templates.

In plain words
What is it for?
Use it to check or add a README, license, code of conduct, contributing guide, issue templates, and vulnerability-reporting instructions.
Why use it?
It helps a public project explain how people may use, change, report problems in, and contribute to the code. It also helps identify missing community-standard files.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the github plugin — 5 skills, 4 agents shipped together

Good fit Use it to check or add a README, license, code of conduct, contributing guide, issue templates, and vulnerability-reporting instructions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vinnie357/claude-skills/community-health
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 vinnie357/claude-skills --skill community-health
Clone the repo
git clone --depth 1 https://github.com/vinnie357/claude-skills

Made for: Claude Code.

Or install github, the plugin that ships this one along with the rest of its 5 skills, 4 agents.

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 community-health

README.md
[![agentmods](https://agentmods.dev/badge/skills/vinnie357/claude-skills/community-health/github.svg)](https://agentmods.dev/skills/vinnie357/claude-skills/community-health)
Your own site
<a href="https://agentmods.dev/skills/vinnie357/claude-skills/community-health"><img src="https://agentmods.dev/badge/skills/vinnie357/claude-skills/community-health/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 community-health

Your own site · 80×15
<a href="https://agentmods.dev/skills/vinnie357/claude-skills/community-health"><img src="https://agentmods.dev/badge/skills/vinnie357/claude-skills/community-health.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,673 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. 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.00037 $0.02673
Opus 5 $0.00018 $0.01337
Sonnet 5 $0.00007 $0.00535
Haiku 4.5 $0.00004 $0.00267

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

Security

Grade A, and why

community-health 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 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.

Makes network callslowCapability

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

curl -sL https://www.contributor-covenant.org/version/3/0/code_of_conduct.md
plugins/tools/github/skills/community-health/SKILL.md · 421 lines

How it starts

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

GitHub Community Health

Activate when setting up or auditing community health files for GitHub repositories. This skill covers the files GitHub checks in its Community Standards profile, plus related repo configuration.

Community Profile Checklist

GitHub checks these 6 items on the /community tab:

  1. README — project overview, usage, and getting started
  2. LICENSE — open-source license file in repo root
  3. CODE_OF_CONDUCT.md — community behavior standards
  4. CONTRIBUTING.md — how to contribute
  5. Issue templates — structured bug/feature reporting
  6. SECURITY.md — vulnerability disclosure policy

Check current status:

# View community profile metrics via API
gh api repos/{owner}/{repo}/community/profile

GitHub Template APIs

GitHub provides APIs to fetch common templates at runtime. Always fetch rather than hardcode — templates get updated.

# List available license templates (13 licenses)
gh api licenses --jq '.[].key'

# Fetch a specific license body
gh api licenses/mit --jq '.body'

# Fetch Code of Conduct (note: API serves v2.0, not latest v3.0)
gh api codes_of_conduct/contributor_covenant --jq '.body'

# List available gitignore templates
gh api gitignore/templates

# Fetch a specific gitignore template
gh api gitignore/templates/Node --jq '.source'

LICENSE

Use the GitHub API to list and fetch license templates:

# List all available licenses
gh api licenses --jq '.[] | "\(.key): \(.name)"'

# Fetch license text (has [year] and [fullname] placeholders)
gh api licenses/mit --jq '.body'
gh api licenses/apache-2.0 --jq '.body'
gh api licenses/gpl-3.0 --jq '.body'

After fetching, replace placeholders:

  • [year] — current year (or year range)
  • [fullname] — copyright holder name

Place the file as LICENSE (no extension) in the repository root.

CODE_OF_CONDUCT.md

The GitHub API serves Contributor Covenant v2.0, but the latest version is v3.0 (available at contributor-covenant.org).

Read the full file on GitHub · 421 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 · 421 lines · 37 tokens per session scan A dffad64b4d43

Subscribe to this mod's changes

community-health is a skill published in the GitHub repository vinnie357/claude-skills (25 stars, last pushed 3d ago), licensed MIT. It adds 37 tokens to every session and 2,673 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

open-sourcing

This skill should be used when the user asks to "open source this project", "prepare this repository for public release", "make this repo public", "check open-source readiness", "choose a license for this project", or "set up release automation" ahead of a public launch. Provides a release-readiness workflow covering…

trailofbits/skills · 82 tokens

repo-prep

Interactively prepare a code repository for publication — LICENSE, NOTICE, AUTHORSHIP, README sections, package metadata, .gitignore, community docs (CONTRIBUTING/CODEOFCONDUCT/SECURITY/CHANGELOG), .github templates (issues/PR/CI/dependabot), a promo "more from the author" block, and conditional EU/Germany legal…

glebis/claude-skills · 158 tokens

compliance-license-audit

Interactive open-source license compliance audit to identify all dependency licenses, flag risks, and detect license incompatibilities.

charlesjones-dev/claude-code-plugins-dev · 27 tokens

compliance-notice-generate

Generate NOTICE, ATTRIBUTION, or THIRD-PARTY-NOTICES files from detected dependency licenses to fulfill open-source license obligations.

charlesjones-dev/claude-code-plugins-dev · 34 tokens

open-source

Open source readiness best practices. Covers licensing, documentation, community health, CI/CD, compliance, legal, and packaging. USE WHEN: user mentions "open source", "license", "LICENSE", "CONTRIBUTING", "CODEOFCONDUCT", "CHANGELOG", "open source readiness", "community health", "OSS compliance", "SPDX", "CLA"…

claude-dev-suite/claude-dev-suite · 150 tokens

release-guard

Block releases that fail the licence and changelog policy, and bundle the team's release tooling into one installable package.

eugenelim/agent-ready-repo · 27 tokens