Move model_tier to public sidecar, drop output-schema from public skill#84
Merged
Move model_tier to public sidecar, drop output-schema from public skill#84
Conversation
Part of the public/private split for SkillShelf's Run experience. Two
decisions land together:
1. model_tier is an author declaration ("this skill needs the high tier
to produce good output") and belongs in the public skillshelf.yaml
sidecar alongside category, level, primitive, and platforms. Added
to map-pdp-structure's sidecar.
2. Output JSON schemas are SkillShelf platform enforcement, not part of
the skill's portable definition. They live in the private
skillshelf-site repo going forward. Removed from the public skill
directory. Claude-native runs (Claude Code, cowork, ZIP download)
never read this file for enforcement anyway; the SKILL.md instructions
and example-output.md carry the structural intent.
No behavior change for merchants running the skill natively in Claude.
The SkillShelf platform will load schemas from the private repo when
the Run experience ships.
Co-Authored-By: Claude Opus 4.7 (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
Part of the public/private split for SkillShelf's Run experience.
skillshelf.yamlsidecar. It's an author declaration about what quality tier the skill needs; that intent should travel with the skill and is visible to anyone who downloads it.references/output-schema.yaml) are SkillShelf platform enforcement, not part of the portable skill. Deleted from the public skill directory. Will live in the privateskillshelf-siterepo going forward.Why
Context from the architecture discussion:
output-schema.yamland enforce it (no provider-level schema enforcement in native Claude runtime). Removing the file has zero behavior impact on native runs.Files changed
skills/map-pdp-structure/skillshelf.yaml— addedmodel_tier: highskills/map-pdp-structure/references/output-schema.yaml— deleted (moving to private repo)Follow-up
Sibling PR in
skillshelf-siteadds the schema atsite/skill-configs/schemas/map-pdp-structure.yaml, removesmodel_tierfrom the private execution config, updatesskill-meta.tsZod schemas, and bumps the submodule pointer to this PR's merge commit.