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

yf-memoyf 备忘录

Agent Skill

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

总安装

6,402

周安装

275

GitHub Stars

公开资料未说明

下载量

2,244
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install yf-memo

简介

个人备忘录和待办事项管理系统。当用户表达与记住、跟踪或管理任务相关的意图时使用。

SKILL.md

name
yf-memo
description
Personal memo and todo management system. Use when user expresses intent related to remembering, tracking, or managing tasks.
homepage
https://github.com/openclaw/openclaw
metadata
openclaw
emoji
📝
os
["darwin", "linux"]
requires
{ "bins": ["bash"] }
install
kind
manual
steps

🗂️ Personal Memo System Skill

A personal task tracking system integrated with OpenClaw workspace. The AI assistant uses this skill when it recognizes the user wants to manage tasks, reminders, or to-dos through natural conversation.

Core Principle: Intent-Based Activation

DO NOT implement fixed command patterns like specific phrase matching to specific actions. Avoid binding exact user phrases to script calls.

INSTEAD the AI should:

  1. Understand user intent through natural language
  2. Decide if task tracking is appropriate
  3. Use the appropriate script functions
  4. Respond conversationally

When to Consider Using This Skill

The AI assistant should consider using this skill when the user's request falls into these intent categories:

Intent Category: Memory Delegation

The user wants the assistant to remember or track something for them.

  • "I need to remember to submit the report tomorrow"
  • "Can you note that I have a meeting at 3pm?"
  • "Remind me to buy groceries after work"

AI Reasoning: User is asking me to serve as a memory aid for future actions.

Intent Category: Status Inquiry

The user wants to know what tasks are pending or need attention.

  • "What do I have on my plate right now?"
  • "Show me what's left to do today"
  • "Are there any outstanding tasks I should handle?"

AI Reasoning: User is seeking a summary of pending responsibilities.

Intent Category: Progress Tracking

The user indicates something has been completed or finished.

  • "I finished writing that document"
  • "The meeting with the client is done"
  • "Item number 2 on my list is complete"

AI Reasoning: User is providing status update that should be recorded.

Intent Category: Accomplishment Review

The user wants to review what has been accomplished.

  • "What have I completed so far this week?"
  • "Show me a summary of finished tasks"
  • "Let me see what I've gotten done today"

AI Reasoning: User wants retrospective view of completed work.

System Integration

File Structure

~/.openclaw/workspace/
├── pending-items.md          # Auto-numbered pending tasks
├── completed-items.md        # Timestamped completed tasks
└── skills/yf-memo/scripts/
    ├── memo-helper.sh        # Core management functions
    └── daily-summary.sh      # Automatic daily summaries

Script Functions

Finding the Script Location: Since skill installation paths vary per user, use these methods to locate the scripts:

Method 1: Dynamic Path Discovery (Recommended)

# Find skill directory by name (yf-memo)
SKILL_DIR=$(find ~/.openclaw/skills ~/.openclaw/workspace/skills -name "yf-memo" -type d 2>/dev/null | tail -1)
MEMO_SCRIPT="$SKILL_DIR/scripts/memo-helper.sh"
sh "$MEMO_SCRIPT" add "task description"

Method 2: Consistent Relative Path Pattern If the AI assistant is already in the OpenClaw workspace context:

sh ./skills/yf-memo/scripts/memo-helper.sh add "task description"

Method 3: Use Environment Variable Setup First, set up these environment variables in shell profile:

# Add to .zshrc or .bashrc
export YFMEMO_SKILL_DIR="$HOME/.openclaw/skills/yf-memo"
export YFMEMO_SCRIPT="$YFMEMO_SKILL_DIR/scripts/memo-helper.sh"

Then use:

sh "$YFMEMO_SCRIPT" add "task description"

Available Functions (using dynamic location):

  • Add new task: sh "$MEMO_SCRIPT" add "item description"
  • Mark task X as complete: sh "$MEMO_SCRIPT" complete-number X
  • Mark matching task as complete: sh "$MEMO_SCRIPT" complete-content "partial text"
  • Display pending tasks: sh "$MEMO_SCRIPT" show-todos
  • Display completed tasks: sh "$MEMO_SCRIPT" show-done

daily-summary.sh - For scheduled daily summaries (located in same scripts directory)

AI Assistant Guidelines

Memory Delegation Flow

  1. Recognize user wants to delegate memory of a task
  2. Extract the task description from natural language
  3. Execute: sh "$MEMO_SCRIPT" add "task description"
  4. Respond with confirmation including assigned number

Example interaction:

User: "I should remember to call the dentist tomorrow"
AI Reasoning: User wants me to remember this task for them
AI Action: sh "$MEMO_SCRIPT" add "call the dentist tomorrow"
AI Response: "✅ I've added that as item 3: call the dentist tomorrow"

Status Inquiry Flow

  1. Recognize user wants to see pending tasks
  2. Execute: sh "$MEMO_SCRIPT" show-todos
  3. Present results conversationally

Example interaction:

User: "What's still on my todo list?"
AI Reasoning: User wants to see pending tasks
AI Action: sh "$MEMO_SCRIPT" show-todos
AI Response: Cool, I'll check... <shows results>

Progress Tracking Flow

  1. Recognize user is reporting task completion
  2. Determine if completion refers to item number or content
  3. Execute appropriate completion command
  4. Confirm the completion

Example interaction:

User: "I finished that report"
AI Reasoning: User saying a task is done
AI Action: sh "$MEMO_SCRIPT" complete-content "report"
AI Response: "✅ Marked that as complete!"

Important Notes for AI

Language Flexibility

  • Support both Chinese and English expressions
  • Don't fixate on exact phrases
  • Focus on intent over specific wording

User Experience

  • Always confirm actions clearly
  • Include the item number in responses when applicable
  • Keep responses natural, not robotic

Error Handling

  • If a task isn't found, explain clearly
  • Offer to show current list if there's confusion
  • Suggest alternative actions when appropriate

Sample Conversations

Conversation 1: Natural Task Addition

User: "Oh, I need to email Sarah about the project update"
AI: "✅ I'll track that for you. Added as item 2: email Sarah about project update"

Conversation 2: Checking Status

User: "What's still outstanding?"
AI: "Let me check... You have 2 pending items..."

Conversation 3: Mixed Language

User: "我刚刚完成了第三件事"
AI: "✅ Marked item 3 as completed!"

Conversation 4: Implicit Request

User: "有哪几件事需要我今天处理?"
AI: "Here's what's on your pending list..." 

Development Philosophy

This skill embodies the principle that AI assistants should:

  • Understand intent, not just parse commands
  • Adapt to natural human conversation patterns
  • Provide value through contextual understanding
  • Maintain conversation flow organically

The system exists to support the assistant in helping the user manage tasks, not to enforce rigid interaction patterns.


*This skill enables natural task management through conversational AI.*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

78.27%
按下载量换算1,756

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills