Git Workflow

AMIGA git commit and workflow conventions Use when this capability is needed.

tomevault-io Updated

File contents

Commit Messages

Start with verb: Add, Fix, Update, Refactor Be specific: "Fix null pointer in auth.py:42" not "Fix bug"

Never Commit

  • .env files
  • data/* (runtime state)
  • logs/* (application logs)
  • pycache/, *.pyc

Always Commit After Code Changes

Agents must commit after file modifications to prevent git dirty state blocking.

Pre-commit Hooks

Installed: black, isort, ruff, bandit, pytest, secret detection Run manually: pre-commit run --all-files


Source: mjfuentes/amiga — distributed by TomeVault.

tomevault-io/skills-registry/tree/main/mjfuentes--amiga--git-workflow commit c9740a34b3

Frequently asked questions

npx skillmds@latest add tomevault-io/git-workflow-26