Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计通过

neomano-todo新马诺托多

Agent Skill

neomano-todo 用于处理数据库查询、表结构、迁移和数据维护任务,适合在 OpenClaw 中需要分析 schema、编写 SQL 或排查数据问题时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,728

周安装

199

GitHub Stars

1

下载量

1,656
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:neomano-todo(新马诺托多)
来源仓库:https://github.com/elandivar/neomano-todo
安装命令:
openclaw skills install neomano-todo
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install neomano-todo

简介

基于 SQLite 的增强型待办事项管理器,支持优先级与标签。

  • 适用于个人任务组织与时间管理工具集成。
  • 在用户添加、查询或更新任务时自动响应。
  • 安装命令:openclaw skills install neomano-todo。
  • 数据本地存储,建议定期导出以防丢失。neomano-todo 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
neomano-todo
description
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.

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:

python3 skills/neomano-todo/scripts/todo.py add "Install Starlink antenna" --priority 2 --tags "starlink,truck" --notes "This weekend"

Get a task:

python3 skills/neomano-todo/scripts/todo.py get 12

List tasks:

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:

python3 skills/neomano-todo/scripts/todo.py done 12
python3 skills/neomano-todo/scripts/todo.py reopen 12

Change status (blocked/expired/forgotten/etc):

python3 skills/neomano-todo/scripts/todo.py set-status 12 blocked
python3 skills/neomano-todo/scripts/todo.py set-status 12 forgotten

Change priority:

python3 skills/neomano-todo/scripts/todo.py set-priority 12 1

Update tags:

python3 skills/neomano-todo/scripts/todo.py set-tags 12 "sales,followup"

Update due/reminder timestamps:

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):

python3 skills/neomano-todo/scripts/todo.py set-cron-job 12 <cron_job_id>

Delete:

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:

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.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

95.51%
按下载量换算1,582

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills