원클릭으로
database
SQLAlchemy ORM patterns, Alembic migrations, database session management
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
SQLAlchemy ORM patterns, Alembic migrations, database session management
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | database |
| description | SQLAlchemy ORM patterns, Alembic migrations, database session management |
backend/app/models/db: Session = Depends(get_db)next(get_session()) — use Depends patternrun_migrations()cd backend && uv run alembic revision --autogenerate -m "description"backend/alembic/versions/Base.metadata.create_all() in application code — let Alembic handle itsqlite:///./str_adventures.dbDATABASE_URL env var.db or .sqlite filesTriggers when the agent makes technology selections, architectural pattern choices, or security/deployment strategy decisions. Covers ADR creation and conventions.
Triggers when the agent creates or modifies AI agents, registers tools, or changes fallback logic. Covers Microsoft Agent Framework SDK patterns, singleton client, and thread management.
Triggers when the agent modifies backend API routes, Pydantic models, or request/response types; when frontend TypeScript shows type errors against api-client/; or when openapi.json or schema.d.ts need regeneration. Covers the openapi-typescript generation workflow.
Releases a new version by determining bump type from conventional commits, running lint and test checks, tagging, pushing, and creating a GitHub release. Use when ready to cut a release from main.