Help us improve
Share bugs, ideas, or general feedback.
From slim-rebranding
Detects project type and adds appropriate open source licenses (Apache 2.0, MIT) with optional NASA JPL institutional copyright headers.
npx claudepluginhub nasa-ammos/slim --plugin slim-changelogHow this skill is triggered — by the user, by Claude, or both
Slash command
/slim-rebranding:slim-licenseThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill helps you add appropriate open source licenses to your project. It supports both standard open source licenses and NASA JPL variants with institutional copyright headers.
Guides open source license selection via decision tree, compares licenses, reviews project compliance, and drafts LICENSE/NOTICE files.
Scans repository dependencies and assets for license compatibility, producing a per-package verdict table for commercial use readiness.
Guides open source license compliance: evaluates dependencies, analyzes compatibility between licenses, tracks obligations, and supports attribution and workflows for distribution.
Share bugs, ideas, or general feedback.
This skill helps you add appropriate open source licenses to your project. It supports both standard open source licenses and NASA JPL variants with institutional copyright headers.
First, check if a LICENSE file already exists in the repository root:
ls -la LICENSE*
If a license exists, ask the user if they want to replace it or keep it.
Ask the user:
Which license would you like to use?
Is this a NASA JPL project?
Based on the user's choices, copy the appropriate license file from the assets directory:
assets/LICENSE-APACHE-JPLassets/LICENSE-MIT-JPLassets/LICENSE-APACHEassets/LICENSE-MITCopy the selected file to the repository root as LICENSE:
cp assets/LICENSE-[TYPE] LICENSE
Remind the user to:
Choose Apache 2.0 when:
Choose MIT when:
Use JPL variant when:
LICENSE-APACHE: Standard Apache 2.0 LicenseLICENSE-APACHE-JPL: Apache 2.0 with JPL/Caltech copyrightLICENSE-MIT: Standard MIT LicenseLICENSE-MIT-JPL: MIT with JPL/Caltech copyright