Overview
- Skill Key
- harrylabs0913/study-buddy
- Author
- harrylabs0913
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/harrylabs0913/study-buddy
- Latest Commit SHA
- a08f3c648e1cf95dbcd994a5ece777dc70a7d0f6
AI-powered learning companion for creating personalized study plans, tracking progress, and providing feedback. Use when user wants to start learning something new, create a study plan, track learning progress, get study reminders, or receive learning feedback. Triggers include "帮我制定学习计划", "我要学XX", "追踪我的学习进度", "学习打卡", "study plan", "learn programming", "track my progress".
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 study-buddy 技能。 若已安装,则直接安装 study-buddy 技能。
# Study Buddy - 智能学习伴侣 帮你制定学习计划、追踪进度、提供反馈的 AI 学习伴侣。 ## 核心功能 1. **用户档案** - 交互式收集学习目标、时间、水平、偏好 2. **学习计划** - 基于背景生成个性化阶段性计划 3. **每日打卡** - 记录学习时长和内容 4. **进度跟踪** - 统计学习天数、连续打卡、阶段评估 5. **学习报告** - 生成周期性学习总结和评级 6. **错题本** - 记录、复习、掌握错题 7. **反馈建议** - 基于数据给出个性化建议 ## 命令入口 ```bash # 开始学习之旅(交互式收集背景) python3 scripts/study-buddy.py start # 查看今日学习任务 python3 scripts/study-buddy.py today # 学习打卡 python3 scripts/study-buddy.py checkin "学习了Python基础语法" --duration "45分钟" # 查看学习进度 python3 scripts/study-buddy.py progress # 查看学习计划 python3 scripts/study-buddy.py plan # 生成学习报告 python3 scripts/study-buddy.py report # 错题本管理 python3 scripts/study-buddy.py wrong add "二次函数求根错误" python3 scripts/study-buddy.py wrong list python3 scripts/study-buddy.py wrong review "错题ID" python3 scripts/study-buddy.py wrong master "错题ID" # 获取反馈建议 python3 scripts/study-buddy.py feedback # 查看学习数据存储位置 python3 scripts/study-buddy.py data ``` ## 数据存储 用户数据存储在: `~/.study-buddy/` - `profile.json` - 学习背景档案 - `plans/` - 学习计划目录 - `logs/` - 学习记录日志 - `wrong_questions/` - 错题本 - `report_YYYYMMDD.json` - 学习报告 ## 使用流程 1. **初始化**: 运行 `start` 创建学习档案 2. **制定计划**: 根据背景自动生成学习计划,使用 `plan` 查看 3. **每日执行**: 使用 `today` 查看任务,`checkin` 打卡 4. **定期复盘**: 使用 `progress` 查看进展,`report` 生成报告 5. **错题管理**: 使用 `wrong` 命令管理错题本 ## 目标用户 优先聚焦:**高中生及家长** ## 安全边界 - ✅ 学习计划制定、进度跟踪、打卡、反馈、学习报告 - ❌ 不提供具体学科教学内容(如数学题解答) - ❌ 不替代老师/家长决策 - ❌ 不接外部教育平台 - ❌ 不做夸张的学习效果承诺 - ❌ 不收集敏感隐私 - ✅ 尊重用户隐私,数据本地存储 - ✅ 建议用户结合真人教师或专业课程 ## 扩展计划(未来规划,非当前版本) 以下功能为后续迭代方向...
# Study Buddy - 智能学习伴侣 > AI-powered learning companion for creating personalized study plans, tracking progress, and providing feedback. 一个轻量级的命令行学习管理工具,帮你制定学习计划、追踪进度、管理错题本。 ## ✨ 核心特性 - 📋 **学习档案** - 交互式收集学习目标、时间、水平、偏好 - 📅 **学习计划** - 自动生成三阶段学习计划(入门→核心→实践) - ✅ **每日打卡** - 记录学习时长和内容,追踪连续打卡 - 📊 **进度统计** - 学习天数、连续打卡、可视化进度条 - 📈 **学习报告** - 生成评级报告,评估学习阶段 - 📝 **错题本** - 添加、复习、标记掌握错题 - 💡 **反馈建议** - 基于学习数据提供个性化建议 ## 🚀 快速开始 ### 安装 ```bash # 克隆或下载到本地 cd ~/.openclaw/workspace/skills/study-buddy # 确保有 Python 3 python3 --version ``` ### 使用 ```bash # 1. 开始学习之旅(交互式创建档案) python3 scripts/study-buddy.py start # 2. 查看今日学习任务 python3 scripts/study-buddy.py today # 3. 学习打卡 python3 scripts/study-buddy.py checkin "学习了Python列表操作" --duration "45分钟" # 4. 查看学习进度 python3 scripts/study-buddy.py progress # 5. 查看学习计划 python3 scripts/study-buddy.py plan # 6. 生成学习报告 python3 scripts/study-buddy.py report # 7. 错题本管理 python3 scripts/study-buddy.py wrong add "二次函数求根错误" python3 scripts/study-buddy.py wrong list python3 scripts/study-buddy.py wrong review "错题ID" python3 scripts/study-buddy.py wrong master "错题ID" # 8. 获取反馈建议 python3 scripts/study-buddy.py feedback # 9. 查看数据位置 python3 scripts/study-buddy.py data ``` ## 📁 数据存储 所有数据存储在本地 `~/.study-buddy/` 目录: ``` ~/.study-buddy/ ├── profile.json # 学习档案 ├── plans/ # 学习计划 │ └── plan_YYYYMMDD.json ├── logs/ # 学习日志 │ └── YYYY-MM-DD.json ├── wrong_questions/ # 错题本 │ └── wrong_questions.json └── report_YYYYMMDD.json # 学习报告 ``` ## 🎯 目标用户 - 高中生及家长 - 自学者 - 需要系统学习规划的学习者 ## 🛡️ 安全边界 - ✅ 学习计划制定、进度跟踪、打卡、反馈、学习报告 - ❌ 不提供具...
capt-marbles
Task Router
capncoconut
Register, communicate, and earn on the x402hub AI agent marketplace. Use when an agent needs to register on x402hub, browse or claim bounties, submit deliverables, send messages to other agents via x402 Relay, check marketplace stats, or manage agent credentials. Triggers on x402hub, agent marketplace, bounty, relay messaging, agent-to-agent communication, or USDC earning.
capevace
Real-time event bus for AI agents. Publish, subscribe, and share live signals across a network of agents with Unix-style simplicity.
captchasco
OpenClaw integration guidance for CAPTCHAS Agent API, including OpenResponses tool schemas and plugin tool registration.
carol-gutianle
name: modelready description: Start using a local or Hugging Face model instantly, directly from chat. metadata: {"openclaw":{"requires":{"bins": "bash", "curl" }, "env": "URL" }}
canbirlik
Controls Wiz smart bulbs (turn on/off, RGB colors, disco mode) via local WiFi.