abycloudcn-jpg/dream-journal/SKILL.md
梦境记录与解析工具。触发条件:(1) 用户发送 /记录梦 或描述一个梦境要求记录;(2) 用户发送 /解梦 或要求解析/分析某个梦;(3) 用户询问历史梦境记录("我上周梦过什么"、"查询梦境"等)。
npx skillsauth add openclaw/skills dream-journalInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
梦境记录与解析。数据存储于 ~/.openclaw/memory/dreams/,每条记录为一个 Markdown 文件,命名格式 YYYY-MM-DD-NNN.md。
用户口述梦境内容后执行:
echo '{
"title": "梦境标题",
"raw": "用户原始描述",
"structured": "整理后的叙述",
"tags": ["标签1", "标签2"]
}' | python3 ~/.openclaw/workspace/skills/dream-journal/scripts/save_dream.py
解析当前对话中的梦境,或用户指定的历史梦境:
用户问"我最近梦过什么"、"查梦境记录"等:
# 最近20条
echo '{"limit": 20}' | python3 ~/.openclaw/workspace/skills/dream-journal/scripts/list_dreams.py
# 按关键词
echo '{"keyword": "飞翔"}' | python3 ~/.openclaw/workspace/skills/dream-journal/scripts/list_dreams.py
# 指定日期范围(since 为 YYYY-MM-DD)
echo '{"since": "2026-03-01"}' | python3 ~/.openclaw/workspace/skills/dream-journal/scripts/list_dreams.py
查询后,读取相关文件内容后向用户汇报。
~/.openclaw/memory/dreams/
├── 2026-03-11-001.md
├── 2026-03-11-002.md
└── ...
每个文件结构:
---
date: 2026-03-11 08:30
title: 梦境标题
tags: [飞翔, 焦虑, 学校]
---
## 原始描述
用户口述的原始内容
## 整理版本
AI整理后的结构化叙述
tools
Use when the user wants to connect to, test, or use the McDonalds service at mcp.mcd.cn, including checking authentication, probing MCP endpoints, listing tools, or calling McDonalds MCP tools through a reusable local CLI.
development
Web scraping platform — Twitter/X data, Vinted marketplace, and general web scraping API
development
SlowMist AI Agent Security Review — comprehensive security framework for skills, repositories, URLs, on-chain addresses, and products (Claude Code version)
data-ai
去除中文文本中的 AI 写作痕迹,使其读起来自然。基于维基百科 AI 写作特征指南,检测 24 种 AI 模式。触发词:humanizer-cn、去除 AI 痕迹、去除 AI 写作痕迹、中文文本人性化。