security-auth
Installation
SKILL.md
Security & Authorization — CAP Best Practices
Primary reference: https://cap.cloud.sap/docs/guides/security/overview Authorization: https://cap.cloud.sap/docs/guides/authorization
Service-level access control
// Restrict entire service to authenticated users
@requires: 'authenticated-user'
service CatalogService { ... }
// Multiple roles (OR logic)
@requires: ['admin', 'manager']
service AdminService { ... }