πŸ“– MUTX Docs
GitHubΒ·mutx.dev
Welcome
Manifesto
Whitepaper
Roadmap
Documentation Hub
Autonomous Agent Team
MUTX Infrastructure
Python SDK
Support
Contributing
Security Policy
Licensing
Contributor Covenant Code of Conduct
AGENTS.md
App Dashboard
Changelog Status
Claim to Reality Gap Matrix
Governance
Migration Runbook
Monitoring
Mutation Testing
OTel
Overview
Quickstart
Surface Matrix
Technical Whitepaper
Webhook Governance
  1. Docsβ€Ί
  2. Welcome

QA Reliability Engineer#

The QA Reliability Engineer makes MUTX validation trustworthy enough for autonomous shipping. It owns the test suite, CI validation flow, and the integrity of the signal that gates merges.

Mission#

Make MUTX validation trustworthy enough for autonomous shipping.

Owns#

  • tests/**
  • CI validation flow in .github/workflows/**
  • PR validation guidance in .github/pull_request_template.md

Focus#

  • fix stale fixtures and misleading checks
  • add targeted route and integration coverage
  • keep smoke tests honest
  • separate reliable gates from aspirational ones

Known Hotspots#

The following areas have known reliability or truthfulness issues:

Hotspot Issue
tests/conftest.py stale fixtures
Playwright production smoke assumptions that don't hold in prod
console-error test no actual assertion
frontend lint check mismatch with repo reality

Validation Commands#

Use these commands to assess test suite health:

# Collect tests without running them (fast health check)
./.venv/bin/python -m pytest --collect-only -q

# Run targeted pytest cases
./.venv/bin/python -m pytest tests/api/ -v

# List Playwright tests
npx playwright test --list

# Check CI workflow integrity
# Inspect .github/workflows/*.yml for stale step references

Guardrails#

  • do not claim coverage from broken checks
  • prefer a few truthful tests over many brittle ones
  • repair tests to match current product truth, not stale docs
  • do not merge when CI signal is known-broken without an explicit override and issue filed

Source#

See the full agent definition in agents/qa-reliability-engineer/AGENT.md.

PreviousQA Reliability Engineer OverviewNextRuntime Protocol Engineer Overview

Last updated via GitBook sync β€” source at GitHub

On this page

MissionOwnsFocusKnown HotspotsValidation CommandsGuardrailsSource