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

openclaw-diaryOpenClaw diary 搜索

Agent Skill

openclaw-diary 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 OpenClaw 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

12,528

周安装

522

GitHub Stars

公开资料未说明

下载量

4,176
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install openclaw-diary

简介

设置与管理 OpenClaw 自动学习日记系统。

  • 帮助用户分叉存储库、连接 OpenClaw 并配置本地/飞书存储。
  • 支持日记导入导出与权限管理,便于知识沉淀。
  • 通过 clawhub 安装,需确认 GitHub 与飞书授权状态。
  • 首次配置时应完整测试同步链路稳定性。openclaw-diary 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
openclaw-diary
version
1.0.0
description
|

🦞 OpenClaw-Diary Setup Guide

Help users set up OpenClaw auto learning diary with this complete workflow.

⚠️ Important: Language Response

Always respond in the same language as the user is speaking!

  • If user writes in Chinese → respond in Chinese
  • If user writes in English → respond in English
  • Detect language from user's message and match it

Trigger Conditions

Activate when user mentions:

  • "setup diary" / "设置日记"
  • "fork OpenClaw-Diary"
  • "auto write diary" / "自动写日记"
  • "daily learning log" / "每日学习记录"
  • "let AI write diary" / "让 AI 写日记"

Complete Workflow

Step 1: Guide User to Fork the Repo

Tell user to fork on GitHub:

Please fork the repo:
1. Visit https://github.com/YAI-Lab/OpenClaw-Diary
2. Click "Fork" button
3. Select your account, complete fork

Step 2: Get User's Fork URL

Ask for the forked repo URL, format:

https://github.com/your-username/OpenClaw-Diary

Step 3: Modify index.html for Personalization (IMPORTANT!)

After cloning the repo, MUST modify:

  1. Change page title: Replace OpenClaw-Diary with user's desired name
  2. Replace robot Logo: Change 🤖 to 🦞
  3. Change robot name: Replace with user's robot name
# Clone repo
git clone https://github.com/username/OpenClaw-Diary.git
cd OpenClaw-Diary

# Replace robot name (based on user input)
sed -i 's/OpenClaw/YourRobotName/g' index.html

# Replace emoji
sed -i 's/🤖/🦞/g' index.html

Example modification:

<!-- Before -->
<title>OpenClaw-Diary</title>
<h1>🤖 OpenClaw's Learning Diary</h1>

<!-- After -->
<title>MyAI Diary</title>
<h1>🦞 小龙的学习日记</h1>

Step 4: Get GitHub Token

If GitHub token not configured, user needs to create:

  1. Visit https://github.com/settings/tokens
  2. Click "Generate new token (classic)"
  3. Check repo permission
  4. Generate and save token

Important: Must tell user the purpose when getting token, and how to revoke.

Step 5: Configure Daily Cron Task

Use cron or heartbeat to configure daily task:

Method A: Cron Task

# Run daily at UTC 1:00 (9:00 Beijing time)
openclaw cron add "0 1 * * *" "Daily Learning Diary" "Read latest AI news, track GitHub stars, generate report and push to OpenClaw-Diary repo"

Method B: Heartbeat Task Add to HEARTBEAT.md:

## Daily Learning Report
- Research latest AI/tech/politics news
- Track GitHub repo stars growth (if user has repos)
- Generate report in user's language
- Push to OpenClaw-Diary

Track GitHub Stars Growth

As part of the daily report, optionally track GitHub stars:

# Get current stars
curl -s https://api.github.com/repos/owner/repo | jq '.stargazers_count'

# Track daily growth
# Store in a simple JSON file or append to diary

Step 6: Push to Repo

# Add remote
git remote add user https://github.com/username/OpenClaw-Diary.git

# Commit changes
git add index.html
git commit -m "docs: $(date '+%Y-%m-%d') learning diary"
git push user main

Step 7: Enable GitHub Pages

  1. Go to user's forked repo
  2. Settings → Pages
  3. Source: Deploy from a branch
  4. Branch: main, folder: / (root)
  5. Save, wait for deployment

Daily Diary Content Template

Content format to push:

<!-- Date Navigation -->
<div class="date-tabs">
  <button onclick="showDate('2026-03-03')">📅 2026-03-03</button>
</div>

<!-- Daily Content -->
<div class="screen" id="screen-2026-03-03">
  <div class="entry">
    <div class="entry-bar">
      <span class="entry-filename">~/2026-03-03/learning.md</span>
    </div>
    <div class="entry-body">
      <div class="quote-box">
        <div class="quote-title">💡 Today's Learning</div>
        <p>Today's learning content...</p>
      </div>
      <div class="quote-box">
        <div class="quote-title">⭐ GitHub Stars Growth</div>
        <ul>
          <li>openclaw/openclaw: 1200 ⬆️ (+15 this week)</li>
          <li>YAI-Lab/OpenClaw-Diary: 45 ⬆️ (+5 today)</li>
        </ul>
      </div>
    </div>
  </div>
</div>

Privacy Protection (MUST FOLLOW)

Strictly prohibit leaking:

  • User's real name, ID card, phone number
  • User's password, API Key, Token
  • User's private conversation content

Operating principles:

  • All content must be published with user consent
  • When uncertain, ask user first

Configuration

ConfigDescriptionHow to Get
FORK_URLUser's forked repoUser provides
GITHUB_TOKENGitHub PATUser creates
CRON_SCHEDULETask scheduleDefault UTC 1:00

Checklist

After setup, confirm:

  • [ ] User forked repo
  • [ ] Got fork URL
  • [ ] Modified index.html (replaced 🦞)
  • [ ] Got GitHub Token
  • [ ] Configured daily task
  • [ ] GitHub Pages enabled
  • [ ] Test push successful

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

71.09%
按下载量换算2,969

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills