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

mind-log思维日志

Agent Skill

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

总安装

2,546

周安装

103

GitHub Stars

公开资料未说明

下载量

799
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install mind-log

简介

通过 Telegram 发送每日日记提示,将用户回复存储在 MindLog 中,并在东部时间每周日下午 2 点提供每周模式分析报告。

SKILL.md

MindLog Skill — OpenClaw Config

What MindLog Is

MindLog is OpenClaw's memory. It stores journal entries and returns them on request. OpenClaw uses it to write the user's daily journal entries and retrieve them for weekly analysis. MindLog has no intelligence — it is purely a data store. All scheduling, prompting, analysis, and delivery is OpenClaw's job.


Environment Variables

Collect these during onboarding. All three are required before any skill can run.

VariableHow to Obtain
MINDLOG_API_KEYGenerated on signup at mindlogger.app
TELEGRAM_BOT_TOKENCreate a bot via BotFather at t.me/botfather
TELEGRAM_CHAT_IDMessage @userinfobot on Telegram — it replies with your ID

Onboarding

When this skill is first registered, immediately and automatically send the following message to the user via Telegram — do not wait to be asked, do not confirm registration first, just send it:

  1. Send: "To set up MindLog I need three things — reply with them one per line:

1. MindLog API key (from mindlogger.app) 2. Telegram bot token (from BotFather at t.me/botfather) 3. Telegram chat ID (message @userinfobot on Telegram to get it)"

  1. Wait for reply and parse all three values.
  1. Store as MINDLOG_API_KEY, TELEGRAM_BOT_TOKEN, TELEGRAM_CHAT_ID in config.
  1. If any value is missing or unclear, re-prompt specifically:

"Still need your [missing var] — reply with just that value."

  1. Do not proceed until all three are stored.

Test Setup

After storing all config, verify everything works before scheduling:

  1. Call GET /api/ping with the API key. Expected: { "success": true, "message": "API key valid" }.

- If 401: re-prompt user for the correct API key. - If unreachable: notify user "MindLog API is not responding. Check that mindlogger.app is live."

  1. Send a test Telegram message:
   POST https://api.telegram.org/bot${TELEGRAM_BOT_TOKEN}/sendMessage
   { "chat_id": "${TELEGRAM_CHAT_ID}", "text": "MindLog test: Setup complete." }

- If fails: "Telegram send failed. Check your bot token is correct and the bot has been started."

  1. Only after both pass, send this confirmation via Telegram:

"MindLog is connected. Here's what happens next:

Every day at 2pm ET I'll send you a journal prompt. Just reply to it in a few sentences — no right or wrong answer.

The real value arrives every Sunday at 2pm. That's when I pull everything you've written that week, find the patterns in how you think, and send you a full report with specific things to work on. This runs every Sunday regardless of when you signed up — even if you only have a few entries.

The more evenings you reply to, the sharper the Sunday report gets. See you tonight."


Scheduling Setup

MindLog relies on timed triggers for daily prompts and weekly reports.

  1. Check cron access: run openclaw cron list to verify.
  1. If accessible, add both jobs:
   openclaw cron add --name mindlog-daily --schedule "0 14 * * *" --command "openclaw exec mindlog-daily-prompt"
   openclaw cron add --name mindlog-weekly --schedule "0 14 * * 0" --command "openclaw exec mindlog-weekly-report"
  1. If cron is blocked (permission error or not available):

- Notify user: "Cron access is blocked. I can use heartbeat polling instead (checks ~every 30 min). Approve, or enable elevated permissions?" - If approved: update HEARTBEAT.md with time-check logic for both triggers. - If user enables elevated perms: retry cron setup.

  1. Confirm scheduling method to user before proceeding.

Overview

This skill gives OpenClaw three capabilities:

  1. Prompt the user to journal every evening via Telegram
  2. Receive the user's reply and store it in MindLog
  3. Every Sunday evening, pull the week's entries, analyze with Grok, and deliver a pattern report via Telegram

Skill 1: Daily Journal Prompt

Name: mindlog-daily-prompt Trigger: Cron Schedule: 0 14 * * * (2:00pm ET daily)

What it does:

  1. Calls MindLog to get today's prompt
  2. Sends the prompt to the user via Telegram

HTTP Call 1 — Get today's prompt:

POST ${MINDLOG_BASE_URL}/api/prompt/trigger
Headers:
  x-api-key: ${MINDLOG_API_KEY}
  Content-Type: application/json

Expected response:

{ "success": true, "prompt": "What was my mind saying most today?" }

HTTP Call 2 — Send prompt via Telegram:

POST https://api.telegram.org/bot${TELEGRAM_BOT_TOKEN}/sendMessage
Content-Type: application/json

{
  "chat_id": "${TELEGRAM_CHAT_ID}",
  "text": "MindLog\
\
{prompt}\
\
Just reply to this message."
}

Skill 2: Receive Journal Entry

Name: mindlog-save-entry Trigger: Telegram message received (user replies to the daily prompt)

What it does:

  1. Captures the user's Telegram reply
  2. Stores it in MindLog with the prompt that triggered it

HTTP Call — Save entry:

POST ${MINDLOG_BASE_URL}/api/entries
Headers:
  x-api-key: ${MINDLOG_API_KEY}
  Content-Type: application/json

{
  "prompt": "{the prompt that was sent earlier today}",
  "content": "{user's telegram reply}"
}

Expected response:

{ "success": true, "entryId": "abc123" }

Confirmation message back to user via Telegram:

POST https://api.telegram.org/bot${TELEGRAM_BOT_TOKEN}/sendMessage

{
  "chat_id": "${TELEGRAM_CHAT_ID}",
  "text": "Logged. See you tomorrow."
}

Keep the confirmation short. No praise, no fluff.


Skill 3: Weekly Pattern Report

Name: mindlog-weekly-report Trigger: Cron Schedule: 0 14 * * 0 (2pm every Sunday — fixed cadence, fires regardless of when skill was registered)

What it does:

  1. Pulls all entries from the past 7 days
  2. Analyzes patterns across all entries
  3. Delivers the report to the user via Telegram

HTTP Call 1 — Get week's entries:

GET ${MINDLOG_BASE_URL}/api/entries/week
Headers:
  x-api-key: ${MINDLOG_API_KEY}

Expected response:

{
  "success": true,
  "count": 7,
  "entries": [ ... ]
}

OpenClaw Analysis — System Prompt:

You are analyzing a week of personal journal entries.
Your job is to identify THINKING PATTERNS — not what happened, but how this person thinks.

Return your analysis in this exact structure:

PATTERNS
- [2-3 recurring thought patterns, each citing which days it appeared]

ROOT BELIEFS
- [1-2 underlying beliefs driving those patterns]
- Only include if supported by at least two entries
- If uncertain, say "insufficient data"

ACTION ITEMS
- [3 specific behavioral tasks for next week]

Rules:
- Be direct. No fluff. No therapy speak.
- Only include patterns that appear at least twice across the week
- Cite the specific entry or day as evidence for each pattern
- Action items must have a trigger or deadline — not advice, actual tasks
- Do not overgeneralize from a single entry
- Keep the full report under 300 words
- Write as if speaking directly to the person

Entries passed to OpenClaw for analysis:

Here are my journal entries from this week:

Day 1 — Prompt: "{prompt}"
Entry: "{content}"

Day 2 — Prompt: "{prompt}"
Entry: "{content}"

... (repeat for all entries)

HTTP Call 2 — Deliver report via Telegram:

POST https://api.telegram.org/bot${TELEGRAM_BOT_TOKEN}/sendMessage

{
  "chat_id": "${TELEGRAM_CHAT_ID}",
  "text": "MindLog Weekly Report\
\
{openclaw_analysis}"
}

Error Handling

SituationAction
API returns 401Re-prompt user for the correct MINDLOG_API_KEY
API returns 500Retry once after 10 seconds. If still fails, notify user: "MindLog returned an error. Try again later."
Telegram send failsNotify user in any available channel. Check TELEGRAM_BOT_TOKEN is valid via BotFather.
User doesn't reply to promptSkip save for that day. Log the miss internally. Do not send a follow-up.

Full Flow Summary

Monday-Saturday 2pm ET
OpenClaw cron fires
-> GET today's prompt from MindLog
-> Send prompt to user via Telegram
-> User replies -> save to MindLog -> send "Logged. See you tomorrow."
-> User doesn't reply -> skip, log miss, no follow-up

Sunday 2pm (every week, fixed — regardless of when skill was registered)
OpenClaw cron fires
-> GET week's entries from MindLog
-> OpenClaw analyzes patterns (works with whatever entries exist, minimum 1)
-> Send report to user via Telegram
-> API error -> retry once, then notify user

Notes

  • MindLog base URL: https://mindlogger-production.up.railway.app
  • All MindLog calls require x-api-key header
  • Telegram chat ID: ${TELEGRAM_CHAT_ID}
  • Always run the Sunday report regardless of how many entries exist — even 1 entry is enough. Grok will work with what it has and note if data is limited
  • Keep all Telegram messages plain text, no markdown formatting, Telegram renders it inconsistently
  • Keep all agent messages under 100 words to minimize token burn

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

89.46%
按下载量换算715

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills