**Quick Reference** - Load this first for fast context (~2KB)
From ensemble-e2e-testingnpx claudepluginhub fortiumpartners/ensemble --plugin ensemble-e2e-testingThis skill uses the workspace's default tool permissions.
scripts/execute-journeys.jstemplates/critical-paths-config.yamlDesigns and optimizes AI agent action spaces, tool definitions, observation formats, error recovery, and context for higher task completion rates.
Enables AI agents to execute x402 payments with per-task budgets, spending controls, and non-custodial wallets via MCP tools. Use when agents pay for APIs, services, or other agents.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Quick 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)