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()
Installs
3
First Seen
Feb 21, 2026
search-skill — maneeshanif/cli-todo-app-speckit