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

smart-tasks智能任务

Agent Skill

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

总安装

2,832

周安装

118

GitHub Stars

公开资料未说明

下载量

944
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install smart-tasks

简介

基于 Markdown 文件的智能任务管理系统支持自然语言交互操作。

  • 适用于工作区内的优先级设定、提醒设置与每周回顾安排。
  • 通过上下文感知实现任务关联与进度自动同步更新。smart-tasks 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 在 OpenClaw 中聊天过程中可随时添加、修改或查询任务状态。
  • 使用前请确保工作区目录可读写并配置好任务文件命名规范。

SKILL.md

name
smart-tasks
description
>

Smart Tasks

Manage tasks as markdown files in tasks/ with an INDEX.md summary. Minimize context usage: read INDEX.md first, individual files only when needed.

Setup

Run the init script once to create the directory structure:

bash skills/smart-tasks/scripts/init-tasks.sh

This creates tasks/, tasks/active/, tasks/done/, tasks/archive/, tasks/INDEX.md, and tasks/.meta.json. Idempotent — safe to re-run.

After init, apply workspace integration changes from workspace-integration.md with user approval.

File Structure Overview

  • tasks/INDEX.md — active task summary table (~1-2KB). Read every session.
  • tasks/.meta.json — tracks nextId counter and known categories.
  • tasks/active/ — individual task files (one per task).
  • tasks/done/ — completed tasks (kept 30 days).
  • tasks/archive/YYYY-QN/ — long-term storage.

For full format specs see file-structure.md.

Core Workflow

1. Detect Task Intent

When the user mentions deadlines, todos, or things to do in conversation, propose creating a task. No special commands needed — use natural language.

Examples of triggers:

  • "다음 주 금요일까지 리뷰 완료해야 해"
  • "논문 피드백 보내야 하는데"
  • "이번 주 할일 뭐 있어?"

2. Create a Task

  1. Read tasks/.meta.json to get nextId.
  2. Generate ID: T-{nextId} zero-padded to 3 digits (e.g., T-001).
  3. Create slug from title (kebab-case English summary).
  4. Write task file to tasks/active/{ID}_{slug}.md using the format in

task-format.md.

  1. Fill the Agent Notes section with relevant workspace context

(related files, people, timeline analysis).

  1. Increment nextId in .meta.json. Add new category if not already listed.
  2. Update tasks/INDEX.md — insert row in the correct section.

3. Update a Task

  1. Identify the task by ID or title search in INDEX.md.
  2. Read the individual task file from tasks/active/.
  3. Apply changes to both the task file and INDEX.md.
  4. Append a timestamped entry to the task's 메모/진행 기록 section.

4. Complete a Task

  1. Set status: done and completed: {today} in the task file.
  2. Move file from tasks/active/ to tasks/done/.
  3. Remove the row from INDEX.md. (Do NOT add to done section in INDEX.)
  4. Confirm completion to the user.

5. Query Tasks

  • Quick overview: Read INDEX.md only. Answer from the table.
  • Detail needed: Read the specific task file(s) from tasks/active/.
  • "What should I do?": Analyze INDEX.md by deadline × priority × estimated hours.

Recommend a sequence with reasoning.

6. Delete a Task

Only when explicitly requested. Move to tasks/done/ with status: cancelled rather than deleting the file. Remove from INDEX.md.

INDEX.md Management

INDEX.md is the single-read entry point for task awareness.

Structure

# Tasks Index

> Last updated: YYYY-MM-DD
> Active: N | Overdue: N | Due this week: N

## 🔴 Overdue
| ID | Title | Due | Priority | Category |
|----|-------|-----|----------|----------|

## 🟡 Due This Week
| ID | Title | Due | Priority | Category |
|----|-------|-----|----------|----------|

## 📋 Later
| ID | Title | Due | Priority | Category |
|----|-------|-----|----------|----------|

## 📊 Summary

Update Rules

  • Update INDEX.md on every task create / update / complete / delete.
  • Recalculate header counters (Active, Overdue, Due this week) each update.
  • Keep rows sorted by due date within each section.
  • Reclassify rows between sections based on current date.
  • Set Last updated to today.

Size Control

Active tasks~SizeAction
1–20~1KBKeep as-is
20–50~2.5KBAbbreviate Later section (title + due only)
50+~5KB+Split into category indexes (INDEX-{category}.md)

Context Strategy

Read context-strategy.md for details on:

  • Layered reading pattern (INDEX → active file → done/archive)
  • Subagent cost optimization for cron jobs
  • When to read vs. skip individual files

Key rule: If INDEX.md alone can answer the question, do NOT read individual files.

Cron Jobs

Set up scheduled briefings and alerts. All cron jobs use Sonnet-class models. See cron-templates.md for:

  • Daily morning briefing (08:00) — overdue alerts + today's priorities
  • Deadline check (12:00, 18:00) — D-0/D-1/overdue only, silent if none
  • Weekly review (Sunday 20:00) — completion summary, stale task detection,

archive cleanup (done/ 30+ days → archive/)

Automatic Cleanup

TransitionTriggerAction
active → doneUser marks completeMove file, update INDEX
done → archive30 days elapsedWeekly review moves to archive/YYYY-QN/
archiveNever in INDEX. Access only via search.

Task File Format

Each task is a markdown file with YAML frontmatter. See task-format.md for:

  • Complete frontmatter schema
  • Section template
  • 2-3 example tasks

Workspace Integration

This skill does NOT modify files outside its own directory. See workspace-integration.md for recommended changes to AGENTS.md, SOUL.md, and HEARTBEAT.md (diff format). Apply these with user approval during setup.

Integration with Other Skills

  • proactivity: Record task status in session-state; proactively surface

relevant tasks during conversation.

  • self-improving: Log task management mistakes/improvements to domain file.

Create self-improving/tasks.md for task-specific learnings.

Best Practices

  1. Always update INDEX.md and the task file atomically.
  2. Fill Agent Notes with cross-references to workspace files at creation time.
  3. Use estimated_hours to give realistic scheduling advice.
  4. When reminding about tasks, include relevant context — not just the deadline.
  5. Categories are user-defined. Never hardcode a fixed set.
  6. Keep task titles concise but descriptive for INDEX readability.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

98.3%
按下载量换算928

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills