
Covers Benchmarking Planning Strategy
Description
Plan upcoming work, analyze coverage gaps, and recommend next steps for benchmarking.
SKILL.md
Skill: What's Next / Planning
Scope
Use this skill when the user asks to:
- Identify what benchmarking work should happen next
- Analyze coverage gaps and incomplete suites
- Plan variance runs and gap-fill campaigns
- Recommend task categories to focus on
- Generate next-step recommendations based on current state
Canonical Commands
# Overall readiness assessment
python3 scripts/infra/check_infra.py
# Current run status and coverage
python3 scripts/analysis/aggregate_status.py --staging
# Gap analysis (missing suites/configs)
grep -r "missing\|incomplete" runs/staging/*/result.json | head -20
# Plan variance runs
python3 scripts/analysis/plan_variance_runs.py --target 50 --dry-run
# Coverage gap analysis
python3 scripts/analysis/analyze_run_coverage.py --runs-dir runs/staging
Planning Workflow
- Assess current state — status, completion rates, failures
- Identify gaps — missing suites, configurations, models
- Categorize work — high-priority, medium, low-priority next steps
- Estimate effort — time, resources, dependencies
- Recommend — specific run commands and configurations
Gap Analysis Dimensions
- Suite coverage — which suites are incomplete?
- Configuration — missing baseline, MCP, or paired runs?
- Model coverage — which models need testing?
- Environment — Daytona vs local Docker?
- Rerun strategy — which failures should be retried?
Variance Planning
- Power analysis — how many runs for statistical significance?
- Rebalancing — equalize difficulty across runs
- DOE (Design of Experiments) — optimize run selection
- Gap-fill — targeted runs to complete coverage
Related Skills
/status— check current completion state/run— execute next steps/audit— validate readiness for next phase
More skills from the CodeScaleBench repository
View all 9 skillsSkillTagsUpdated
audit
audit repository health and benchmark integrity
Jul 17AuditBenchmarkingQAevaluate
score traces and evaluate benchmark results
Jul 16BenchmarkingData AnalysisEngineeringEvalsinfra
check infrastructure and system dependencies
Jul 16AuditEngineeringInfrastructureMCPreport
generate CodeScaleBench evaluation reports
Jul 16AnalyticsBenchmarkingReportingrun
manage CodeScaleBench benchmark runs
Jul 16AutomationBenchmarkingTestingscaffold
create and validate benchmark tasks
Jul 16BenchmarkingEngineeringTesting