# Aiox Quality Gates

> Run AIOX quality gates (lint, typecheck, test, pre-push). Use before commit/push, when checking work quality, or /aiox-quality-gates.

- Skill: `synkraai/aiox-quality-gates` (Agent Skill)
- Install (CLI): `npx skillmds@latest add synkraai/aiox-quality-gates`
- Raw SKILL.md: https://api.skillmd.com/api/skills/synkraai/aiox-quality-gates/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: synkraai (https://skillmd.com/u/synkraai)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/synkraai/aiox-quality-gates

---


# AIOX Quality Gates

## Required local gates

```bash
npm run lint
npm run typecheck
npm test
```

Optional / pre-push:

```bash
npm run build
# CodeRabbit when available (see coderabbit skill / WSL notes)
```

## Agent rules

- @dev: run gates before marking story ready for review.
- @qa: gates are necessary but not sufficient — still do AC + architecture review.
- @devops: MUST run pre-push gate before any push/PR.

## Failures

Fix root cause. Do not use `--no-verify` or skip hooks to force green.


