advanced-alchemy-repositories

- Choose the base repository class that matches the runtime: SQLAlchemyAsyncRepository , SQLAlchemySyncRepository , or a slug or query variant.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "advanced-alchemy-repositories" with this command: npx skills add alti3/litestar-skills/alti3-litestar-skills-advanced-alchemy-repositories

Repositories

Execution Workflow

  • Choose the base repository class that matches the runtime: SQLAlchemyAsyncRepository , SQLAlchemySyncRepository , or a slug or query variant.

  • Set model_type immediately and keep repositories model-specific.

  • Use built-in filters and list_and_count() for list endpoints instead of reimplementing pagination logic.

  • Use bulk helpers for inserts, updates, upserts, and deletes when the workload is batch-shaped.

  • Keep transaction ownership outside the repository unless the framework integration explicitly handles commit behavior.

Implementation Rules

  • Keep repositories focused on persistence and query composition, not HTTP contracts.

  • Prefer repository subclasses over duplicated ad hoc helper functions spread across handlers.

  • Reach for query repositories only when custom SQL or aggregation work is materially different from standard CRUD.

  • Keep loader options explicit so relationship behavior is predictable.

Example Pattern

from advanced_alchemy.repository import SQLAlchemyAsyncRepository

class PostRepository(SQLAlchemyAsyncRepository[Post]): model_type = Post

Validation Checklist

  • Confirm the repository type matches the session type.

  • Confirm model_type points at the intended mapped class.

  • Confirm list filters, counts, and pagination stay consistent under real data.

  • Confirm bulk operations are tested against the target database dialect.

Cross-Skill Handoffs

  • Use advanced-alchemy-modeling before defining repositories.

  • Use advanced-alchemy-services when handlers need schema conversion or domain rules.

  • Use advanced-alchemy-routing or a framework skill when repository methods are exposed over HTTP.

Advanced Alchemy References

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

litestar-responses

No summary provided by upstream source.

Repository SourceNeeds Review
General

litestar-middleware

No summary provided by upstream source.

Repository SourceNeeds Review
General

litestar-caching

No summary provided by upstream source.

Repository SourceNeeds Review
General

litestar-routing

No summary provided by upstream source.

Repository SourceNeeds Review