Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .claude/skills/support-auth/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ PasswordAuthenticator lookup user → verify password → create session → Aut
PasswordHasher Argon2id/bcrypt via password_hash() builtins
Guard RBAC permission check against immutable Policy
```
All orchestrators in `src/` root. Handlers in `src/Handler/{Category}/` as invokables bound via `->__invoke(...)`.

## API / SIGNATURES

Expand Down Expand Up @@ -139,4 +138,3 @@ $guard->authorize($session, 'article:write'); // void or UnauthorizedException
## RULES
- Events created and returned, never dispatched internally. Public error messages stay generic; details only in Events.
- `deny` overrides `allow`; role inheritance via `includes()`.
- `tests/Support/` for fakes (e.g. `InMemoryTokenStore`). Test paths mirror `src/`.
Loading