Best for
- Use when the ghfind CLI is installed (or the user wants it installed) and asks to vet, rate, roast, or compare a GitHub user, check if an account is farmed, generate a score badge, or discover developers by language/org…
hikariming/ghfind/skills/ghfind-cli/SKILL.md
Drive the ghfind CLI to score, scan, roast, and compare GitHub accounts and to browse ghfind.com leaderboards and developer directories from the terminal. Use when the ghfind CLI is installed (or the user wants it installed) and asks to vet, rate, roast, or compare a GitHub user, check if an account is farmed, generate a score badge, or discover developers by language/org/repo. For no-install REST/MCP access to the same engine, prefer the ghfind-score skill.
Decision brief
ghfind is a thin client for ghfind.com's deterministic GitHub developer value & trust scoring engine (0-100, no LLM in the scoring core). It performs no local scanning or scoring — every command calls the website API. Do not reimplement scoring locally or import project internal…
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/hikariming/ghfind --skill "skills/ghfind-cli"Inspect the Agent Skill "ghfind-cli" from https://github.com/hikariming/ghfind/blob/d6bde537e9e2b4624c5a335d6d02311cc1dee6fa/skills/ghfind-cli/SKILL.md at commit d6bde537e9e2b4624c5a335d6d02311cc1dee6fa. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
Prebuilt binaries: https://github.com/hikariming/ghfind/releases
Default host is https://ghfind.com. Override with GHFINDHOST or --host
Prefer -o json for machine consumption. Discover the full catalog at runtime:
score / scan return factual scoring data: finalscore, tier,
Permission review
The documentation asks the agent to run terminal commands or scripts.
npm install -g @hikariming/ghfind # or: pip install ghfindEvidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 77/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 154 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
ghfind is a thin client for ghfind.com's deterministic GitHub developer
value & trust scoring engine (0-100, no LLM in the scoring core). It performs
no local scanning or scoring — every command calls the website API. Do not
reimplement scoring locally or import project internals.
npm install -g @hikariming/ghfind # or: pip install ghfind
Prebuilt binaries: https://github.com/hikariming/ghfind/releases
https://ghfind.com. Override with GHFIND_HOST or --host
(e.g. --host http://localhost:3000 against a local dev server).POST /api/scan path (used by scan and roast) requires
auth in production: pass GHFIND_API_KEY or --api-key (sent as
Authorization: Bearer), or a Turnstile token. Everything else —
score, vs, search, exists, stats, leaderboard, developers —
is public and unauthenticated.exists --github-token (raises GitHub's anonymous
rate limit; the call runs on the caller's quota) and roast --byo-* (runs
the roast through the user's own OpenAI-compatible provider).Prefer -o json for machine consumption. Discover the full catalog at runtime:
ghfind commands --json
ghfind commands show roast --json
Score and evidence (factual, deterministic):
ghfind score <username> -o json # preferred first call: public GET /api/score,
# cached, scores never-seen accounts live
ghfind scan <username> -o json # full evidence: metrics, repos, PRs,
# sub_scores, red_flags (needs api key in prod)
Presentation and comparison:
ghfind roast <username> --lang zh -o markdown # web-facing roast report
ghfind vs <a> <b> -o json # head-to-head; score both first
Utility and discovery:
ghfind exists <username> -o json # validate handle via GitHub's API
ghfind search <query> -o json # prefix search over scored accounts
ghfind badge <username> --markdown # README-ready score badge snippet
ghfind card <username> # OG share-card PNG URL
ghfind stats -o json # platform totals
ghfind leaderboard --view trending --window 7d -o json
ghfind developers --type language -o json
ghfind developers --type org --value apache -o json
ghfind auth status -o json # local credential check, no network
Self-update (only when the user explicitly asks to upgrade; use --dry-run
first in automation):
ghfind update check -o json
ghfind update install --method binary --dry-run -o json
score / scan return factual scoring data: final_score, tier,
sub_scores, red_flags, percentile. Use these for automated decisions.roast returns the same report a human sees on the website: tags,
roast_line, markdown with jokes and sarcasm. Use it only for user-facing
copy; never treat roast prose as independent factual evidence.vs winner and gap bucket are deterministic; verdict prose is LLM-written
and may be null. Both accounts must already be scored (404 need_both
otherwise).stats / leaderboard / developers are cached discovery surfaces, not
fresh per-user facts — before making claims about one account, call score
or scan.Alternatives
coreyhaines31/marketingskills
When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program
event4u-app/agent-config
Grounded design brief from the adopted corpus — style, WCAG-checked color tokens, typography, layout pattern, anti-patterns. Use on ui-design-brief or any which-style/palette/font/chart decision.
event4u-app/agent-config
Use BEFORE writing or editing any non-trivial UI — inventories components, design tokens, shadcn primitives, and reusable patterns into state.ui_audit. Hard gate for the ui directive set.
event4u-app/agent-config
Use BEFORE writing/changing tests, adding mocks, or test-only methods on production classes — vs mocking-the-mock, production pollution, partial mocks, and overfit/tautological assertions