fix(ce-update): use correct marketplace name in cache path#566
Merged
Conversation
The ce-update skill was looking at `${CLAUDE_PLUGIN_ROOT}/cache/every-marketplace/compound-engineering/`
for the cached plugin version, but the actual marketplace name registered in
`.claude-plugin/marketplace.json` is `compound-engineering-plugin`. Claude Code
caches marketplaces under their registered name, so the skill never found the
cache and always reported "no marketplace cache found".
Also align the `gh release list --repo` casing (`EveryInc`) with the canonical
owner casing used elsewhere in the repo.
Fixes #556
https://claude.ai/code/session_01JjmKL3Q2hp7VziFvUQ7Dqm
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.
The ce-update skill was looking at
${CLAUDE_PLUGIN_ROOT}/cache/every-marketplace/compound-engineering/for the cached plugin version, but the actual marketplace name registered in
.claude-plugin/marketplace.jsoniscompound-engineering-plugin. Claude Codecaches marketplaces under their registered name, so the skill never found the
cache and always reported "no marketplace cache found".
Also align the
gh release list --repocasing (EveryInc) with the canonicalowner casing used elsewhere in the repo.
Fixes #556