Forge auth
Inspect identity proofing, credentials, sessions, recovery, federation, and reauthentication controls. Activate automatically for applications identifying users, services, or administrators when that concern is relevant to a software-engineering request.From its SKILL.md
npx -y skills add is-bo/fullstack-forge-skill --skill forge-authAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
4.6 KB, 864 tokens by cl100k_base, as published. Nobody here has run it
forge-auth: Authentication
Purpose
Inspect identity proofing, credentials, sessions, recovery, federation, and reauthentication controls.
This is an agent playbook, not a claim of standalone analyzer coverage. Apply
fullstack-forge/references/shared/module-contract.md
for common applicability, evidence, command-safety, mutation, verification, and completion rules.
Never hide failed checks or claim that an operation ran when it did not.
Automatic activation signals
Activate when a request or direct repository evidence involves authentication, when
the user explicitly names forge-auth, or when discovery proves an applicable boundary.
- Applications identifying users, services, or administrators
When not to activate
- Truly anonymous static content with no privileged operation
Automated support
Relevant discovery inputs are:
- authentication provider and middleware
- session configuration
- account routes
Available deterministic support, where present:
- Use
inspect-auth-boundariesfor its bounded evidence when present; treat unavailable runtime evidence asNOT_VERIFIED.
Agent inspection procedure
- Trace registration, login, and logout end to end, recording where credentials are validated, hashed, and stored.
- Inspect session issuance: how identifiers are generated, what the cookie or token carries, its flags, lifetime, and revocation path.
- Trace password reset and recovery flows for token entropy, expiry, single-use enforcement, and account-enumeration behavior.
- Check brute-force protections, MFA enrollment and verification, and reauthentication for sensitive actions.
- Verify session-fixation defense (rotation at login), remember-me behavior, and device/session management against the session store.
Manual inspection requirements:
- Review provider tenant settings and recovery support procedures
- Test session revocation and high-risk reauthentication
Stack-specific guidance:
- Validate framework middleware order and provider defaults explicitly
Evidence to collect
For formal findings, also follow fullstack-forge/references/PROTOCOL.md. Record the module's
inspected boundary, relevant tests, direct observations, and unavailable evidence.
Primary standards used as criteria, not proof of compliance:
- OWASP ASVS 5.0
- OWASP Authentication Cheat Sheet
- NIST SP 800-63B
Common production failures
- Trace sign-up, sign-in, logout, recovery, verification, MFA, reauthentication, and account linking
- Inspect password hashing, session rotation, expiry, cookie flags, CSRF, token audience/issuer/algorithm, enumeration, and brute-force defenses
- Verify state-changing endpoints derive identity from trusted server context
Missing-control checks
For every applicable criterion below, attach direct evidence or record a reasoned
NOT_APPLICABLE, NOT_VERIFIED, or BLOCKED status. The list is a routing checklist, not
evidence by itself.
- Registration
- Login
- Password hashing
- Password policies
- Password reset
- Email verification
- MFA
- Sessions
- Expiration
- Revocation
- Secure cookies
- Refresh-token rotation
- OAuth configuration
- OIDC configuration
- Account enumeration
- Brute-force protections
- Rate limits
- Remember-me behavior
- Logout
- Device and session management
- Sensitive-action reauthentication
- Session fixation
- Token leakage
- Recovery flows
- Maintained password, session, and identity libraries rather than custom cryptography
Commands and tools
- Run
forge auth audit --jsonorfullstack-forge auth audit --jsonwhen an explicit audit is requested and the CLI is installed. Normal feature work does not require it. - Use the deterministic support named above only for its documented bounded evidence.
Safe fixes
- Harden cookie flags and redact authentication errors
- Add missing token claim validation supported by current configuration
Approval-required changes
- Replacing authentication, changing identity linkage, or rotating credentials
Verification
- Run positive and negative flows with expired, replayed, tampered, and cross-environment credentials
- Confirm logout and revocation invalidate durable sessions
Completion contract
Apply the shared module contract and the module-specific limitations below.
Known limitations
- Hosted-provider settings remain NOT_VERIFIED without exported configuration
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.