返回顶部
n

neomano-todo

Enhanced TODO/task manager backed by a local SQLite database (instead of flat text files) with priorities (1-3), tags, due dates, reminder timestamps, explicit task lifecycle statuses (open/done/blocked/expired/forgotten), and stale-task detection to prevent backlog accumulation. Use when the user wants to add, list, filter, prioritize, update, complete, expire/forget, or review stale tasks; or when they want reminder scheduling metadata to be stored for OpenClaw cron delivery.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 0.1.0
安全检测
已通过
134
下载量
1
收藏
概述
安装方式
版本历史

neomano-todo

# neomano-todo An improved personal TODO system that uses **SQLite as the backend** (not text files). Why SQLite: - Structured fields (priority/status/dates/tags) - Fast filtering and sorting - Durable local storage with zero external dependencies ## Features - **SQLite persistence** (local file) - **Priorities 1–3** - 1 = high, 2 = medium, 3 = low - **Tags** (many-to-many) - **Dates** - `due_at` (when it should be done) - `remind_at` (when to notify) - **Statuses** - `open`, `done`, `blocked`, `expired`, `forgotten` - **Reminder metadata for OpenClaw cron** - Store `remind_at` + `cron_job_id` so reminders can be created/updated/cancelled by the agent - **Backlog control** - Detect “stale candidates” based on `last_touched_at` and priority thresholds ## Configuration (environment variables) Recommended: set in `~/.openclaw/.env` on the gateway machine. ### Storage - `NEOMANO_TODO_DB_PATH` - Path to the SQLite DB file. - Default used by the helper script: `~/.openclaw/workspace/data/neomano-todo.sqlite3` ### Reminder delivery defaults Used by the agent when scheduling a reminder (cron delivery). - `NEOMANO_TODO_DEFAULT_CHANNEL` - Example: `whatsapp`, `telegram`, etc. - `NEOMANO_TODO_DEFAULT_TARGET` - Example: `+593987233203` for WhatsApp. - `NEOMANO_TODO_TZ` - Example: `America/Guayaquil` ## Data model (SQLite) The helper script auto-creates tables on first run. Main fields stored per task: - `title`, `notes` - `priority` (1–3) - `status` (`open|done|blocked|expired|forgotten`) - `created_at`, `updated_at`, `last_touched_at`, `completed_at` - `due_at`, `remind_at` - `cron_job_id` (optional, set after creating a cron job) - tags via `tags` + `task_tags` ## Helper script Use the bundled deterministic helper script: - `skills/neomano-todo/scripts/todo.py` It outputs JSON to make it easy for an agent to parse. ### Commands Add a task: ```bash python3 skills/neomano-todo/scripts/todo.py add "Install Starlink antenna" --priority 2 --tags "starlink,truck" --notes "This weekend" ``` Get a task: ```bash python3 skills/neomano-todo/scripts/todo.py get 12 ``` List tasks: ```bash python3 skills/neomano-todo/scripts/todo.py list --status open --order priority python3 skills/neomano-todo/scripts/todo.py list --status open --order due python3 skills/neomano-todo/scripts/todo.py list --tag sales --order priority ``` Complete / reopen: ```bash python3 skills/neomano-todo/scripts/todo.py done 12 python3 skills/neomano-todo/scripts/todo.py reopen 12 ``` Change status (blocked/expired/forgotten/etc): ```bash python3 skills/neomano-todo/scripts/todo.py set-status 12 blocked python3 skills/neomano-todo/scripts/todo.py set-status 12 forgotten ``` Change priority: ```bash python3 skills/neomano-todo/scripts/todo.py set-priority 12 1 ``` Update tags: ```bash python3 skills/neomano-todo/scripts/todo.py set-tags 12 "sales,followup" ``` Update due/reminder timestamps: ```bash python3 skills/neomano-todo/scripts/todo.py set-dates 12 --due-at "2026-03-29T09:00:00-05:00" --remind-at "2026-03-29T08:30:00-05:00" ``` Store cron job id (after scheduling a reminder with OpenClaw cron): ```bash python3 skills/neomano-todo/scripts/todo.py set-cron-job 12 <cron_job_id> ``` Delete: ```bash python3 skills/neomano-todo/scripts/todo.py delete 12 ``` ## Reminder scheduling (OpenClaw cron) The script stores reminder timestamps; the agent is responsible for scheduling. Workflow: 1) If `remind_at` is set and `status` is `open`, create/update a cron job scheduled at `remind_at`. 2) After creating the cron job, store its id in the task using `set-cron-job`. 3) When the task becomes terminal (`done`, `expired`, `forgotten`), cancel the cron job (if any). ## Backlog control: stale candidates Policy: - P3 not touched for 30 days → review candidate - P2 not touched for 45 days → review candidate - P1 is never auto-forgotten List stale candidates: ```bash python3 skills/neomano-todo/scripts/todo.py stale-candidates ``` ## Response style - Keep replies short. - For WhatsApp: use bullets (no tables). - When confirming changes: include task id, title, priority, and status.

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 neomano-todo-1776128461 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 neomano-todo-1776128461 技能

通过命令行安装

skillhub install neomano-todo-1776128461

下载 Zip 包

⬇ 下载 neomano-todo v0.1.0

文件大小: 6.82 KB | 发布时间: 2026-4-17 15:30

v0.1.0 最新 2026-4-17 15:30
Initial release: SQLite-backed enhanced TODO (priorities 1-3, tags, due_at/remind_at, statuses, stale candidates) + OpenClaw cron metadata.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部