Add command wrapper skills - #63
Closed
Avg8888 wants to merge 1 commit into
Closed
Conversation
Author
|
Closing this PR in favor of a feature request issue. |
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 Problem This Solves
Some harnesses can install and expose skills but do not have a prompt/slash-command primitive. The bundled visual-explainer workflows currently live primarily as command templates, which makes
/diff-review,/plan-review,/generate-web-diagram, and the other shortcuts less portable outside command-aware harnesses.AI-assisted PR.
Why This Change Was Made
This adds user-invoked skill wrappers for each bundled command workflow:
diff-reviewfact-checkgenerate-slidesgenerate-visual-plangenerate-web-diagramplan-reviewproject-recapEach wrapper loads the main
visual-explainerskill, preserves the existing workflow instructions, and setsdisable-model-invocation: trueso the workflows are available on demand without expanding the model's automatic skill list. The package metadata, Claude plugin manifest, legacy Pi installer, and harness docs now advertise the command wrapper skills alongside the existing prompt templates.User Impact
Users on skill-only harnesses can invoke the same workflows as skills instead of manually finding command markdown. Existing command-template installs remain documented for harnesses that support prompts/slash commands.
Evidence
name,description,disable-model-invocation: true,user-invocable: true) and reference the main skill.disable-model-invocation: true.python3 -m json.tool package.jsonandpython3 -m json.tool plugins/visual-explainer/.claude-plugin/plugin.json.install-pi.shwith a temporaryHOME, confirming it installs the main skill, a command wrapper skill, and a prompt template.