plugins/open-sourcing/skills/open-sourcing/SKILL.md
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 secrets hygiene, licensing, documentation, CI, and language-specific packaging.
npx skillsauth add trailofbits/skills open-sourcingInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Prepare a repository for public release so that an outsider with no prior context can build, use, and contribute to it — and so that nothing sensitive ships with it. Work through the steps in order; the secrets audit comes first because its outcome (keeping vs. recreating the repository) affects everything after it.
bash {baseDir}/scripts/detect_org.sh
The script inspects git remotes and recent committer emails, and prints a
profile name. If it prints trailofbits, read
references/trailofbits.md now and apply its
license policy, publishing accounts, and process notes throughout the
remaining steps. If it prints generic, proceed with the generic guidance
alone. If the user says the detection is wrong, trust the user.
A repository that has ever contained secrets (API keys, credentials, client data) should not be flipped public. History rewriting is error-prone and does not reach forks, caches, or CI artifacts. The reliable fix is a fresh repository: copy the current tree over, commit, and archive the old repository privately.
gitleaks git . or trufflehog git file://. — rather than eyeballing.Reject these rationalizations — this is the one step that cannot be fixed after publication:
bash {baseDir}/scripts/check_readiness.sh
The script prints a checklist of presence indicators (README, LICENSE, CONTRIBUTING, SECURITY.md, CI, tests, semver tags, ...) and warns about tracked files that commonly contain secrets. Treat unchecked items as discussion prompts, not hard failures — a research prototype does not need everything a flagship library needs. Walk through the gaps with the user and fix the ones that matter for this project.
The README is the project's front door. Confirm it explains:
CONTRIBUTING.mdAlso add:
SECURITY.md with vulnerability-reporting instructions (a contact
address or GitHub private vulnerability reporting). For security tooling
this is table stakes.No license means not open source, regardless of visibility. Read references/licensing.md for selection criteria and mechanics. The short version:
LICENSE file, set SPDX identifiers in package metadata, state
the license in the README, and verify all three agree.github-actions so pins stay current.permissions: blocks (start from permissions: {}).zizmor .github/workflows/ and lint with actionlint..editorconfig so contributors' editors agree on whitespace basics.C: component, P: platform). See
blight's labels for a
worked example.vX.Y.Z, following semver; use
-rc.N / -pre.N suffixes for release candidates and prereleases.git tag vX.Y.Z && git push origin vX.Y.Z.Identify the project's languages from its marker files and read the matching reference for packaging, publishing, and quality tooling:
| Marker file | Reference |
|-------------|-----------|
| pyproject.toml, setup.py | references/python.md — defers to the modern-python skill for tooling |
| CMakeLists.txt, Makefile (C/C++) | references/c-cpp.md |
| Cargo.toml | references/rust.md |
| go.mod | references/go.md |
| package.json | references/javascript.md |
| Gemfile, *.gemspec | references/ruby.md |
For other ecosystems, apply the cross-cutting principles: reproducible builds from a fresh clone, CI-driven releases, trusted publishing or organization-owned accounts, and license metadata in the package manifest.
Before the visibility switch is flipped, verify from an outsider's perspective:
{baseDir}/scripts/check_readiness.sh and confirm the remaining
gaps are deliberate choices, stated to the user.Making the repository public is then a repository-settings change. Pair the release with an announcement where the organization has a process for one.
scripts/detect_org.sh — prints the organization profile
(trailofbits or generic) from git remotes and committer emailsscripts/check_readiness.sh — prints presence indicators for
release-readiness files and flags tracked files that commonly hold secretsdevelopment
Reviews a code target by launching a panel of specialist auditor agents and merging their reports. Use when asked to run a panel review.
development
Reviews the current branch's changes against its base branch as a pull request: correctness of new and modified code, test coverage for it, and documentation accuracy. Use when asked to review a branch, a diff, or a pull request.
tools
Runs an autonomous review-and-fix improvement loop over a Claude Code skill until a review comes back clean, with a cross-round findings ledger, escalation when fixes stop converging, and a mechanical scope guard. Reviews are performed by the plugin-dev skill-reviewer agent. Use to fix skill quality issues, iteratively refine a skill, or resume a loop after an escalation ('fix my skill', 'improve this skill until it passes review', 'skill improvement loop'). NOT for a one-time review — use the plugin-dev skill-reviewer agent directly.
tools
Runs an autonomous review-and-fix improvement loop over the current branch's changes until a PR review comes back clean, scoped mechanically to the directories the branch touched. Reviews are performed by an installed PR-review skill (default: pr-review-toolkit's review-pr). Use to fix review findings on a branch before opening or updating a pull request ('clean up this branch', 'fix this PR until review passes', 'run review-and-fix on my changes'). NOT for a one-time review — run the PR-review skill directly.