Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/junghwayang/oh-my-codex/ultraqanpx skills add junghwaYang/oh-my-codex --skill ultraqagit clone --depth 1 https://github.com/junghwaYang/oh-my-codexWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/junghwayang/oh-my-codex/ultraqa)<a href="https://agentmods.dev/skills/junghwayang/oh-my-codex/ultraqa"><img src="https://agentmods.dev/badge/skills/junghwayang/oh-my-codex/ultraqa.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.00975 |
| Opus 5 | $0.00000 | $0.00487 |
| Sonnet 5 | $0.00000 | $0.00195 |
| Haiku 4.5 | $0.00000 | $0.00097 |
Grade A, and why
ultraqa scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 151 lines — stays where its author put it; the contents beside it link to each section on GitHub.
UltraQA Skill
Comprehensive quality assurance with parallel testing.
When to Use
- Full test suite execution
- Quality gates before release
- Regression testing
- Test coverage improvement
- Bug hunting sessions
Testing Pyramid
╱╲
╱ ╲
╱ E2E╲ Few, slow, high confidence
╱──────╲
╱ Integ. ╲ Some, medium speed
╱──────────╲
╱ Unit ╲ Many, fast, focused
╱──────────────╲
Test Categories
Unit Tests
describe('calculateTotal', () => {
it('should sum items correctly', () => {
expect(calculateTotal([10, 20, 30])).toBe(60);
});
it('should handle empty array', () => {
expect(calculateTotal([])).toBe(0);
});
it('should handle negative numbers', () => {
expect(calculateTotal([10, -5])).toBe(5);
});
});
Integration Tests
describe('User API', () => {
it('should create and retrieve user', async () => {
const created = await api.createUser({ name: 'Test' });
const retrieved = await api.getUser(created.id);
expect(retrieved.name).toBe('Test');
});
});
E2E Tests
test('user can complete checkout', async ({ page }) => {
await page.goto('/products');
await page.click('[data-testid="add-to-cart"]');
await page.click('[data-testid="checkout"]');
await page.fill('#email', '[email protected]');
await page.click('[data-testid="place-order"]');
await expect(page.locator('.success')).toBeVisible();
});
Quality Checks
Code Quality
□ All tests passing
□ Coverage > 80%
□ No lint errors
□ No type errors
□ No security vulnerabilities
Performance
□ Load time < 3s
□ API response < 200ms
□ No memory leaks
□ Bundle size acceptable
Accessibility
□ WCAG 2.1 AA compliant
□ Keyboard navigable
□ Screen reader compatible
□ Color contrast sufficient
Parallel Testing
┌────────────────────────────────────────┐
│ UltraQA Orchestrator │
├────────────────────────────────────────┤
│ │
│ ┌─────────┐ ┌─────────┐ ┌─────────┐ │
│ │ Unit │ │ Integ │ │ E2E │ │
│ │ Tests │ │ Tests │ │ Tests │ │
│ │ (fast) │ │ (med) │ │ (slow) │ │
│ └────┬────┘ └────┬────┘ └────┬────┘ │
│ │ │ │ │
│ └───────────┴───────────┘ │
│ │ │
│ ┌─────▼─────┐ │
│ │ Report │ │
│ │ & Merge │ │
│ └───────────┘ │
│ │
└────────────────────────────────────────┘
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 4d ago First seen · 151 lines · 0 tokens per session scan A 95d9a13c1e26
ultraqa is a skill published in the GitHub repository junghwaYang/oh-my-codex (5 stars, last pushed 6mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 975 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
testing-patterns
Testing patterns and principles. Unit, integration, mocking strategies.
js-in-html-testing
Test JS logic embedded in HTML using two-layer strategy - Python unit tests + Playwright browser integration tests.
designing-tests
Designs and implements testing strategies for any codebase. Use when adding tests, improving coverage, setting up testing infrastructure, debugging test failures, or when asked about unit tests, integration tests, or E2E testing.
test-flutter
Flutter App のテスト実行・静的解析・フォーマット・テスト記述ガイド.
check-and-test
Run lint checks (ruff for Python, Biome for TS/JS), type checks (pyright for Python, tsc for TS/JS), and the standard pytest tiers (unit + e2e + tests skipped during pre-commit). Investigates failures to determine if they are application bugs or test issues, and fixes application bugs rather than weakening tests. Does…
qa/test-strategy
测试策略和测试金字塔原则,定义单元测试、集成测试、E2E测试的分布和覆盖要求.