Sub-skill of solver-benchmark: Programmatic Usage.
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill programmatic-usage --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Programmatic Usage?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-programmatic-usage)More formats (shields.io, HTML) on the badges page.
---
name: solver-benchmark-programmatic-usage
description: 'Sub-skill of solver-benchmark: Programmatic Usage.'
version: 2.0.0
category: engineering-utilities
type: reference
scripts_exempt: true
---
# Programmatic Usage
## Programmatic Usage
```python
from pathlib import Path
from scripts.benchmark.run_3way_benchmark import run_benchmark
# Run benchmark
result = run_benchmark(
spec_path=Path("specs/modules/benchmark/unit_box_spec.yml"),
output_dir=Path("benchmark_output/unit_box"),
solvers=["orcawave", "aqwa", "bemrosetta"],
dry_run=False,
)
# Check results
print(f"Success: {result.success}")
for name, sr in result.solver_results.items():
print(f" {name}: {sr.status}")
if result.benchmark_result and result.benchmark_result.report:
print(f"Consensus: {result.benchmark_result.report.overall_consensus}")
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.