Three Claude Code Use Cases for Bugster
Bugster provides specialized Claude Code integrations to enhance your development workflow:Browser Testing Skill
Plugin installation - Enable Claude Code to interface with a browser for interactive testing and debugging.
Test Generation
Manual activation - Generate comprehensive test specifications following Bugster’s YAML structure and best practices.
Test Update
Manual activation - Update existing test specifications based on code changes and new requirements.
| Integration | When to Use | Activation | Purpose |
|---|---|---|---|
| Browser Testing Skill | Interactive browser testing | Plugin installation | Interface with browser for live testing |
| Test Generation | Building test suites | Manual (@BUGSTER_GENERATE) | Create comprehensive test specifications |
| Test Update | Maintaining tests | Manual (@BUGSTER_UPDATE) | Update existing tests after code changes |
Browser Testing Skill
Enable Claude Code to seamlessly interface with a browser using Bugster’s AI browser testing framework. This skill allows Claude Code to perform interactive browser testing directly from the editor.Installation
Manual Installation
If you prefer using the interactive interface:Select and install
- Press enter to select the
browser-testingplugin - Hit enter again to select Install now
What It Does
The Browser Testing Skill enables Claude Code to:- Launch and control browser instances directly from the editor
- Perform interactive testing and debugging
- Execute browser automation tasks
- Test web applications in real-time
View the official plugin: Bugster Browser Testing Skill
Test Generation Rule
This rule provides Claude Code with context to properly generate Bugster test specifications following the required YAML structure and best practices.Installation
Install the official test generation rule using the Bugster CLI:BUGSTER_GENERATE.md in your .claude/rules/ directory.
View the official rule: Claude Code Test Generation Rule
How to Use
Reference the rule in your Claude Code chat to activate it:What It Does
- Generates comprehensive test specifications in proper YAML format
- Follows Bugster naming conventions and file structure
- Creates tests in
.bugster/tests/with correct hierarchy - Validates all required fields are present
- Limits generation to avoid test duplication
Test Update Rule
This rule helps you update existing test specifications when your code changes or requirements evolve.Installation
Install the official test update rule using the Bugster CLI:BUGSTER_UPDATE.md in your .claude/rules/ directory.
View the official rule: Claude Code Test Update Rule
How to Use
Reference the rule in your Claude Code chat to activate it:What It Does
- Updates existing test specifications to match code changes
- Maintains test structure while adapting to new requirements
- Preserves test intent while updating implementation details
- Ensures tests stay synchronized with your codebase
- Follows the same YAML standards as test generation
Combining Test Generation and Update Rules
For optimal workflow, use both rules together:Setup
Install the official rules using the Bugster CLI:This installs both
BUGSTER_GENERATE.md and BUGSTER_UPDATE.md in your .claude/rules/ directory.Development Flow
- Use Test Generation rule to create comprehensive test suites for new features
- Use Test Update rule when refactoring or updating existing features
- Reference the rules with
@BUGSTER_GENERATEor@BUGSTER_UPDATEin your Claude Code chat
