# Aiox Commit

> Create a local conventional commit for AIOX work. Never pushes. Use when: committing, /aiox-commit, or local git commit.

- Skill: `synkraai/aiox-commit` (Agent Skill)
- Install (CLI): `npx skillmds@latest add synkraai/aiox-commit`
- Raw SKILL.md: https://api.skillmd.com/api/skills/synkraai/aiox-commit/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-commit

---


# AIOX Local Commit

## Steps

1. `git status` and `git diff` (and `git diff --staged`).
2. Stage only relevant files (never force-add secrets).
3. Commit with conventional message + story id when known:

```text
feat: short description [Story X.Y]
fix: short description [Story X.Y]
docs: ...
test: ...
chore: ...
```

4. Do **NOT** `git push`. Tell the user to activate `/aiox-devops` for push/PR.

## Forbidden

- `git push`, `--force`, `git commit --no-verify` to bypass gates
- Amending published commits without explicit user request

