# test > Test skill for validating skill loading mechanics and debugging skill discovery in the system - Author: Claude Assistant - Repository: mfethe1/skills - Version: 20260123221508 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/mfethe1/skills - Web: https://mule.run/skillshub/@@mfethe1/skills~test:20260123221508 --- --- name: test description: Test skill for validating skill loading mechanics and debugging skill discovery in the system triggers: - test skill - skill loading --- # Test Skill ## Purpose Quick test file for validating skill loading mechanics. This skill exists to verify the hooks system correctly discovers and loads SKILL.md files. ## ### Usage This skill is used for debugging skill discovery: ```bash # Test skill loading python -c " import sys sys.path.insert(0, 'hooks') from skill_agent_injector import _get_skill_triggers triggers = _get_skill_triggers() print(f'Loaded {len(triggers)} skills') for name in sorted(triggers.keys()): print(f' - {name}: {triggers[name][\"command\"]}')" ``` ### Verification If this skill loads correctly, the hooks system is working. ## - `hooks/config.yaml`: Skill configuration - `hooks/skill_agent_injector.py`: Skill loading logic