What problem does it solve?
It resolves inconsistencies between HTTP and gRPC CRUD implementations in PowerX, ensuring that all services follow a single, contract‑driven approach for multi‑tenant, paginated, and audited operations.
Core Features & Use Cases
- Proto Contracts: Centralized
.proto definitions with versioning via Buf.
- Server Handlers: Auto‑generated gRPC servers that only bind request data, invoke services, and map errors.
- Interceptors: Built‑in authentication, tenant resolution, tracing, and recovery layers.
- Error & Pagination Mapping: Guarantees parity with HTTP error codes and paging semantics.
- Use Case Example: Apply the Skill to the IAM module to expose
Member and Team CRUD operations over gRPC without writing business logic in the transport layer.
Quick Start
Generate the gRPC CRUD layer for the IAM service following the Skill's guidelines.