new-migration

new-migration is a command for Claude Code from colossus-lab/openarg_backend. It costs 0 tokens per session (671 once invoked), scanned A, original, MIT.

A guided command for creating an Alembic database migration, which records changes to a database’s structure.

In plain words
What is it for?
Use it when adding or changing an entity, table, columns, or other database structure in a Python application.
Why use it?
It keeps a schema change aligned across the domain model, SQLAlchemy database mapping, and migration files.

Command for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/colossus-lab/openarg_backend/new-migration
Clone the repo
git clone --depth 1 https://github.com/colossus-lab/openarg_backend

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for new-migration

README.md
[![agentmods](https://agentmods.dev/badge/commands/colossus-lab/openarg_backend/new-migration.svg)](https://agentmods.dev/commands/colossus-lab/openarg_backend/new-migration)
Your own site
<a href="https://agentmods.dev/commands/colossus-lab/openarg_backend/new-migration"><img src="https://agentmods.dev/badge/commands/colossus-lab/openarg_backend/new-migration.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 671 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.00671
Opus 5 $0.00000 $0.00336
Sonnet 5 $0.00000 $0.00134
Haiku 4.5 $0.00000 $0.00067

Measured 4d ago against content hash af130768a93f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

new-migration scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/commands/new-migration.md · 86 lines

How it starts

The opening of the file, as written. The whole thing — 86 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Create new migration: $ARGUMENTS

Create an Alembic migration for the specified schema change. Follow these steps:

1. Create or modify the domain entity

Edit or create in src/app/domain/entities/:

from dataclasses import dataclass, field
from src.app.domain.entities.base import BaseEntity

@dataclass
class NewEntity(BaseEntity):
    field1: str = ""
    field2: int = 0
    # BaseEntity already provides: id (UUID), created_at, updated_at

Reference: src/app/domain/entities/dataset.py, src/app/domain/entities/user_query.py.

2. Create the SQLAlchemy mapping

Create or edit in src/app/infrastructure/persistence_sqla/mappings/:

from sqlalchemy import Table, Column, String, Integer, DateTime, ForeignKey, Text
from sqlalchemy.dialects.postgresql import UUID

new_table = Table(
    "new_table",
    metadata,
    Column("id", UUID(as_uuid=True), primary_key=True),
    Column("field1", String(255), nullable=False),
    Column("field2", Integer, default=0),
    Column("created_at", DateTime(timezone=True), server_default=func.now()),
    Column("updated_at", DateTime(timezone=True), onupdate=func.now()),
)

# Mapper registration in start_mappers()
mapper_registry.map_imperatively(NewEntity, new_table)

Reference: check existing mappings in src/app/infrastructure/persistence_sqla/mappings/.

3. Generate the migration

make db.revision msg="$ARGUMENTS"

This runs alembic revision --autogenerate -m "$ARGUMENTS".

The file is created in src/app/infrastructure/persistence_sqla/alembic/versions/.

4. Review and adjust the migration

Open the generated file and verify:

  • upgrade(): operations are correct (CREATE TABLE, ADD COLUMN, etc.)
  • downgrade(): rollback is correct (DROP TABLE, DROP COLUMN, etc.)
  • Necessary indexes are included
  • If using pgvector: op.execute('CREATE EXTENSION IF NOT EXISTS vector') in upgrade

5. Apply the migration

make db.migrate

6. Create the repository (if new table)

Read the full file on GitHub · 86 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 86 lines · 0 tokens per session scan A af130768a93f

Subscribe to this mod's changes

new-migration is a command published in the GitHub repository colossus-lab/openarg_backend (144 stars, last pushed yesterday), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 671 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.