diff --git a/CHANGELOG.md b/CHANGELOG.md index cc51289..9782f46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ ## [Unreleased] +### Fixed — the Claude Code plugin declared the wrong license + +- `claude-code/signetry/.claude-plugin/plugin.json` declared `"license": "MIT"` + while the project is **All Rights Reserved**. Left as-is, the plugin directory + arguably shipped under MIT terms — i.e. granted rights the rest of the project + reserves. Now `"Proprietary — All Rights Reserved"`, matching + `signetry-core`'s `pyproject.toml`. +- There is no `LICENSE` file in this repo and GitHub detects no license, so this + declaration was the only MIT claim; nothing else needed changing. + ### Added — a 60-second quickstart in every integration README - A consistent `## Quickstart (60 seconds)` block at the top of `codex/`, `cursor/`, diff --git a/claude-code/signetry/.claude-plugin/plugin.json b/claude-code/signetry/.claude-plugin/plugin.json index 3f9004c..bde7778 100644 --- a/claude-code/signetry/.claude-plugin/plugin.json +++ b/claude-code/signetry/.claude-plugin/plugin.json @@ -8,5 +8,5 @@ }, "homepage": "https://github.com/Signetry/plugins", "repository": "https://github.com/Signetry/plugins", - "license": "MIT" + "license": "Proprietary — All Rights Reserved" }