ultraqalisted
Install: claude install-skill Rheinmir/skills-kit
# UltraQA Skill
[ULTRAQA ACTIVATED - AUTONOMOUS QA CYCLING]
## Overview
You are now in **ULTRAQA** mode - an autonomous QA cycling workflow that runs until your quality goal is met.
**Cycle**: qa-tester → architect verification → fix → repeat
## Goal Parsing
Parse the goal from arguments. Supported formats:
| Invocation | Goal Type | What to Check |
|------------|-----------|---------------|
| `/oh-my-claudecode:ultraqa --tests` | tests | All test suites pass |
| `/oh-my-claudecode:ultraqa --build` | build | Build succeeds with exit 0 |
| `/oh-my-claudecode:ultraqa --lint` | lint | No lint errors |
| `/oh-my-claudecode:ultraqa --typecheck` | typecheck | No TypeScript errors |
| `/oh-my-claudecode:ultraqa --custom "pattern"` | custom | Custom success pattern in output |
If no structured goal provided, interpret the argument as a custom goal.
## Cycle Workflow
### Cycle N (Max 5)
1. **RUN QA**: Execute verification based on goal type
- `--tests`: Run the project's test command
- `--build`: Run the project's build command
- `--lint`: Run the project's lint command
- `--typecheck`: Run the project's type check command
- `--custom`: Run appropriate command and check for pattern
- `--interactive`: Use qa-tester for interactive CLI/service testing:
```
Task(subagent_type="oh-my-claudecode:qa-tester", model="sonnet", prompt="TEST:
Goal: [describe what to verify]
Service: [how to start]
Test cases: [specific scenarios to verify]")