Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →This skill covers adding endpoints for scenarios in the real module. Trigger: When integrating new functionality into the scenarios_real module.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-14 | ✗→✓ | ▲ Improved | -67% | 0% |
| case-01 | ✗→✓ | ▲ Improved | -54% | 0% |
| case-02 | ✗→✓ | ▲ Improved | -56% | 0% |
| case-03 | ✗→✓ | ▲ Improved | -28% | 0% |
| case-04 | ✗→✓ | ▲ Improved | -54% | 0% |
Use this function to retrieve the backend module for reports.
pythonfrom eval.scenarios_real import get_reports_backend_module reports_backend = get_reports_backend_module()
Utilize this function to access the authentication backend module.
pythonfrom eval.scenarios_real import get_auth_backend_module auth_backend = get_auth_backend_module()
bashpython -m repoforge.cli skills python -m repoforge.cli docs
Hardcoding paths can lead to maintenance issues and reduce code portability.
python# BAD from eval.scenarios_real import get_reports_backend_module as reports_backend reports_backend = sys.path[0] + "/eval/scenarios_real/reports_backend"
| Task | Pattern | |------|---------| | Retrieve reports backend | get_reports_backend_module() | | Access auth backend | get_auth_backend_module() |
Other measured skills in the registry, with their headline benchmark lift.