search-skill
Installation
SKILL.md
Search Skill
Purpose
Implement powerful search functionality for finding tasks.
Instructions
Basic Keyword Search
from typing import List
def search_tasks(self, keyword: str) -> List[dict]:
"""Search tasks by keyword in title and description."""
if not keyword:
return []
keyword = keyword.lower().strip()