**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/execute-journeys.jstemplates/critical-paths-config.yamlQuick Reference - Load this first for fast context (~2KB)
Execute comprehensive critical user journey smoke tests to validate end-to-end business flows during release workflows.
const { SmokeTestCriticalPaths } = require('./scripts/execute-journeys.js');
const tester = new SmokeTestCriticalPaths({
baseUrl: 'https://staging.example.com',
journeys: [
'registration',
'checkout',
'search'
]
});
const result = await tester.executeTests({
environment: 'staging'
});
if (result.passed) {
console.log('✅ Critical path tests passed');
}
const SLA_TARGETS = {
registration: 5000, // Registration flow: ≤5s
checkout: 8000, // Checkout flow: ≤8s
search: 3000, // Search flow: ≤3s
profile: 4000 // Profile management: ≤4s
};
Pass: All critical paths must complete successfully
Fail: Any critical path failure blocks deployment
Load: skills/smoke-test-critical-paths/REFERENCE.md (~10KB)