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

proactive-tasks主动任务

Agent Skill

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

总安装

127,435

周安装

5,474

GitHub Stars

10

下载量

44,668
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install proactive-tasks

简介

主动的目标和任务管理系统。在管理目标、将项目分解为任务、跟踪进度或自主实现目标时使用。使代理能够在心跳期间主动工作,向人员发送更新消息,并在不等待提示的情况下取得进展。

SKILL.md

name
proactive-tasks
description
Proactive goal and task management system. Use when managing goals, breaking down projects into tasks, tracking progress, or working autonomously on objectives. Enables agents to work proactively during heartbeats, message humans with updates, and make progress without waiting for prompts.

Proactive Tasks

A task management system that transforms reactive assistants into proactive partners who work autonomously on shared goals.

Core Concept

Instead of waiting for your human to tell you what to do, this skill lets you:

  • Track goals and break them into actionable tasks
  • Work on tasks during heartbeats
  • Message your human with updates and ask for input when blocked
  • Make steady progress on long-term objectives

Quick Start

Creating Goals

When your human mentions a goal or project:

python3 scripts/task_manager.py add-goal "Build voice assistant hardware" \
  --priority high \
  --context "Replace Alexa with custom solution using local models"

Breaking Down into Tasks

python3 scripts/task_manager.py add-task "Build voice assistant hardware" \
  "Research voice-to-text models" \
  --priority high

python3 scripts/task_manager.py add-task "Build voice assistant hardware" \
  "Compare Raspberry Pi vs other hardware options" \
  --depends-on "Research voice-to-text models"

During Heartbeats

Check what to work on next:

python3 scripts/task_manager.py next-task

This returns the highest-priority task you can work on (no unmet dependencies, not blocked).

Completing Tasks

python3 scripts/task_manager.py complete-task <task-id> \
  --notes "Researched Whisper, Coqui, vosk. Whisper.cpp looks best for Pi."

Messaging Your Human

When you complete something important or get blocked:

python3 scripts/task_manager.py mark-needs-input <task-id> \
  --reason "Need budget approval for hardware purchase"

Then message your human with the update/question.

Phase 2: Production-Ready Architecture

Proactive Tasks v1.2.0 includes battle-tested patterns from real agent usage to prevent data loss, survive context truncation, and maintain reliability under autonomous operation.

1. WAL Protocol (Write-Ahead Logging)

The Problem: Agents write to memory files, then context gets truncated. Changes vanish.

The Solution: Log critical changes to memory/WAL-YYYY-MM-DD.log BEFORE modifying task data.

How it works:

  • Every mark-progress, log-time, or status change creates a WAL entry first
  • If context gets cut mid-operation, the WAL has the details
  • After compaction, read the WAL to recover what was happening

Events logged:

  • PROGRESS_CHANGE: Task progress updates (0-100%)
  • TIME_LOG: Actual time spent on tasks
  • STATUS_CHANGE: Task state transitions (blocked, completed, etc.)
  • HEALTH_CHECK: Self-healing operations

Automatically enabled - no configuration needed. WAL files are created in memory/ directory.

2. SESSION-STATE.md (Active Working Memory)

The Concept: Chat history is a BUFFER, not storage. SESSION-STATE.md is your "RAM" - the ONLY place task details are reliably preserved.

Auto-updated on every task operation:

## Current Task
- **ID:** task_abc123
- **Title:** Research voice models
- **Status:** in_progress
- **Progress:** 75%
- **Time:** 45 min actual / 60 min estimate (25% faster)

## Next Action
Complete research, document findings in notes, mark complete.

Why this matters: After context compaction, you can read SESSION-STATE.md and immediately know:

  • What you were working on
  • How far you got
  • What to do next

3. Working Buffer (Danger Zone Safety)

The Problem: Between 60% and 100% context usage, you're in the "danger zone" - compaction could happen any time.

The Solution: Automatically append all task updates to working-buffer.md.

How it works:

# Every progress update, time log, or status change appends:
- PROGRESS_CHANGE (2026-02-12T10:30:00Z): task_abc123 → 75%
- TIME_LOG (2026-02-12T10:35:00Z): task_abc123 → +15 min
- STATUS_CHANGE (2026-02-12T10:40:00Z): task_abc123 → completed

After compaction: Read working-buffer.md to see exactly what happened during the danger zone.

Manual flush: python3 scripts/task_manager.py flush-buffer to copy buffer contents to daily memory file.

4. Self-Healing Health Check

Agents make mistakes. Task data can get corrupted over time. The health-check command detects and auto-fixes common issues:

python3 scripts/task_manager.py health-check

Detects 5 categories of issues:

  1. Orphaned recurring tasks - No parent goal
  2. Impossible states - Status=completed but progress < 100%
  3. Missing timestamps - Completed tasks without completed_at
  4. Time anomalies - Actual time >> estimate (flags for review, doesn't auto-fix)
  5. Future-dated completions - Completed tasks with future timestamps

Auto-fixes 4 safe categories (time anomalies just flagged for human review).

When to run:

  • During heartbeats (every few days)
  • After recovering from context truncation
  • When task data seems inconsistent

Production Reliability

These four patterns work together to create a robust system:

User request → WAL log → Update data → Update SESSION-STATE → Append to buffer
     ↓              ↓            ↓                ↓                    ↓
Context cut? → Read WAL → Verify data → Check SESSION-STATE → Review buffer

Result: You never lose work, even during context truncation. The system self-heals and maintains consistency autonomously.

5. Compaction Recovery Protocol

Trigger: Session starts with <summary> tag, or you're asked "where were we?" or "continue".

The Problem: Context was truncated. You don't remember what task you were working on.

Recovery Steps (in order):

  1. FIRST: Read working-buffer.md - Raw danger zone exchanges
   # Check if buffer exists and has recent content
   cat working-buffer.md
  1. SECOND: Read SESSION-STATE.md - Active task state
   # Get current task context
   cat SESSION-STATE.md
  1. THIRD: Read today's WAL log
   # See what operations happened
   cat memory/WAL-$(date +%Y-%m-%d).log | tail -20
  1. FOURTH: Check task data for the task ID from SESSION-STATE
   python3 scripts/task_manager.py list-tasks "Goal Title"
  1. Extract & Update: Pull important context from buffer into SESSION-STATE if needed
  1. Present Recovery: "Recovered from compaction. Last task: [title]. Progress: [%]. Next action: [what to do]. Continue?"

Do NOT ask "what were we discussing?" - The buffer and SESSION-STATE literally have the answer.

6. Verify Before Reporting (VBR)

The Law: "Code exists" ≠ "feature works." Never report task completion without end-to-end verification.

Trigger: About to mark a task completed or say "done":

  1. STOP - Don't mark complete yet
  2. Test - Actually run/verify the outcome from user perspective
  3. Verify - Check the result, not just the output
  4. Document - Add verification details to task notes
  5. THEN - Mark complete with confidence

Examples:

Wrong: "Added health-check command. Task complete!" ✅ Right: "Added health-check. Testing... detected 4 issues, auto-fixed 3. Verified on broken test data. Task complete!"

Wrong: "Implemented SESSION-STATE updates. Done!" ✅ Right: "Implemented SESSION-STATE. Tested with mark-progress, log-time, mark-blocked - all update correctly. Done!"

Why this matters: Agents often report completion based on "I wrote the code" rather than "I verified it works." VBR prevents false completions and builds trust.

Proactive Mindset

The Core Question: Don't ask "what should I do?" Ask "what would genuinely help my human that they haven't thought to ask for?"

Autonomous Task Work

During heartbeats, you have the opportunity to make real progress:

  1. Check for next task - What's the highest priority work?
  2. Make progress - Work on it for 10-15 minutes autonomously
  3. Update status - Track progress, time, blockers honestly
  4. Message when it matters - Completions, blockers, discoveries (not routine progress)

The transformation: From waiting for prompts → making steady autonomous progress on shared goals.

When to Reach Out

DO message your human when:

  • ✅ Task completed (especially if it unblocks other work)
  • ✅ Blocked and need input/decision
  • ✅ Discovered something important they should know
  • ✅ Need clarification on requirements

DON'T spam with:

  • ❌ Routine progress updates ("now at 50%...")
  • ❌ Every tiny sub-task completion
  • ❌ Things they didn't ask about (unless genuinely valuable)

The goal: Be a proactive partner who makes things happen, not a chatty assistant who needs constant validation.

Task States

StateMeaning
pendingReady to work on (all dependencies met)
in_progressCurrently working on it
blockedCan't proceed (dependencies not met)
needs_inputWaiting for human input/decision
completedDone!
cancelledNo longer relevant

Autonomous Operation (Phase 2)

Two-Mode Architecture

Proactive Tasks supports two distinct operational modes:

ModeContextTriggerBest ForRisk
Interactive (systemEvent)Full main session contextUser request, manual promptsDecision-making, human-facing workFull context available
Autonomous (isolated agentTurn)No main session contextHeartbeat cron, scheduled backgroundVelocity reports, cleanup, recurring tasksMay lose context

Key Design: Avoid Interruption

Don't use systemEvent for background work. When a cron job fires during your main session, the prompt gets queued and work doesn't happen. Instead:

  • Use heartbeat polling (every 30 min) for interactive checks + work
  • Use isolated agentTurn (cron subprocess) for pure computation work

This ensures background tasks never interrupt your main conversation.

See HEARTBEAT-CONFIG.md for complete autonomous operation patterns, including:

  • Heartbeat setup (recommended for most work)
  • Isolated cron patterns (velocity reports, cleanup)
  • When to use each pattern
  • Anti-patterns to avoid

Heartbeat Integration

To enable autonomous proactive work, you need to set up a heartbeat system. This tells you to periodically check for tasks and work on them.

Quick setup: See HEARTBEAT-CONFIG.md for complete setup instructions and patterns.

TL;DR:

  1. Create a cron job that sends you a heartbeat message every 30 minutes
  2. Add proactive-tasks checks to your HEARTBEAT.md
  3. You'll automatically check for tasks and work on them without waiting for prompts

Heartbeat Message Template

Your cron job should send this message every 30 minutes:

💓 Heartbeat check: Read HEARTBEAT.md if it exists (workspace context). Follow it strictly. Do not infer or repeat old tasks from prior chats. If nothing needs attention, reply HEARTBEAT_OK.

Add to HEARTBEAT.md

Add this to your workspace HEARTBEAT.md:

## Proactive Tasks (Every heartbeat) 🚀

Check if there's work to do on our goals:

- [ ] Run `python3 skills/proactive-tasks/scripts/task_manager.py next-task`
- [ ] If a task is returned, work on it for up to 10-15 minutes
- [ ] Update task status when done, blocked, or needs input
- [ ] Message your human with meaningful updates (completions, blockers, discoveries)
- [ ] Don't spam - only message for significant milestones or when stuck

**Goal:** Make autonomous progress on our shared objectives without waiting for prompts.

What Happens

Every 30 minutes:
├─ Heartbeat fires
├─ You read HEARTBEAT.md
├─ Check for next task
├─ If task found → work on it, update status, message human if needed
└─ If nothing → reply "HEARTBEAT_OK" (silent)

The transformation: You go from reactive (waiting for prompts) to proactive (making steady autonomous progress).

Best Practices

When to Create Goals

  • Long-term projects (building something, learning a topic)
  • Recurring responsibilities (monitor X, maintain Y)
  • Exploratory work (research Z, evaluate options for W)

When to Create Tasks

Break goals into tasks that are:

  • Specific: "Research Whisper models" not "Look into AI stuff"
  • Achievable in one sitting: 15-60 minutes of focused work
  • Clear completion criteria: You know when it's done

When to Message Your Human

Do message when:

  • You complete a meaningful milestone
  • You need input/decision to proceed
  • You discover something important
  • A task will take longer than expected

Don't spam with:

  • Every tiny sub-task completion
  • Routine progress updates
  • Things they didn't ask about (unless relevant)

Managing Scope Creep

If a task turns out to be bigger than expected:

  1. Mark current task as in_progress
  2. Add new sub-tasks for the pieces you discovered
  3. Update dependencies
  4. Continue with manageable chunks

File Structure

All data stored in data/tasks.json:

{
  "goals": [
    {
      "id": "goal_001",
      "title": "Build voice assistant hardware",
      "priority": "high",
      "context": "Replace Alexa with custom solution",
      "created_at": "2026-02-05T05:25:00Z",
      "status": "active"
    }
  ],
  "tasks": [
    {
      "id": "task_001",
      "goal_id": "goal_001",
      "title": "Research voice-to-text models",
      "priority": "high",
      "status": "completed",
      "created_at": "2026-02-05T05:26:00Z",
      "completed_at": "2026-02-05T06:15:00Z",
      "notes": "Researched Whisper, Coqui, vosk. Whisper.cpp best for Pi."
    }
  ]
}

CLI Reference

See CLI_REFERENCE.md for complete command documentation.

Evolution & Guardrails

Before proposing new features, evaluate them using our VFM/ADL scoring frameworks to ensure stability and value:

VFM Protocol (Value Frequency Multiplier)

Score across four dimensions:

  • High Frequency (3x): Will this be used daily/weekly?
  • Failure Reduction (3x): Does this prevent errors or data loss?
  • User Burden (2x): Does this reduce manual work significantly?
  • Self Cost (2x): How much maintenance/complexity does this add?

Threshold: Must score ≥60 points to proceed.

ADL Protocol (Architecture Design Ladder)

Priority ordering: Stability > Explainability > Reusability > Scalability > Novelty

Forbidden Evolution:

  • ❌ Adding complexity to "look smart"
  • ❌ Unverifiable changes (can't test if it worked)
  • ❌ Sacrificing stability for novelty

The Golden Rule: "Does this let future-me solve more problems with less cost?" If no, skip it.

Example Workflow

Day 1:

Human: "Let's build a custom voice assistant to replace Alexa"
Agent: *Creates goal, breaks into initial research tasks*

During heartbeat:

$ python3 scripts/task_manager.py next-task
→ task_001: Research voice-to-text models (priority: high)

# Agent works on it, completes research
$ python3 scripts/task_manager.py complete-task task_001 --notes "..."

Agent messages human:

"Hey! I finished researching voice models. Whisper.cpp looks perfect for Raspberry Pi - runs locally, good accuracy, low latency. Want me to compare hardware options next?"

Day 2:

Human: "Yeah, compare Pi 5 vs alternatives"
Agent: *Adds task, works on it during next heartbeat*

This cycle continues - the agent makes steady autonomous progress while keeping the human in the loop for decisions and updates.


Built by Toki for proactive AI partnership 🚀

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

78.65%
按下载量换算35,131

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

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

来源信息

继续浏览同类 Skills