技能详情(站内镜像,无评论)
作者:Akshay Memane @akshaymemane
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v0.2.0
统计:⭐ 0 · 163 · 1 current installs · 1 all-time installs
⭐ 0
安装量(当前) 1
🛡 VirusTotal :良性 · OpenClaw :可疑
Package:akshaymemane/proactive-daily-planner
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :可疑
OpenClaw 评估
The skill appears to implement a straightforward local daily-planner (coherent with its description) but there are small, unexplained red flags — a prompt-injection signal in SKILL.md and an unused child_process import in planner.js — that warrant manual inspection before installing.
目的
Name/description align with the files and behavior. planner.js, templates, README, and config.json implement local planning, templating, and saving plans to ~/.openclaw/workspace/memory as described. Declared future integrations (calendar/email) are disabled in config and merely noted as planned features — this is consistent.
说明范围
SKILL.md only asks to copy the skill into the OpenClaw skills directory, edit config.json, and optionally add cron/heartbeat entries; that is within scope. However the static scan flagged 'unicode-control-chars' in SKILL.md (possible prompt-injection encoding). Also SKILL.md and README encourage automatic scheduling/cron/heartbeat integration — if you enable auto-run you should be aware the skill will write files into your OpenClaw memory dire…
安装机制
No remote downloads or package installs. scripts/install.sh copies files into your ~/.openclaw workspace, sets permissions, and optionally updates config.json (using jq if available). The installer runs node planner.js help as a smoke test. This is a low-risk local install pattern.
证书
The skill requests no environment variables or external credentials. planner.js reads config.json and uses process.env.HOME/os.homedir() to expand paths (expected). One small concern: planner.js imports child_process.execSync (require('child_process')) but does not call it in the current code — that provides the capability to run shell commands if modified in future. Install script also calls timedatectl and uses whoami; those are reasonable f…
持久
The skill is not 'always: true' and does not request system-wide privileges. It writes to its own skill directory and to ~/.openclaw/workspace/memory (its stated storage location). Installer updates only its own files; it does not modify other skills or global agent settings.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Proactive Daily Planner」。简介:Proactive daily planning assistant that helps organize your day, track tasks, a…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/akshaymemane/proactive-daily-planner/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: proactive-daily-planner
description: "Proactive daily planning assistant that helps organize your day, track tasks, and provide motivation. Acts as a personal assistant to plan your day proactively."
metadata:
{
"openclaw":
{
"emoji": "📅",
"author": "Akshay Memane",
"version": "1.0.0",
"category": "productivity",
"tags": ["planning", "productivity", "proactive", "assistant", "daily"],
},
}
---
# Daily Planner Skill
A proactive personal assistant that helps you plan your day, track tasks, and stay motivated.
## 🎯 What It Does
- **Morning Planning**: Starts your day with goal setting and task prioritization
- **Progress Tracking**: Monitors task completion throughout the day
- **Motivation System**: Provides encouragement and reminders
- **Evening Review**: Helps reflect on accomplishments and plan for tomorrow
- **Proactive Alerts**: Anticipates needs and initiates planning automatically
## 🚀 Quick Start
### Installation
```bash
# Clone or copy the skill to your OpenClaw skills directory
cp -r daily-planner ~/.openclaw/workspace/skills/
```
### Configuration
Edit `config.json` to customize:
- Your name and timezone
- Planning schedule (morning/afternoon/evening times)
- Task categories and priorities
- Motivation messages
### Usage
The skill runs automatically based on your schedule, or you can trigger it manually:
```bash
# Manual trigger
openclaw skill daily-planner plan morning
openclaw skill daily-planner check-progress
openclaw skill daily-planner evening-review
```
## ⚙️ Configuration
### config.json
```json
{
"user": {
"name": "Akshay",
"timezone": "Asia/Kolkata",
"workHours": "9:00-18:00"
},
"schedule": {
"morningCheckin": "8:00",
"afternoonCheckin": "13:00",
"eveningReview": "20:00"
},
"tasks": {
"categories": ["work", "learning", "fitness", "personal"],
"defaultPriority": "medium"
},
"notifications": {
"enabled": true,
"channel": "telegram",
"motivationFrequency": "2h"
}
}
```
## 📋 Features
### 1. Morning Planning
- Sets daily goals and priorities
- Reviews calendar events
- Creates task list for the day
- Provides motivational quote
### 2. Progress Tracking
- Tracks task completion
- Provides progress updates
- Suggests adjustments if falling behind
- Celebrates milestones
### 3. Motivation System
- 50+ motivational messages
- Progress-based encouragement
- Reminder system for important tasks
- Positive reinforcement
### 4. Evening Review
- Reviews accomplishments
- Identifies what went well
- Plans for tomorrow
- Provides closure for the day
## 🔧 Integration
### With OpenClaw Proactive Assistant
The skill integrates with OpenClaw's proactive system to:
- Run automatically on schedule
- Send notifications via configured channels
- Store planning data in memory files
- Work with other skills (calendar, email, etc.)
### With External Services
- **Calendar**: Check scheduled events (future)
- **Email**: Review important emails (future)
- **Task Managers**: Sync with Todoist/Things (future)
## 📊 Data Storage
Planning data is stored in:
- `~/.openclaw/workspace/memory/daily-plan-YYYY-MM-DD.md` - Daily plans
- `~/.openclaw/workspace/memory/task-history.json` - Task completion history
- `~/.openclaw/workspace/memory/progress-stats.json` - Progress statistics
## 🎨 Customization
### Templates
Edit the template files in `templates/` to customize:
- `morning.md` - Morning planning template
- `afternoon.md` - Afternoon check-in template
- `evening.md` - Evening review template
### Motivation Messages
Add your own motivational messages to `config.json`:
```json
"motivationMessages": [
"You've got this! 💪",
"One task at a time, you're making progress! 🚀",
"Remember why you started. Keep going! 🌟"
]
```
## 🤝 Contributing
1. Fork the repository
2. Create a feature branch
3. Make your changes
4. Test thoroughly
5. Submit a pull request
## 📝 License
MIT License - see LICENSE file for details.
## 🙏 Acknowledgments
- Built for OpenClaw AI Assistant
- Inspired by proactive assistant patterns
- Designed for personal productivity enhancement
---
**Happy Planning!** May your days be productive and fulfilling. 📅✨