Install any skill in seconds. Free to start, no credit card required.
Get Started Free →This skill covers adding the parent directory to the path when running the harness directly. Trigger: When using the harness module in a standalone context.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-02 | ✗→✓ | ▲ Improved | -61% | 0% |
| case-01 | ✗→✓ | ▲ Improved | -71% | 0% |
| case-03 | ✗→✓ | ▲ Improved | -72% | 0% |
| case-04 | ✗→✓ | ▲ Improved | -69% | 0% |
| case-05 | ✗→✓ | ▲ Improved | -76% | 0% |
<!-- L1:START -->
This skill covers adding the parent directory to the path when running the harness directly.
Trigger: When using the harness module in a standalone context. <!-- L1:END -->
<!-- L2:START -->
| Task | Pattern | |------|---------| | Create FastAPI CRUD module | make_fastapi_crud_module | | Create Next.js page module | make_nextjs_page_module |
<!-- L2:END -->
<!-- L3:START -->
Generates a CRUD module for FastAPI, allowing for quick API development.
pythonfrom eval.harness import make_fastapi_crud_module module = make_fastapi_crud_module("User")
Generates a page module for Next.js, facilitating frontend development.
pythonfrom eval.harness import make_nextjs_page_module module = make_nextjs_page_module("HomePage")
bashpython repoforge/cli.py run
Hardcoding paths can lead to issues with portability and maintainability.
python# BAD import sys sys.path.append('/absolute/path/to/harness')
<!-- L3:END -->
Other measured skills in the registry, with their headline benchmark lift.