janeflisted
Install: claude install-skill AL-JANEF/janefskills
# janef — janefskills entry point
This is the front door to the janefskills suite. Its job is to take whatever the
user asks after `/janef` and route it to the right specialist skill, or run a
coordinated pass across several. It does not re-implement the specialists — it
directs to them.
## How to use it
The user types `/janef` followed by what they want, e.g.:
- `/janef review the login flow` → route to **auth-hardening**
- `/janef audit this file for vulnerabilities` → route to **vuln-audit**
- `/janef threat model this new API` → route to **threat-model**
- `/janef is this safe to commit?` → route to **secrets-guard**
- `/janef add an audit trail` → route to **security-logging**
- `/janef make this production-ready` → route to **engineering-standard**
- `/janef full security pass` → run the coordinated multi-skill review below
If the user types just `/janef` with nothing after it, briefly list the suite (the
six skills and one line each) and ask which they want — don't guess.
## Routing
Match the request to the specialist by intent:
| If the request is about… | Route to |
|--------------------------|----------|
| login, logout, sessions, passwords, tokens, MFA, brute-force | `auth-hardening` |
| finding bugs/vulnerabilities, OWASP, injection, XSS, CSRF, SSRF, IDOR, uploads | `vuln-audit` |
| designing a system/feature/API, "what could go wrong", risks before building | `threat-model` |
| API keys, credentials, `.env`, secrets in code/history/client bundle | `secrets