
Commit
- 2 installs
- 8k repo stars
- Updated August 4, 2026
- getstream/vision-agents
Creates a conventional-commit git commit for the Vision-Agents repo, staging files individually and respecting pre-commit hooks.
About
Guides an agent to author a single-logical-change git commit in the Vision-Agents repo using conventional-commit style. A developer uses it when committing work, so hooks (ruff, mypy) run and files are staged by name rather than with git add .
- Enforces conventional commits with a subject line under 72 characters
- Never uses --no-verify; re-stages and retries when a pre-commit hook modifies files
Commit by the numbers
- 2 all-time installs (skills.sh)
- Ranked #498 of 733 Git & Pull Requests skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/getstream/vision-agents --skill commitAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 2 |
|---|---|
| repo stars | ★ 8k |
| Last updated | August 4, 2026 |
| Repository | getstream/vision-agents ↗ |
What it does
Creates a conventional-commit git commit for the Vision-Agents repo, staging files individually and respecting pre-commit hooks.
Files
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.