reproduce
Systematically reproduce bugs in a controlled environment
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Systematically reproduce bugs in a controlled environment
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Top-level workflow controller that manages phase transitions for OCMUI bug resolution
Root cause analysis for bugs
Create PR description and recommend Jira updates
Implement bug fix following UHC Portal standards
Create draft pull request
Bug scrubbing and triage for OCMUI Interruption Catcher duties
| name | reproduce |
| description | Systematically reproduce bugs in a controlled environment |
Systematically reproduce the bug to confirm it exists and document the exact conditions under which it occurs. This establishes a baseline for diagnosis and verification.
Extract key information:
For local reproduction:
yarn install if dependencies need updatingyarn startFor staging reproduction:
Follow the reported steps exactly:
Try variations to understand boundaries:
Document which variations reproduce the bug and which don't.
Reduce steps to the minimum required:
Based on reproduction, confirm or adjust priority:
Create artifacts/bugfix/reports/reproduction-{issue-key}.md:
# Bug Reproduction Report: {Issue Key}
## Bug Summary
- **Issue**: {OCMUI-XXXX}
- **Title**: {bug title}
- **Reporter**: {name}
- **Environment**: {browser, OS, etc.}
## Reproduction Steps
### Minimal Steps
1. {Step 1}
2. {Step 2}
3. {Step 3}
**Expected Result**: {what should happen}
**Actual Result**: {what actually happens}
### Environment Details
- **Browser**: {Chrome 120, Firefox 115, etc.}
- **Application**: {local dev / staging / production}
- **User Role**: {admin, viewer, etc.}
- **Cluster Type**: {ROSA, OSD-AWS, etc.}
## Reproduction Success
- [ ] Reproduced locally
- [ ] Reproduced on staging
- [ ] Reproduced in multiple browsers
- [ ] Identified minimal steps
## Observations
### Console Errors
```
{paste any console errors}
```
### Network Errors
{any failed API calls, 404s, 500s, etc.}
### Visual Issues
{describe any UI problems: missing elements, misalignment, incorrect styling}
## Variations Tested
| Variation | Result |
|-----------|--------|
| Chrome | {Reproduced / Not reproduced} |
| Firefox | {Reproduced / Not reproduced} |
| Different cluster type | {Reproduced / Not reproduced} |
| Different user role | {Reproduced / Not reproduced} |
## Severity Assessment
**Confirmed Priority**: {Blocker / Critical / Major / Normal / Minor}
**Justification**: {why this priority level is appropriate}
## Unable to Reproduce
{If you cannot reproduce, document:
- What you tried
- What might be different from reporter's environment
- What additional information is needed
}
## Next Steps
{Recommend /diagnose for root cause analysis, or return to /scrub if unable to reproduce}
After generating the reproduction report, re-read .claude/skills/controller/SKILL.md and return control to the controller for next step recommendations.
artifacts/bugfix/reports/reproduction-{issue-key}.md — Complete reproduction reportAfter running this phase: