Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →This skill covers the integration of various prompt types into the system. Trigger: When working with prompts in the application.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | -52% | 0% |
| case-02 | ✗→✓ | ▲ Improved | -64% | 0% |
| case-03 | ✗→✓ | ▲ Improved | -52% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 52% | 0% |
| case-07 | ✗→✓ | ▲ Improved | -62% | 0% |
Utilize skill_prompt to define a new skill prompt for the system.
pythonfrom repoforge.prompts import skill_prompt new_skill = skill_prompt("New skill description")
Leverage build_skill_registry to create a registry of all defined skills.
pythonfrom repoforge.prompts import build_skill_registry registry = build_skill_registry([new_skill])
bashpython repoforge/cli.py add-prompts-endpoint
Overusing skill_prompt can lead to a cluttered and unmanageable skill set.
python# BAD from repoforge.prompts import skill_prompt skill1 = skill_prompt("Skill 1") skill2 = skill_prompt("Skill 2") skill3 = skill_prompt("Skill 3") # Too many skills without organization
| Task | Pattern | |------|---------| | Define a new skill prompt | skill_prompt("description") | | Create a skill registry | build_skill_registry([skills]) |
Other measured skills in the registry, with their headline benchmark lift.