Conversation
…l text
GitHub's Licensee detector returns NOASSERTION on the short-form notice,
which cascades to Glama ("license - not found" red mark on
https://glama.ai/mcp/servers/true-alter/alter-identity). Replacing with
the canonical full Apache-2.0 body so Licensee pattern-matches and
downstream indexers (Glama, npm, pkg.go.dev) report the correct SPDX id.
Copyright in package.json ("license": "Apache-2.0") unchanged.
Acted-By: ~blake
Drafted-With: ~cc-opus-4-6
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Previously no CI existed. Branch protection on `main` now requires these three contexts: - Typecheck (tsc) - Test (vitest) - Build (tsup) Matches scripts already declared in `package.json`. No lockfile in this mirror so `npm install` (not `npm ci`) + cache removed. Acted-By: ~blake Drafted-With: ~cc-opus-4-6 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
https://glama.ai/mcp/servers/true-alter/alter-identityshowed a red license - not found mark. Root cause:LICENSEheld only the short-form Apache notice, so GitHub's Licensee detector returnedNOASSERTION— Glama mirrors that API field. Also: repo had zero CI, so branch protection could not require any status check.What
Two commits on one branch:
LICENSE— replace short-form notice with full canonical Apache-2.0 body (11358 bytes) pulled fromapache.org/licenses/LICENSE-2.0.txt.package.jsonalready declares"license": "Apache-2.0"— unchanged..github/workflows/ci.yml— three jobs on push/PR tomain:Typecheck (tsc),Test (vitest),Build (tsup). Matches thetypecheck/test/buildscripts already inpackage.json. Usesnpm install(no lockfile present in this mirror).Branch protection on
mainupdated separately to require all three contexts plus mirror thetrue-alter/alterposture (enforce_admins: true, no force-push, no deletion, conversation resolution required).Test plan
gh api repos/true-alter/alter-identity --jq .license.spdx_idreturnsApache-2.0(notNOASSERTION)🤖 Generated with Claude Code