Install any skill in seconds. Free to start, no credit card required.
Get Started Free →This skill covers the creation and management of generation request types. Trigger: Load this skill when working with types related to generation requests.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | -66% | 0% |
| case-02 | ✗→✓ | ▲ Improved | -41% | 0% |
| case-03 | ✗→✓ | ▲ Improved | -68% | 0% |
| case-05 | ✗→✓ | ▲ Improved | -59% | 0% |
| case-07 | ✗→✓ | ▲ Improved | -64% | 0% |
<!-- L1:START -->
This skill covers the creation and management of generation request types.
Trigger: Load this skill when working with types related to generation requests. <!-- L1:END -->
<!-- L2:START -->
| Task | Pattern | |------|---------| | Create a user type | User | | Define generation mode | GenerationMode |
<!-- L2:END -->
<!-- L3:START -->
Defines the structure for user-related data, encapsulating user attributes.
typescript// Example of User type usage const newUser: User = { id: '123', name: 'John Doe', email: 'john@example.com' };
Specifies the mode of generation for requests, allowing for different generation strategies.
typescript// Example of GenerationMode usage const mode: GenerationMode = GenerationMode.AUTOMATIC;
bashdocker-compose up python repoforge/cli.py generate
Using overly generic types can lead to confusion and errors in type safety.
typescript// BAD const genericUser: any = {};
<!-- L3:END -->
Other measured skills in the registry, with their headline benchmark lift.