Install
openclaw skills install ab-test-frameworkCompare models with A/B testing for selection
openclaw skills install ab-test-frameworkCompare models with A/B testing for selection
This skill is derived from 20. Testing & Quality Assurance of the OpenClaw Agent Mastery Index v4.1.
Sub-heading: A/B Testing Frameworks for Model Selection
Complexity: high
| Name | Type | Required | Description |
|---|---|---|---|
model_a | string | Yes | First model |
model_b | string | Yes | Second model |
test_prompts | array | Yes | Test prompts |
{
"status": <string>,
"details": <object>,
"winner": <string>,
"confidence": <number>
}
const result = await openclaw.skill.run('ab-test-framework', {
model_a: "value",
model_b: "value",
test_prompts: 123
});
const result = await openclaw.skill.run('ab-test-framework', {
model_a: "value",
model_b: "value",
test_prompts: []
});
A/B test security per Category 8; prevent test manipulation
| Issue | Cause | Solution |
|---|---|---|
| Permission denied | Insufficient privileges | Check file/directory permissions |
| Invalid input | Malformed parameters | Validate input format |
| Dependency missing | Required module not installed | Run npm install |
Enable debug logging:
openclaw.logger.setLevel('debug');
const result = await openclaw.skill.run('ab-test-framework', { ... });
model-routing-managerperformance-benchmarker