advanced-alchemy-cli
Installation
SKILL.md
CLI
Execution Workflow
- Install the CLI extra when standalone
alchemycommands are needed. - Point every command at an explicit dotted config path via
--config. - Use
init,make-migrations,upgrade, anddowngradeas the core lifecycle. - Use inspection commands such as
check,heads,history, andshow-current-revisionin CI or troubleshooting. - Use branch-management and utility commands only when the migration graph actually requires them.
Implementation Rules
- Prefer explicit config paths over implicit discovery in automation.
- Keep destructive commands such as
drop-allbehind clear environment guards. - Use
checkin CI for drift detection before deployments. - Embed the CLI into Click or Typer only when the project already has an application CLI worth extending.