feat: handle gated HuggingFace models gracefully#4
Merged
Conversation
Add gated model awareness across the stack: - Add `gated` field to CatalogEntry; mark Gemma 3 and Llama 3.3 models - Exclude gated models from default recommendations so init --accept-defaults always picks downloadable models without HF authentication - Pre-flight token check in pull with actionable error message - Catch GatedRepoError for "has token but no license" case - Warn when gated models are explicitly added via --add - Document gated model usage in README Fixes #3 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
9 tasks
weklund
added a commit
that referenced
this pull request
Apr 4, 2026
## Summary - Adds `permissions: contents: read` to `ci.yml`, `integration-nightly.yml`, and `integration-prerelease.yml` - Resolves all 4 open CodeQL code-scanning alerts ([#1](https://github.com/weklund/mlx-stack/security/code-scanning/1), [#2](https://github.com/weklund/mlx-stack/security/code-scanning/2), [#3](https://github.com/weklund/mlx-stack/security/code-scanning/3), [#4](https://github.com/weklund/mlx-stack/security/code-scanning/4)) - Follows least-privilege principle — these workflows only need read access to checkout code and run tests - `release-please.yml` and `publish.yml` already had explicit permissions ## Test plan - [ ] CI passes on this PR (confirms `contents: read` is sufficient) - [ ] CodeQL re-scan shows alerts resolved after merge 🤖 Generated with [Claude Code](https://claude.com/claude-code) --------- 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.
Summary
gated: boolfield toCatalogEntryand marked 4 gated models (Gemma 3 4B/12B/27B, Llama 3.3 8B)init --accept-defaults) now exclude gated models so zero-config path works without HF authpulldoes a pre-flight token check for gated models with an actionable error message (license link, HF_TOKEN instructions, non-gated alternatives)GatedRepoErrorseparately for "has token but hasn't accepted license" case--addFixes #3
Test plan
ruff check)exclude_gatedfilter, pull token pre-flight check,GatedRepoErrorhandling, CLI error formatting, init gated exclusion +--addwarning🤖 Generated with Claude Code