adr
Write an Architecture Decision Record documenting a significant technical decision.
Generate a database migration file for schema changes.
$ npx -y skills add rohitg00/awesome-claude-code-toolkit --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/create-migrationContext preview
What this command does when you run it.
Generate a database migration file for schema changes.
Generate a database migration file for schema changes.
1. Ask the user for the migration description (e.g., "add users table", "add email index") 2. Detect the database and migration tool: Prisma, Knex, TypeORM, Alembic, Django, Rails 3. Analyze the requested schema change: new table, alter column, add index, etc. 4. Generate the up migration with the schema change SQL or ORM commands 5. Generate the corresponding down migration to reverse the change 6. Add proper column types, constraints, defaults, and nullability 7. Include index creation for foreign keys and frequently queried columns 8. Add data migration logic if the schema change requires data transformation 9. Validate the migration SQL syntax for the target database engine 10. Name the migration file with timestamp prefix and descriptive slug 11. Save the migration to the correct migrations directory 12. Report the created migration path and provide a preview of the SQL
The most comprehensive toolkit for Claude Code -- 135 agents, 35 curated skills (+400,000 via SkillKit), 42 commands, 176+ plugins, 20 hooks, 15 rules, 7 templates, 15 MCP configs, 26 companion apps, 53 ecosystem entries, and more.
Repo: rohitg00/awesome-claude-code-toolkit
Write an Architecture Decision Record documenting a significant technical decision.
Conduct a structured design review of a module, feature, or system component.
Create a structured implementation plan for the requested feature or change.