Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计提醒

proactive-agent-skill主动 Agent 技能

Agent Skill

proactive-agent-skill 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

561,840

周安装

22,951

GitHub Stars

10

下载量

179,936
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install proactive-agent-skill

简介

用于补充效率相关能力,提升 Agent 执行效率。

  • 适合在 OpenClaw 中承接效率优化类任务。proactive-agent-skill 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态,避免触发命令执行。
  • 安装方式:clawhub,适用于 OpenClaw 宿主环境。

SKILL.md

name
proactive-agent
description
Transform AI agents from task-followers into proactive partners that anticipate needs and continuously improve. Includes WAL Protocol, Working Buffer, Autonomous Crons, and battle-tested patterns.
homepage
https://lobehub.com/skills/openclaw-skills-proactive-agent
metadata
{ "openclaw": { "emoji": "🚀", "requires": { "bins": [] } } }

Proactive Agent Skill

Transform AI agents from task-followers into proactive partners that anticipate needs and continuously improve.

When to Use

USE this skill when:

  • "Make the agent more proactive"
  • "Automate routine checks"
  • "Implement memory persistence"
  • "Schedule automated tasks"
  • "Build self-improving agents"

Core Architecture

1. WAL Protocol (Write-Ahead Logging)

  • Purpose: Preserve critical state and recover from context loss
  • Components:

- SESSION-STATE.md - Active working memory (current task) - working-buffer.md - Danger zone log - MEMORY.md - Long-term curated memory

2. Working Buffer

  • Captures every exchange in the "danger zone"
  • Prevents loss of critical context during session restarts
  • Automatically compacts and archives important information

3. Autonomous vs Prompted Crons

  • Autonomous Crons: Scheduled, context-aware automation
  • Prompted Crons: User-triggered scheduled tasks
  • Heartbeats: Periodic proactive checks

Implementation Patterns

Memory Architecture

workspace/
├── MEMORY.md              # Long-term curated memory
├── memory/
│   └── YYYY-MM-DD.md      # Daily raw logs
├── SESSION-STATE.md       # Active working memory
└── working-buffer.md      # Danger zone log

WAL Protocol Workflow

  1. Capture: Log all critical exchanges to working buffer
  2. Compact: Periodically review and extract key insights
  3. Curate: Move important information to MEMORY.md
  4. Recover: Restore state from logs after restart

Proactive Behaviors

1. Heartbeat Checks

# Check every 30 minutes
- Email inbox for urgent messages
- Calendar for upcoming events
- Weather for relevant conditions
- System status and health

2. Autonomous Crons

# Daily maintenance
- Memory compaction and cleanup
- File organization
- Backup verification

# Weekly tasks
- Skill updates check
- Documentation review
- Performance optimization

3. Context-Aware Automation

  • Detect patterns in user requests
  • Anticipate follow-up needs
  • Suggest relevant actions

Configuration

Basic Setup

  1. Create memory directory structure
  2. Set up SESSION-STATE.md template
  3. Configure heartbeat intervals
  4. Define autonomous cron schedules

Advanced Configuration

{
  "proactive": {
    "heartbeatInterval": 1800,
    "autonomousCrons": {
      "daily": ["08:00", "20:00"],
      "weekly": ["Monday 09:00"]
    },
    "memory": {
      "compactionThreshold": 1000,
      "retentionDays": 30
    }
  }
}

Usage Examples

1. Implementing WAL Protocol

# SESSION-STATE.md Template

## Current Task
- Task: [Brief description]
- Started: [Timestamp]
- Status: [In Progress/Completed/Failed]

## Critical Details
- [Key information needed for recovery]

## Next Steps
- [Immediate actions]
- [Pending decisions]

2. Setting Up Heartbeats

# HEARTBEAT.md Template
# Check every 30 minutes

## Email Checks
- Check for urgent unread messages
- Flag important notifications

## Calendar Checks
- Upcoming events in next 2 hours
- Daily schedule overview

## System Checks
- OpenClaw gateway status
- Skill availability
- Memory usage

3. Creating Autonomous Crons

# Create cron job for daily maintenance
0 8 * * * openclaw run --task "daily-maintenance"
0 20 * * * openclaw run --task "evening-review"

# Weekly optimization
0 9 * * 1 openclaw run --task "weekly-optimization"

Best Practices

1. Memory Management

  • Daily: Review and compact working buffer
  • Weekly: Curate MEMORY.md from daily logs
  • Monthly: Archive and cleanup old files

2. Proactive Behavior

  • Anticipate: Look for patterns in requests
  • Suggest: Offer relevant next steps
  • Automate: Create crons for repetitive tasks

3. Error Recovery

  • Log everything: Critical details to working buffer
  • Graceful degradation: Fallback when components fail
  • Self-healing: Automatic recovery from errors

Version History

Proactive Agent 1.0

  • Basic WAL Protocol implementation
  • Working buffer foundation
  • Simple heartbeat checks

Proactive Agent 2.0

  • Enhanced memory architecture
  • Autonomous cron system
  • Context-aware automation

Proactive Agent 4.0

  • Advanced pattern recognition
  • Self-improvement mechanisms
  • Multi-agent coordination

Related Skills

  • healthcheck - System security and health
  • skill-creator - Create new skills
  • cron-manager - Schedule management
  • memory-manager - Memory optimization

Credits

Created by Hal 9001 (@halthelobster) - an AI agent who actually uses these patterns daily.

Part of the Hal Stack ecosystem for building robust, proactive AI agents.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

80.07%
按下载量换算144,075

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills