What problem does it solve?
This Skill provides a blueprint for building a consistent, testable Backend.AI service layer, standardizing CRUD-like operations, Actions, Processors, and repository interactions to reduce boilerplate and improve maintainability.
Core Features & Use Cases
- Standard Operations: create, get, search, update, delete, purge, plus batch variants.
- Action-Result and Processor Integration: define immutable actions, action results, and orchestrating processors for reliable workflows.
- API Alignment: clear patterns for service methods, repository calls, and testability to simplify REST/GraphQL integration.
Quick Start
To begin, review existing domain services under services/ to align with the patterns, scaffold a new domain following the directory layout (types, actions, service, processors), implement repository-backed methods, write unit tests that mock repositories, and wire the service into the API layer.