원클릭으로
migrate
Run database or schema migrations — up, down, rollback, status, or create a new migration. Reads brain/build.md for migration commands.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run database or schema migrations — up, down, rollback, status, or create a new migration. Reads brain/build.md for migration commands.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Auto-configure AGENTS.md and brain/ knowledge docs for a new project. Use when setting up Brain Bootstrap in a new repository. Discovers the codebase, fills in templates, and writes project-specific configuration.
Use before any new feature, component, or behavioral change — when you need to explore requirements and design before writing code. Hard gate — no code until design is approved.
Build the project and verify it compiles cleanly. Use after making changes to confirm nothing is broken before running tests. Reads the build command from brain/build.md.
Activate safety mode — review every destructive command before running. Use before working on production infrastructure, migration scripts, or any task where a typo could be catastrophic.
Generate a user-facing changelog from git commits — categorize, filter noise, translate to user language. Pass a tag or date as argument (e.g. "$changelog v1.0.0" or "$changelog 2026-01-01").
Save session state before context gets full or before ending. Writes current task state, branch, and loaded docs to brain/tasks/todo.md so the next session can resume cleanly.
| name | migrate |
| description | Run database or schema migrations — up, down, rollback, status, or create a new migration. Reads brain/build.md for migration commands. |
Run database/schema migrations in non-interactive mode.
$migrate up # Run pending migrations
$migrate down # Roll back last migration
$migrate rollback # Same as down
$migrate status # Show migration status
$migrate create name # Create a new migration file
Read brain/build.md for the actual migration commands configured for this project.
| Argument | Action |
|---|---|
up or migrate | {{MIGRATE_UP_CMD}} |
down or rollback | {{MIGRATE_DOWN_CMD}} |
status | {{MIGRATE_STATUS_CMD}} |
create <name> | {{MIGRATE_CREATE_CMD}} <name> |
up → verify → run down → run up againsnake_case, scoped by table, no redundant prefixes