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.
npx skills add vinnie357/claude-skills --skill community-healthgit clone --depth 1 https://github.com/vinnie357/claude-skillsWrote 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.
[](https://agentmods.dev/skills/vinnie357/claude-skills/community-health)<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.
<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>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once 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 |
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 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:
- README — project overview, usage, and getting started
- LICENSE — open-source license file in repo root
- CODE_OF_CONDUCT.md — community behavior standards
- CONTRIBUTING.md — how to contribute
- Issue templates — structured bug/feature reporting
- 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).
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.
- 9d ago First seen · 421 lines · 37 tokens per session scan A dffad64b4d43
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.
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…
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…
compliance-license-audit
Interactive open-source license compliance audit to identify all dependency licenses, flag risks, and detect license incompatibilities.
compliance-notice-generate
Generate NOTICE, ATTRIBUTION, or THIRD-PARTY-NOTICES files from detected dependency licenses to fulfill open-source license obligations.
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"…
release-guard
Block releases that fail the licence and changelog policy, and bundle the team's release tooling into one installable package.