**Quick Reference** - Load this first for fast context (~2KB)
Inherits all available tools
Additional assets for this skill
This skill inherits all available tools. When active, it can use any tool Claude has access to.
scripts/test-auth-flows.jstemplates/auth-config.yamlQuick Reference - Load this first for fast context (~2KB)
Execute comprehensive authentication and authorization smoke tests to validate login flows, token validation, session management, and access control during release workflows.
const { SmokeTestAuth } = require('./scripts/test-auth-flows.js');
const tester = new SmokeTestAuth({
baseUrl: 'https://staging.example.com',
testCredentials: {
email: 'test@example.com',
password: process.env.TEST_USER_PASSWORD
}
});
const result = await tester.executeTests({
environment: 'staging',
tests: ['login', 'token-validation', 'protected-resource']
});
if (result.passed) {
console.log('✅ Auth smoke tests passed');
}
const SLA_TARGETS = {
login: 2000, // Login: ≤2s
tokenValidation: 100, // Token validation: ≤100ms
sessionCheck: 50, // Session check: ≤50ms
protectedResource: 500, // Protected resource: ≤500ms
logout: 1000 // Logout: ≤1s
};
Pass: All auth tests must pass
Fail: Any auth test failure blocks deployment
Load: skills/smoke-test-auth/REFERENCE.md (~10KB)