file-search-on: Skill for Claude Code

.claude/skills/open-source-prep/SKILL.md

open-source-prep is a skill for Claude Code from richardwooding/file-search-on. It costs 154 tokens per session (1,481 once invoked), scanned A, original, MIT.

A read-only repository audit for preparing a project to become open source. Open source means publishing the code so others can inspect, use, and contribute to it.

In plain words
What is it for?
Use it to check for files such as a license, README, contribution and security guides, issue templates, CI workflows, dependency updates, and accidentally exposed secrets.
Why use it?
It shows which legal, documentation, community, GitHub, configuration, metadata, and secret-history checks are still missing before publication.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths.

This is richardwooding/file-search-on's own configuration. It tells Claude Code how to work on file-search-on 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 file-search-on configures →

Reuse

Borrowing it

Nothing to install: this file belongs to richardwooding/file-search-on. 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/richardwooding/file-search-on/main/.claude/skills/open-source-prep/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/richardwooding/file-search-on

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 open-source-prep

README.md
[![agentmods](https://agentmods.dev/badge/skills/richardwooding/file-search-on/open-source-prep/github.svg)](https://agentmods.dev/skills/richardwooding/file-search-on/open-source-prep)
Your own site
<a href="https://agentmods.dev/skills/richardwooding/file-search-on/open-source-prep"><img src="https://agentmods.dev/badge/skills/richardwooding/file-search-on/open-source-prep/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 open-source-prep

Your own site · 80×15
<a href="https://agentmods.dev/skills/richardwooding/file-search-on/open-source-prep"><img src="https://agentmods.dev/badge/skills/richardwooding/file-search-on/open-source-prep.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 154 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,481 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.00154 $0.01481
Opus 5 $0.00077 $0.00740
Sonnet 5 $0.00031 $0.00296
Haiku 4.5 $0.00015 $0.00148

Measured today against content hash 28a0c11bc5b1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

open-source-prep 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 today.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/audit.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/open-source-prep/SKILL.md · 78 lines

How it starts

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

Open Source Prep

Walks a repository and reports what's missing before going public. Deterministic checks live in the audit script — the agent doesn't reinvent a checklist each time.

Quick start

# 1. Audit (read-only). Prints markdown punch-list.
python .claude/skills/open-source-prep/scripts/audit.py <repo-root>

# 2. For each gap, copy the template and customise.
cp .claude/skills/open-source-prep/templates/CONTRIBUTING.md.tmpl <repo-root>/CONTRIBUTING.md

# 3. For ambiguous decisions (which license? which CoC version?), open the
#    matching reference file.

What the audit checks

Area Check
Legal LICENSE / LICENSE.md present + SPDX detection
Discoverability README.md exists, has install + usage sections, has license / build / version badges
Community CONTRIBUTING.md, CODE_OF_CONDUCT.md, SECURITY.md, CHANGELOG.md
GitHub UX .github/ISSUE_TEMPLATE/, .github/PULL_REQUEST_TEMPLATE.md, .github/dependabot.yml, .github/workflows/*.yml
Funding FUNDING.yml — repo-level, or inherited from a public <owner>/.github repo. A repo-level file overrides the default outright; there is no merge, so a per-repo copy is only right when a repo needs a different target. An absent local file with a default present is reported as satisfied, not as a gap.
Hygiene .gitignore, .editorconfig, .gitattributes
Repo metadata gh repo view — description, homepage, topics, archived, has_issues
Secret scan git history grep for .env, *.pem, *.key, credentials.json, id_rsa, common API-key patterns

The audit is non-destructive — it never writes to the repo. It produces a markdown report and exits.

What the audit does NOT check

  • Branch protection rules — requires admin perms on the repo. The audit notes that protection should be enabled for main (require PR review, require status checks, no force-push) but doesn't query for it.
  • Code quality / test coverage — out of scope; the project's existing CI handles this.
  • License compatibility of dependencies — dedicated tools (go-licenses, license-checker, cargo-deny) do this better.
  • Vulnerability scan of dependencies — Dependabot / Snyk / Renovate do this in the repo. The audit just checks that Dependabot is configured.

Read the full file on GitHub · 78 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. today Changed · +1 lines 28a0c11bc5b1
  2. 9d ago First seen · 77 lines · 154 tokens per session scan A 9c2fd97eff5b

Subscribe to this mod's changes

open-source-prep is a skill published in the GitHub repository richardwooding/file-search-on (5 stars, last pushed today), licensed MIT. It adds 154 tokens to every session and 1,481 once invoked, about $0.0008 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.

Related

Other skills, from other repositories

code-guidelines-go

Go 1.24–1.27 coding guidelines for the dimetron/pi-go AI agent runtime. Use this skill whenever writing, reviewing, or refactoring ANY Go code in pi-go. This covers idiomatic style, error handling, concurrency, project layout, testing (table-driven, fuzz, benchmarks, synctest), new stdlib usage, golangci-lint v2…

dimetron/pi-go · 124 tokens

design-review

Deep design review of Go codebase — naming, structure, consistency, interfaces, error handling. Scores each dimension and provides actionable fixes.

dimetron/pi-go · 30 tokens

vhs-e2e-gif

Record a test run, a TUI session, or any terminal command as a GIF with VHS and attach it to a GitHub PR as a release-hosted asset, never a repo commit. Use when asked to record an e2e run, demo a fix on a PR, attach a GIF or screen recording to a pull request, show a test passing visually, or produce a terminal…

dimetron/pi-go · 106 tokens

agents-md

Generate AGENTS.md files for Go, Rust, TypeScript, and Java projects. Use this skill whenever the user asks to create, scaffold, bootstrap, update, or review an AGENTS.md (or agent-instructions, CLAUDE.md, repo guide for agents) file in a codebase. Also trigger when the user says "add AGENTS.md", "make this repo…

dimetron/pi-go · 138 tokens

code-review

Run a thorough self-review pass on the most recent change.

patriceckhart/zot · 15 tokens

code-review-pi

Review code for quality, run linters, check test coverage, fix issues, and enforce gates. Save the final report to ./specs/issues/003-code-review-pi/PROMPT.md. Use before committing changes.

dimetron/pi-go · 50 tokens