search_skills
Find RPG Maker MZ/MV skills by searching through names and descriptions to locate specific game abilities.
Instructions
Search skills by name or description
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| searchTerm | Yes | Search term |
Implementation Reference
- src/tools/skillTools.ts:148-158 (handler)The implementation of the search_skills tool handler, which filters skills by name or description.
export async function searchSkills(projectPath: string, searchTerm: string): Promise<Skill[]> { const skills = await getSkills(projectPath); const lowerSearchTerm = searchTerm.toLowerCase(); return skills.filter(skill => skill && ( skill.name.toLowerCase().includes(lowerSearchTerm) || skill.description.toLowerCase().includes(lowerSearchTerm) ) ); }