ultraqa

ultraqa is a skill for Claude Code, Codex from junghwaYang/oh-my-codex. It costs 0 tokens per session (975 once invoked), scanned A, original, MIT.

A broad quality-assurance workflow for testing software at several levels: unit tests for small pieces, integration tests for connected parts, and end-to-end tests for complete user journeys.

In plain words
What is it for?
Use it to run a full test suite, apply release quality gates, check regressions, improve test coverage, and search for bugs.
Why use it?
It organizes release checks and regression testing so failures can be found at the appropriate level instead of relying on one kind of test.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/junghwayang/oh-my-codex/ultraqa
Any agent
npx skills add junghwaYang/oh-my-codex --skill ultraqa
Clone the repo
git clone --depth 1 https://github.com/junghwaYang/oh-my-codex

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for ultraqa

README.md
[![agentmods](https://agentmods.dev/badge/skills/junghwayang/oh-my-codex/ultraqa.svg)](https://agentmods.dev/skills/junghwayang/oh-my-codex/ultraqa)
Your own site
<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>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 975 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 4d ago against content hash 95d9a13c1e26, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

.codex/skills/ultraqa/SKILL.md · 151 lines

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  │              │
│              └───────────┘              │
│                                         │
└────────────────────────────────────────┘

Read the full file on GitHub · 151 lines

Changes

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.

  1. 4d ago First seen · 151 lines · 0 tokens per session scan A 95d9a13c1e26

Subscribe to this mod's changes

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.