Issue Summary
The Ffuf skill needs updates to comply with SkillSystem.md TitleCase naming conventions and structural requirements.
Problems Found
1. Directory Naming Not TitleCase
- Current:
resources/
- Should be:
Resources/
2. File Naming Not TitleCase
| Current |
Should Be |
resources/WORDLISTS.md |
Resources/Wordlists.md |
resources/REQUEST_TEMPLATES.md |
Resources/RequestTemplates.md |
ffuf_helper.py |
tools/FfufHelper.py |
3. Missing tools/ Directory
Per SkillSystem.md, every skill should have a tools/ directory. The helper script should be moved there.
4. Missing Required Sections in SKILL.md
- Missing
## Workflow Routing section (required by SkillSystem.md)
- Missing
## Examples section (required by SkillSystem.md)
Suggested Fix
- Rename
resources/ → Resources/
- Rename files to TitleCase:
Wordlists.md, RequestTemplates.md
- Create
tools/ directory
- Move
ffuf_helper.py → tools/FfufHelper.py
- Add
## Workflow Routing section to SKILL.md
- Add
## Examples section with 2-3 concrete usage patterns
- Update all path references in SKILL.md
Related
🤖 Generated with Claude Code
Issue Summary
The Ffuf skill needs updates to comply with SkillSystem.md TitleCase naming conventions and structural requirements.
Problems Found
1. Directory Naming Not TitleCase
resources/Resources/2. File Naming Not TitleCase
resources/WORDLISTS.mdResources/Wordlists.mdresources/REQUEST_TEMPLATES.mdResources/RequestTemplates.mdffuf_helper.pytools/FfufHelper.py3. Missing
tools/DirectoryPer SkillSystem.md, every skill should have a
tools/directory. The helper script should be moved there.4. Missing Required Sections in SKILL.md
## Workflow Routingsection (required by SkillSystem.md)## Examplessection (required by SkillSystem.md)Suggested Fix
resources/→Resources/Wordlists.md,RequestTemplates.mdtools/directoryffuf_helper.py→tools/FfufHelper.py## Workflow Routingsection to SKILL.md## Examplessection with 2-3 concrete usage patternsRelated
Skills/CORE/SkillSystem.md🤖 Generated with Claude Code