Install
openclaw skills install learning-plannerPersonal learning management system with goal setting, spaced repetition scheduling, and progress tracking. Use when: (1) setting learning goals and skill tr...
openclaw skills install learning-planner个人学习管理系统,帮助设定学习目标、制定计划、跟踪进度,并提供间隔重复复习功能。
cd ~/.openclaw/workspace/skills/learning-planner
pip install -e .
# 添加到 PATH (可选)
ln -s ~/.openclaw/workspace/skills/learning-planner/src/learning_cli.py ~/.local/bin/learning
# 创建学习目标
learning goal create "Python 编程" --description "掌握 Python 编程语言" --deadline 2024-12-31
# 创建子目标(知识点分解)
learning goal create "Python 基础语法" --parent 1 --priority high
learning goal create "Python 面向对象" --parent 1 --priority high
learning goal create "Python 高级特性" --parent 1 --priority medium
# 列出目标
learning goal list
# 查看目标详情
learning goal show 1
# 更新目标进度
learning goal progress 1 --percent 75
# 完成目标
learning goal complete 1
# 生成今日学习计划
learning plan today
# 生成本周学习计划
learning plan week
# 查看计划
learning plan list
# 标记任务完成
learning plan complete 1
# 推迟任务
learning plan postpone 1 --days 1
# 创建复习卡片
learning card create "Python 列表推导式语法" --answer "[x for x in iterable if condition]" --tags python,basics
# 今日复习
learning review today
# 查看复习统计
learning review stats
# 手动调整卡片难度
learning card difficulty 1 --level hard
# 添加资源
learning resource add "Python 官方文档" --url https://docs.python.org --type documentation --tags python
# 关联资源到目标
learning resource link 1 --goal 1
# 列出资源
learning resource list
# 搜索资源
learning resource search python
# 学习统计
learning stats
# 生成学习报告
learning report --days 30
# 查看技能树进度
learning tree
# 学习时长统计
learning time --days 7
数据库位置:~/.config/learning-planner/learning.db
# 查看数据库路径
learning data path
{
id: int
title: str # 目标名称
description: str # 描述
parent_id: int # 父目标 ID
priority: str # 优先级: low, medium, high
status: str # 状态: active, completed, paused
progress: float # 进度 0-100
deadline: str # 截止日期
estimated_hours: int # 预估学习时长
completed_hours: int # 已完成时长
created_at: str
updated_at: str
}
{
id: int
goal_id: int # 关联目标
title: str # 任务标题
description: str # 描述
scheduled_date: str # 计划日期
estimated_minutes: int # 预估时长(分钟)
status: str # 状态: pending, completed, postponed
completed_at: str # 完成时间
created_at: str
}
{
id: int
goal_id: int # 关联目标
front: str # 卡片正面(问题)
back: str # 卡片背面(答案)
tags: str # 标签
ease_factor: float # 难度系数
interval: int # 间隔天数
repetitions: int # 重复次数
next_review: str # 下次复习时间
last_review: str # 上次复习时间
created_at: str
}
{
id: int
card_id: int # 卡片 ID
quality: int # 评分 0-5
reviewed_at: str # 复习时间
time_spent: int # 用时(秒)
}
{
id: int
title: str # 资源名称
url: str # 链接
resource_type: str # 类型: video, article, book, documentation
tags: str # 标签
goal_id: int # 关联目标
notes: str # 备注
created_at: str
}
{
id: int
goal_id: int # 关联目标
start_time: str # 开始时间
end_time: str # 结束时间
duration: int # 时长(分钟)
notes: str # 备注
}
间隔重复算法基于 SuperMemo-2 算法:
评分 (Quality): 0-5 分
难度系数 (EF): 初始 2.5,范围 1.3-2.5
间隔天数: