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.
npx agentmods add commands/colossus-lab/openarg_backend/new-migrationgit clone --depth 1 https://github.com/colossus-lab/openarg_backendWrote 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.
[](https://agentmods.dev/commands/colossus-lab/openarg_backend/new-migration)<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>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.
| Model | Per session | Once 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 |
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.
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)
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.
- 4d ago First seen · 86 lines · 0 tokens per session scan A af130768a93f
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.
Other commands, from other repositories
git
Git operations with intelligent commit messages and workflow optimization.
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.