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

mini-diary迷你日记

Agent Skill

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

总安装

16,920

周安装

705

GitHub Stars

公开资料未说明

下载量

5,640
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install mini-diary

简介

由人工智能驱动的最小日记,具有智能自动标记和可选的云同步功能。非常适合日常日记、工作日志或项目跟踪。

SKILL.md

name
mini-diary
description
AI-powered minimal diary with smart auto-tagging and optional cloud sync. Perfect for daily journaling, work logs, or project tracking.
allowed-tools
Bash(mini-diary:*)

📓 Mini Diary Skill

Your AI-powered mini diary. Small footprint, smart features.

✨ Features

  • 📝 Simple Daily Logging: Clean Markdown format with date, weather, notes, and todos
  • 🏷️ Smart Auto-Tagging: AI analyzes content and adds relevant tags automatically
  • 🔍 Powerful Search: Search by tags, date, or content with context
  • 📊 Basic Statistics: Tag frequency and completion rate tracking
  • ☁️ Cloud Sync Ready: Optional NextCloud integration with detailed guide
  • 🔓 Open Format: Plain Markdown files - you own your data

🚀 Quick Start

Installation

# Install via ClawHub
clawhub install mini-diary

Basic Usage

# Add a note (auto-tagging happens automatically)
mini-diary add "Met with client about P1S delivery"

# Add a todo item (use [ ] for pending, [x] for completed)
# The todo will be added to the current day's todo section
echo "- [ ] Follow up with supplier" >> ~/diary.md
echo "- [x] Submit monthly report" >> ~/diary.md

# Search by tag
mini-diary search --tag "📦"

# Search by date
mini-diary search --date "2024-02-22"

# Search in content
mini-diary search "client meeting"

# View statistics
mini-diary search --stats

# List all available tags
mini-diary search --list-tags

📁 Diary Format

Mini Diary uses a simple Markdown format:

# 📓 My Diary

## 📅 2024-02-22 Thursday

### 📝 Notes

- Met with client about P1S delivery 📦🎋
- Fixed heating issue on X1C printer 🔧🎋
- Submitted monthly invoice 💰

### ✅ Todos

- [ ] Follow up with supplier
- [x] Update inventory spreadsheet

✅ Managing Todos

Adding Todos

Since todos are simple Markdown task lists, you can add them directly:

# Add a pending todo
echo "- [ ] Call client for follow-up" >> ~/diary.md

# Add a completed todo  
echo "- [x] Submit weekly report" >> ~/diary.md

# Add multiple todos
cat >> ~/diary.md << 'EOF'
- [ ] Order more filament
- [x] Backup server data
- [ ] Schedule team meeting
EOF

Todo Best Practices

  1. Start with date: Ensure you're adding to the correct day's section
  2. Use clear descriptions: "Call John re: P1S delivery" not just "Call John"
  3. Update status: Change [ ] to [x] when completed
  4. Review daily: Check todos at start/end of each day

Finding Todos

# Search for pending todos
grep "\[ \]" ~/diary.md

# Search for completed todos
grep "\[x\]" ~/diary.md

# Count todos by status
grep -c "\[ \]" ~/diary.md  # Pending count
grep -c "\[x\]" ~/diary.md  # Completed count

🏷️ Auto-Tagging System

The AI automatically adds tags based on content:

TagMeaningExample Triggers
🏠Familyhome, family, household
💰Financeinvoice, payment, accounting
📦Orderorder, purchase, stock
🚚Shippingshipping, delivery, logistics
💻Techsoftware, system, computer
🔧Supportrepair, fix, issue, problem
🎋Bambubambu, 3d print, printer
📋Formform, report, data, spreadsheet
📅Daily(default for routine notes)

☁️ NextCloud Integration (Optional)

Setup

  1. Set environment variable:
export NEXTCLOUD_SYNC_DIR="/path/to/nextcloud/diary"
  1. Mini Diary will automatically sync to this directory.

⚠️ Important Notes

File Permissions: NextCloud requires specific file ownership:

# After copying files to NextCloud directory:
chown www-data:www-data /path/to/diary.md

# Or using Docker:
docker exec nextcloud_app chown www-data:www-data /var/www/html/data/...

Scan Command Required: NextCloud won't detect changes automatically:

docker exec nextcloud_app php occ files:scan [username]

⚙️ Configuration

Environment Variables

# Diary file location
export DIARY_FILE="$HOME/my-diary.md"

# NextCloud sync directory
export NEXTCLOUD_SYNC_DIR="/path/to/nextcloud"

# Custom tag definitions (JSON file)
export TAGS_CONFIG="/path/to/tags.json"

Custom Tags

Create a JSON file to define custom tags:

{
  "custom_tags": {
    "project-x": "🚀",
    "urgent": "⚠️",
    "meeting": "👥"
  },
  "rules": {
    "project-x": ["project x", "px", "feature"],
    "urgent": ["urgent", "asap", "important"],
    "meeting": ["meeting", "call", "discussion"]
  }
}

📊 Advanced Usage

Weekly Report

# Generate weekly summary
mini-diary search --date $(date -d "last week" +%Y-%m-%d) --stats

Tag Analysis

# See most used tags
mini-diary search --stats | grep -A5 "Tag Statistics"

Export Data

# Export to CSV for analysis
grep "^- " diary.md | sed 's/^- //' > notes.csv

🔧 Troubleshooting

Common Issues

  1. Tags not appearing: Check content keywords match tag rules
  2. NextCloud files not showing: Did you run the scan command?
  3. Permission errors: Check file ownership in NextCloud directory
  4. Search not working: Ensure diary file exists and has content

Debug Mode

# Enable debug output
export MINI_DIARY_DEBUG=1
mini-diary add "test note"

🤝 Contributing

Found a bug? Have a feature request? Contributions welcome!

  1. Fork the repository
  2. Create a feature branch
  3. Submit a pull request

📄 License

MIT License - see LICENSE file for details.

🙏 Acknowledgments

  • Built with OpenClaw
  • Inspired by real-world need for simple, smart journaling
  • Thanks to all contributors and users

Mini Diary - Because journaling should be simple, smart, and yours.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

94.52%
按下载量换算5,331

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills