feat(skills): guide install when a matched workflow isn't installed#1647
Merged
Conversation
Add a routing rule to the /hyperframes entry skill: after picking a workflow, if its skill isn't available to the agent, tell the user to install it rather than silently falling back to a guess. Covers the targeted install (`--skill <name>`) and the install-everything one-shot (`--all`), then re-read the workflow's skill and continue. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
miguel-heygen
approved these changes
Jun 22, 2026
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.
What
Adds an "If the matched workflow isn't installed" rule to the
/hyperframesentry skill. After routing picks a workflow, the agent checks whether that workflow's skill is actually available; if it isn't, it tells the user to install it instead of silently falling back to a guess, then re-reads the skill and continues.Why
During the skills launch, existing users won't yet have newly published workflow skills (e.g.
/pr-to-video,/product-launch-video) installed. The entry skill is the natural single place to detect that and point the user at the one install command.What it says
npx skills add heygen-com/hyperframes --skill <workflow-name>(bare name, no leading/)npx skills add heygen-com/hyperframes --all(core + every workflow, skips the picker)--allis deliberate for the "everything" path: barenpx skills add heygen-com/hyperframesopens an interactive picker in a human terminal rather than installing everything, so it is not a reliable "all at once" command.Scope
Skill-content only — one section added to
skills/hyperframes/SKILL.md, no code changes. oxfmt + commitlint clean.🤖 Generated with Claude Code