Apply VibeTap test suggestions to your project
Apply previously generated VibeTap test suggestions to your project. Use this after running `/vibetap` to create the suggested tests.
/plugin marketplace add devtunehq/vibetap-claude-plugin/plugin install devtunehq-vibetap@devtunehq/vibetap-claude-pluginApply previously generated test suggestions to your project.
The command accepts:
/vibetap-apply 1/vibetap-apply 1 2 3/vibetap-apply 1,2,3/vibetap-apply 1-3/vibetap-apply allIMPORTANT: First, check if the VibeTap CLI is installed:
vibetap --version
Stop and show this message:
š§ VibeTap CLI not found
Install with one command:
curl -sSL https://raw.githubusercontent.com/devtunehq/vibetap-claude-plugin/main/scripts/install.sh | bash
After installing, run /vibetap to generate suggestions, then /vibetap-apply to apply them.
Do NOT proceed without the CLI installed.
Execute the CLI to apply suggestions:
vibetap apply $ARGUMENTS
Replace $ARGUMENTS with the user's selection (the number(s) after /vibetap-apply).
If no arguments provided, run interactively:
vibetap apply
If source files have changed since suggestions were generated, the CLI will warn. Options:
/vibetapvibetap apply --force $ARGUMENTSAfter applying, show:
Applying suggestion {N}...
ā Created {file_path}
Next steps:
⢠Run tests: {test_command}
⢠Revert if needed: vibetap revert
⢠View applied: vibetap status
Suggest the appropriate test command:
pnpm vitest run {file_path}pnpm jest {file_path}pytest {file_path}go test -run {test_name}cargo test {test_name}If the user wants to undo, run:
vibetap revert
This restores original files or removes newly created test files.