crud-skill

Installation
SKILL.md

CRUD Skill

Purpose

Implement robust CRUD operations for todo task management.

Instructions

Service Layer Pattern

from typing import Optional, List
from datetime import datetime

class TodoService:
    """Service layer for todo task operations."""
    
    def __init__(self, database):
        self.db = database
Installs
4
First Seen
Feb 21, 2026
crud-skill — maneeshanif/cli-todo-app-speckit