mirror of
https://github.com/Jeuners/ECC.git
synced 2026-09-09 15:02:30 +02:00
docs: add 'When to Activate' sections to 14 skill definitions
Add activation triggers to skills that were missing them, helping Claude Code determine when to load each skill contextually.
This commit is contained in:
parent
ed7ec29ead
commit
e6e28882db
14 changed files with 122 additions and 0 deletions
|
|
@ -7,6 +7,16 @@ description: Spring Security best practices for authn/authz, validation, CSRF, s
|
|||
|
||||
Use when adding auth, handling input, creating endpoints, or dealing with secrets.
|
||||
|
||||
## When to Activate
|
||||
|
||||
- Adding authentication (JWT, OAuth2, session-based)
|
||||
- Implementing authorization (@PreAuthorize, role-based access)
|
||||
- Validating user input (Bean Validation, custom validators)
|
||||
- Configuring CORS, CSRF, or security headers
|
||||
- Managing secrets (Vault, environment variables)
|
||||
- Adding rate limiting or brute-force protection
|
||||
- Scanning dependencies for CVEs
|
||||
|
||||
## Authentication
|
||||
|
||||
- Prefer stateless JWT or opaque tokens with revocation list
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue