lists

Manage themed lists with items, due dates, and status via SQLite.

2|Updated Feb 6, 2026
One-click install
npx skills add https://github.com/eddmann/jeeves --skill lists-eddmann
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: lists
Source: https://github.com/eddmann/jeeves/tree/main/skills/lists
Command: npx skills add https://github.com/eddmann/jeeves --skill lists-eddmann

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

General-purpose lists — shopping, questions for appointments, packing lists, etc. Use when the user wants to create a list, add items, "shopping list", "questions for appointments", or manages grouped items around a theme or event.

Core Features & Use Cases

Themed lists with optional due dates and cron reminders. SQLite, pure Python stdlib.

Quick Start

Initialize the database with the init_db.py script and then use the create.py, add.py, show.py, and other scripts to manage your lists.

Frequently Asked Questions about lists

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create themed task-management lists with due dates?

Themed task-management lists are created by running Python scripts that initialize an SQLite database, then using create.py to establish a list and add.py to append items with optional due dates.

What is the best way to manage grouped items for shopping or packing using SQLite?

Managing grouped items for shopping or packing is handled by a pure Python standard library Skill using an SQLite backend. It tracks items, due dates, and statuses, allowing you to add, show, and archive themed lists deterministically.

Do I need external dependencies to run automated reminders for todo lists?

No external dependencies are required to run automated reminders for todo lists. The Skill uses pure Python standard library scripts and stores data in a local SQLite file, requiring no additional frameworks or packages to function.

Can I use Python scripts to archive completed task-management lists?

Yes, you can use Python scripts to archive completed task-management lists. The Skill supports common workflows including archiving, which updates the status of your grouped items within the underlying SQLite database.

How does cron reminder automation work for themed lists?

Cron reminder automation for themed lists works by scheduling notifications based on the due dates assigned to items. The Python scripts manage these dates within an SQLite backend to trigger reminders for your tasks.

What are the limitations of using SQLite for task-management and reminders?

Using SQLite for task-management and reminders limits you to local storage without concurrent multi-user access. The Skill handles deterministic workflows like creating and archiving lists, but lacks remote server synchronization or cloud-based collaboration features.