# Commit

> Create a git commit for the Vision-Agents repo.

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

---


# Commit (Vision-Agents)

## Rules

- If on `main`, warn and ask whether to create a new branch first.
- Use conventional commits. Keep the subject line ≤72 chars.
- One logical change per commit. Stage files individually by name, never `git add .` / `-A`.

## Pre-commit hooks

- The repo runs ruff (check + format), mypy, trailing-whitespace and eof fixes on commit.
- Never pass `--no-verify`. If a hook modifies files, re-stage and retry. If mypy or another check fails, fix the root cause before committing.

