Help us improve
Share bugs, ideas, or general feedback.
From micro-skill-pipeline
Temporarily use the original (unconverted) version of a skill, bypassing its micro-skill pipeline.
npx claudepluginhub stevesolun/micro-skills --plugin micro-skill-pipelineHow this command is triggered — by the user, by Claude, or both
Slash command
/micro-skill-pipeline:skill-bypass <skill-name>This command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
Bypass the micro-skill pipeline for "$ARGUMENTS" and use the original skill instead.
## Steps
1. Read `${CLAUDE_PLUGIN_DATA}/registry.json` to find the entry for "$ARGUMENTS".
If not found: "No converted pipeline exists for '$ARGUMENTS'. Nothing to bypass."
2. Get the `sourcePath` from the registry entry.
If the file no longer exists: "Original skill file not found at <sourcePath>."
3. Read and follow the original skill at `sourcePath` directly, without the gated pipeline.
4. After completion, remind the user: "You used the original skill without gates. Run /skill-check $ARGUMENT...Share bugs, ideas, or general feedback.
Bypass the micro-skill pipeline for "$ARGUMENTS" and use the original skill instead.
Read ${CLAUDE_PLUGIN_DATA}/registry.json to find the entry for "$ARGUMENTS".
If not found: "No converted pipeline exists for '$ARGUMENTS'. Nothing to bypass."
Get the sourcePath from the registry entry.
If the file no longer exists: "Original skill file not found at ."
Read and follow the original skill at sourcePath directly, without the gated pipeline.
After completion, remind the user: "You used the original skill without gates. Run /skill-check $ARGUMENTS to verify the output against the pipeline's gate questions."