oss-repo-check: Skill for Claude Code

.claude/skills/quaid-scan/SKILL.md

quaid-scan is a skill for Claude Code from AINative-Studio/oss-repo-check. It costs 84 tokens per session (1,110 once invoked), scanned A, original, Apache-2.0.

A repository assessment tool that reviews an open-source project’s security, governance, community, AI readiness, inclusiveness, and technical practices. It can scan a local folder or a GitHub repository and produce reports.

In plain words
What is it for?
Use it to run quick, standard, or thorough scans, generate JSON or Markdown reports, apply score thresholds, and examine rivals, partners, or communities.
Why use it?
It gives a structured view of repository health and potential risks before a pull request, release, or adoption decision. It can also compare the project’s wider ecosystem when requested.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is AINative-Studio/oss-repo-check's own configuration. It tells Claude Code how to work on oss-repo-check itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything oss-repo-check configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is node dist/cli.js . --depth quick.

Reuse

Borrowing it

Nothing to install: this file belongs to AINative-Studio/oss-repo-check. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/AINative-Studio/oss-repo-check/main/.claude/skills/quaid-scan/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/AINative-Studio/oss-repo-check

Made for: Claude Code.

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 quaid-scan

README.md
[![agentmods](https://agentmods.dev/badge/skills/ainative-studio/oss-repo-check/quaid-scan/github.svg)](https://agentmods.dev/skills/ainative-studio/oss-repo-check/quaid-scan)
Your own site
<a href="https://agentmods.dev/skills/ainative-studio/oss-repo-check/quaid-scan"><img src="https://agentmods.dev/badge/skills/ainative-studio/oss-repo-check/quaid-scan/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 quaid-scan

Your own site · 80×15
<a href="https://agentmods.dev/skills/ainative-studio/oss-repo-check/quaid-scan"><img src="https://agentmods.dev/badge/skills/ainative-studio/oss-repo-check/quaid-scan.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 84 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,110 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.
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.00084 $0.01110
Opus 5 $0.00042 $0.00555
Sonnet 5 $0.00017 $0.00222
Haiku 4.5 $0.00008 $0.00111

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

Security

Grade A, and why

quaid-scan 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 11d 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/quaid-scan/SKILL.md · 129 lines

How it starts

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

quaid-scan Skill

Runs quaid-scanner against a local path or GitHub URL and interprets the results.

6 Pillars (weighted)

Pillar Weight What it measures
Security 25% Supply chain, branch protection, token permissions, OpenSSF Scorecard
Governance 20% License, bus factor, vendor neutrality, asset protection
Community 15% Contributor funnel, response time, burnout signals, funding
AI Readiness 15% Model cards, agentic rules, dataset provenance
Inclusive 15% INI terms, diminishing language, assumed knowledge
Technical 10% Linting, test coverage, SemVer/CHANGELOG consistency

CLI Reference

# Quick scan of current directory
node dist/cli.js . --depth quick

# Standard scan with JSON output
node dist/cli.js . --format json

# Thorough scan of a GitHub repo
node dist/cli.js https://github.com/owner/repo --depth thorough

# Markdown report to file
node dist/cli.js . --format markdown --output report.md

# With ecosystem intelligence (rivals, partners, community recommendations)
node dist/cli.js . --ecosystem

# With threshold (exit 2 if score < 6.0)
node dist/cli.js . --threshold 6.0

# Depth levels
# --depth quick     ~5s   — file presence checks, no API calls
# --depth standard  ~15s  — default, adds GitHub API checks
# --depth thorough  ~60s  — all checks including OpenSSF Scorecard API

Exit Codes

Code Meaning
0 Score ≥ 8.0 (Low Risk)
1 Score 5.0–7.9 (Medium Risk)
2 Score < 5.0 (High/Critical Risk) or --threshold not met

How to Interpret Results

After running, interpret the JSON output:

overallScore: 3.3  → CRITICAL — immediate action needed on high-severity findings
riskLevel: CRITICAL

Priority order:
1. findings where severity = CRITICAL → block PR / release
2. findings where severity = WARNING  → schedule for sprint
3. recommendations[0..2]             → top actions by impact/effort ratio

Read the full file on GitHub · 129 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. 11d ago First seen · 129 lines · 84 tokens per session scan A a3f0484b7c2e

Subscribe to this mod's changes

quaid-scan is a skill published in the GitHub repository AINative-Studio/oss-repo-check (2 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 84 tokens to every session and 1,110 once invoked, about $0.0004 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-31.