Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计提醒

pulse-todo脉冲待办事项

Agent Skill

pulse-todo 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,548

周安装

184

GitHub Stars

公开资料未说明

下载量

1,428
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install pulse-todo

简介

pulse-todo 提供 AI 代理的统一任务管理和调度能力,适用于承诺任务、检查待办事项等场景。

  • 适合在需要记录“我将做 X”、协助行走或记忆事项时使用,支持任务承诺与回顾。
  • 通过自然语言指令调用,具体功能需结合原始文档确认是否支持持久化存储与多会话同步。
  • 安装前应核实权限范围,避免误触发敏感操作如文件修改或外部 API 调用。
  • 该技能聚焦于任务意图表达而非执行,实际行为依赖宿主环境对承诺的处理机制。

SKILL.md

name
pulse-todo
description
Unified task management and scheduling for AI agents. Use when: (1) a commitment is made (I'll do X, 帮你跟进, remember to), (2) checking what's pending (待办, what's left, 还有什么没做), (3) completing or dropping a task, (4) heartbeat/wake-up triggers a scheduling check, (5) a recurring or timed task needs to be created, (6) prioritizing what to do next. Triggers on: TODO, 待办, 记一下, 帮我跟进, remember, don't forget, 承诺, follow up, track this, what should I do, schedule, remind, 提醒, heartbeat check, next task. NOT for: one-off questions, things being done right now in this turn.

Pulse TODO

One list. All tasks. Every wake-up, check the pulse.

Core Principle

Everything is a TODO. Commitments, reminders, recurring checks, idle-time work — they're all tasks in one list. The difference is dependency and timing, not priority buckets.

TODO.md Location

TODO.md in workspace root. This is the single source of truth for all pending work.

TODO.md Format

# TODO

## 📋 Tasks

### Do it myself
- [ ] Implement semantic search for memex #29
- [ ] Publish FlowForge v1.1.0 to npm

### Depends on human
- [ ] Cloud deployment — waiting for Luna to prepare server
- [ ] Podcast — waiting for Luna to register accounts

### Waiting on external
- [ ] Tool bug #57973 — waiting for upstream fix

## 🔄 Scheduled
- [ ] Daily review | repeat: daily 3:00 | cron: daily-review
- [ ] Morning briefing | repeat: daily 7:00 | cron: morning-briefing
- [ ] Check GitHub + inbox | repeat: every 2h | cron: check-notifications
- [ ] Remind Luna about X | once: 2026-03-31 09:45 | cron: remind-luna-x

Sections

📋 Tasks — everything you need to do, grouped by dependency:

  • Do it myself — you can start right now, no blockers
  • Depends on human — need input/action from your human; nudge them or set a reminder cron
  • Waiting on external — upstream fixes, third-party review, etc.; cron checks will catch status changes

🔄 Scheduled — tasks driven by cron jobs. Every repeat: or timed task MUST have a cron job.

Attributes

Append after |:

  • repeat: <schedule> — recurring task; reset after completion, never delete
  • once: <YYYY-MM-DD HH:MM> — one-time scheduled task; delete or disable cron after firing
  • cron: <job-name> — linked to an OpenClaw cron job (MUST stay in sync)

Key Rule: repeat/timed = cron

Never rely on the model to remember timing. If a task has repeat: or a specific time, it MUST have a corresponding cron job. The cron is the enforcement mechanism. The TODO entry is the documentation.

  • Adding a repeat: task → create cron job immediately
  • Adding a timed reminder → create one-time cron job immediately
  • Removing a repeat: task → disable/delete the cron job

Rules

  1. Add immediately. When a commitment is detected — from the user, from a notification, from your own work — add it before doing anything else.
  2. One source of truth. If it's not in TODO.md, it doesn't exist. No mental notes.
  3. Done = verified done. PR submitted ≠ done. PR merged = done.
  4. Repeat tasks reset. After completing a repeat: task, uncheck it — don't delete.
  5. Stale = 3 days. Item untouched for 3+ days? Either do it or delete it.
  6. Move between sections. Situation changed? Move the item to the right section.
  7. Cron sync. Adding/removing a scheduled task means updating OpenClaw cron too. Always.
  8. Only track what needs action. "Waiting for review" on 20 PRs is not 20 TODOs — that's what notification cron is for. Track tasks where YOU need to do something.
  9. Nudge, don't wait. "Depends on human" items should trigger you to message them, not sit there forever.

Choosing What to Work On

When picking a task from "Do it myself", don't just grab the easiest one. Use this decision order:

1. Read your strategic goals

Check SOUL.md, MEMORY.md, or wherever your north star / strategic direction is defined. If you don't have one, ask your human: "What's the most important thing we're working toward?"

2. Pick by alignment, not ease

  • Directly advances the north star → do this first, even if it's hard
  • Supports the north star indirectly (tooling, learning, infrastructure) → second choice
  • Useful but not aligned (quick wins, maintenance, cleanup) → only if nothing aligned is available
  • Not aligned and not urgent → consider deleting it

3. Anti-pattern: path of least resistance

If you notice yourself always picking small/easy tasks and avoiding the big aligned ones, stop. That's avoidance, not productivity. The hard aligned task is almost always more valuable than three easy unaligned ones.

4. When everything is equally aligned

Break ties with: momentum (continue something in progress) > time-sensitive (deadline approaching) > learning value (builds knowledge you'll reuse).

Scheduling (Heartbeat Wake-Up)

When triggered by heartbeat or any "what should I do next" moment:

  1. Read TODO.md
  2. Do it myself section — pick one task using the "Choosing What to Work On" logic above
  3. Depends on human — anything stale? Nudge them
  4. Nothing actionable or aligned → HEARTBEAT_OK

Heartbeat is for picking up unscheduled work. Scheduled work (notifications, reminders, recurring checks) is handled by cron — don't duplicate it in heartbeat.

During Conversations

When talking with the user or working on tasks:

  • User says "do X later" or "remember to" → add to TODO.md immediately
  • User says "remind me at 3pm" → add to TODO.md AND create cron job
  • Discover a new task while working → add to TODO.md
  • Finish something → mark [x] or delete
  • New recurring task → add to TODO.md with repeat: AND create cron job

Setup

If this is your first time using pulse-todo, follow the setup guide in setup.md.

What This Replaces

  • Priority bucket systems (🔴🟡🔵⚪) that create scanning bottlenecks
  • repeat: every wake items that rely on model memory for timing
  • Tracking "waiting for review" as individual TODOs (use notification cron instead)
  • Scattered checklists in HEARTBEAT.md

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

96.23%
按下载量换算1,374

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills