What problem does it solve? Releasing a private project publicly risks leaking secrets, credentials, PII, and internal references. This Skill automates a three-stage pipeline that forks the project, verifies it is clean, and generates all the packaging files needed for a public GitHub release. ## Core Features & Use Cases - Secret Stripping Fork: Copies the project while excluding .git, node_modules, and virtual environments, strips credentials, and generates a .env.example file. - Sanitization Verification: Runs six scan categories (secrets, PII, internal references, dangerous files, configuration completeness, git history) and produces a PASS/FAIL report, with up to three automatic fix-and-rescan retries. - Release Packaging: Generates CLAUDE.md, an executable setup.sh, README.md, LICENSE, CONTRIBUTING.md, and GitHub issue templates, then optionally publishes via the gh CLI only after explicit user approval. - Use Case: You have a private SaaS repo you want to open source. Run the fork command, review the sanitization report, and publish a clean public repository with complete documentation in one workflow. ## Quick Start Ask the AI to open source this project by running /opensource fork on your project directory and choosing an MIT license.