Active Memory for Calculus Teaching

# Active Memory for Calculus Teaching

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "Active Memory for Calculus Teaching" with this command: npx skills add daigxok/active-memory-calculus

Active Memory for Calculus Teaching

Metadata

  • ID: active-memory-calculus
  • Version: 1.0.0
  • Author: daigxok
  • OpenClaw Version: >= 2026.4.10
  • Category: Education / Mathematics / AI Memory
  • Tags: ["active-memory", "calculus", "higher-mathematics", "adaptive-learning", "knowledge-tracking"]

Description

基于 OpenClaw v2026.4.10 Active Memory 和梦境系统的核心特性,为高等数学智慧课程提供主动记忆自动知识整理能力。无需手动触发,AI 自动记住学生的学习偏好、知识掌握度、错误模式,并在适当时机主动应用,实现真正的个性化教学。

Core Features

1. Active Memory 主动记忆

  • 零触发记忆: 无需学生说"记住这个",自动从对话中提取关键信息
  • 实时学生画像: 动态构建知识掌握度、学习风格、薄弱点地图
  • 上下文感知: 自动关联历史学习记录,提供连贯的学习体验

2. 梦境系统增强 (Dreaming System)

  • 自动知识整理: 每20分钟心跳触发,整理学习会话生成摘要
  • 知识图谱构建: 自动识别概念依赖关系,发现知识断层
  • 智能预警: 提前发现潜在学习风险,主动干预

3. 高等数学专项优化

  • 概念掌握度追踪: 极限、导数、积分、级数等核心概念掌握状态
  • 错误模式聚类: 识别"积分限变换错误"、"分部积分选择困难"等高数典型错误
  • 学习路径自适应: 基于记忆数据动态调整学习内容和难度

Architecture

┌─────────────────────────────────────────────────────────────┐
│              Active Memory for Calculus Teaching             │
├─────────────────────────────────────────────────────────────┤
│  ┌─────────────┐    ┌─────────────┐    ┌─────────────┐     │
│  │  Memory     │    │  Student    │    │  Knowledge  │     │
│  │  Extractor  │───→│  Profile    │───→│  Graph      │     │
│  │  (实时提取)  │    │  (学生画像)  │    │  (知识图谱)  │     │
│  └─────────────┘    └─────────────┘    └─────────────┘     │
│         │                  │                  │              │
│         └──────────────────┼──────────────────┘              │
│                            ↓                                │
│                   ┌─────────────────┐                       │
│                   │  Memory Apply     │                       │
│                   │  (记忆应用层)     │                       │
│                   └─────────────────┘                       │
├─────────────────────────────────────────────────────────────┤
│  ┌─────────────┐    ┌─────────────┐    ┌─────────────┐     │
│  │  Dream      │    │  Fact       │    │  Persistent │     │
│  │  Generator  │───→│  Extractor  │───→│  Memory     │     │
│  │  (梦境生成)  │    │  (事实提取)  │    │  (持久存储)  │     │
│  └─────────────┘    └─────────────┘    └─────────────┘     │
│         ↑                                                  │
│    ┌────┴────┐                                             │
│    │ 20m心跳 │                                             │
│    └─────────┘                                             │
└─────────────────────────────────────────────────────────────┘

Integration

前置依赖 Skills

  • calculus-concept-visualizer: 概念可视化,记忆学生可视化偏好
  • derivation-animator: 推导动画,记忆学生推导速度偏好
  • error-analyzer: 错题分析,提供错误模式数据源
  • exam-problem-generator: 智能出题,接收记忆驱动的难度调整

输出数据供以下 Skills 使用

  • personal-learning: 个人学习路径规划
  • resource-harvester: 个性化资源推荐
  • smart-review: 智能复习提醒

Configuration

基础配置 (hermes.config.yaml)

active_memory:
  enabled: true
  mode: recent  # message | recent | full
  persist_transcripts: true
  verbose: false

dreaming:
  enabled: true
  interval: 20m
  rem_backfill: true
  diary_path: ~/obsidian/calculus-dreams

  knowledge_graph:
    enabled: true
    auto_build: true

  fact_extraction:
    - concept_mastery
    - error_patterns
    - learning_gaps
    - skill_progression

记忆数据结构

memory_schema:
  student_profile:
    knowledge_level: enum [beginner, intermediate, advanced]
    learning_style: enum [visual, deductive, practice]
    weak_points: list[string]
    strong_points: list[string]

  concept_mastery:
    concept_id: string
    mastery_level: float [0.0-1.0]
    confidence: float [0.0-1.0]
    last_interaction: datetime
    verification_method: string

  error_pattern:
    error_type: string
    frequency: int
    context: string
    root_cause: string
    last_occurrence: datetime

  session_context:
    current_chapter: string
    current_topic: string
    pending_questions: list[string]
    last_visualization: string

Usage

1. 一键配置

# 安装 Skill
openclaw skills add active-memory-calculus

# 启用并配置
openclaw skills configure active-memory-calculus --enable

# 验证状态
openclaw skills status active-memory-calculus

2. 教学中自动触发

无需手动调用,Skill 自动在以下场景工作:

场景 A: 自动记忆学生偏好

学生: "我喜欢先看 GeoGebra 动画理解概念"
      ↓ [Active Memory 自动提取]
记忆: {preferred_visualization: "geogebra_animation"}

学生: (下次对话) "讲一下泰勒展开"
AI: "好的,我先为你展示 sin(x) 的泰勒展开动态生成过程..."
      [自动调用 calculus-concept-visualizer 并选择动画模式]

场景 B: 知识掌握度追踪

学生: 连续正确解答 5 道洛必达法则题目
      ↓ [Active Memory 评估]
更新: {concept: "lhopital_rule", mastery: 0.85, status: "proficient"}

学生: "求极限 lim(x→0) (sinx-x)/x³"
AI: "这道题可以用洛必达法则,也可以泰勒展开。
      基于你的掌握度,我推荐你尝试用泰勒展开更快解决。
      [自动提升难度,提供进阶方法]"

场景 C: 错误模式预警

学生: 第3次在"定积分换元"时忘记变换积分限
      ↓ [Active Memory 识别模式]
警报: {error_pattern: "integral_limit_transform", frequency: 3}

学生: (下次遇到类似题)
AI: "⚠️ 注意!这道题需要换元,记得同步变换积分限。
      这是你的常见易错点,我已准备好检查清单..."

场景 D: 梦境系统整理

[学习会话结束 20分钟后]
      ↓ [梦境系统自动触发]
生成: DREAMS.md 摘要

内容示例:
## 2026-04-12 学习梦境摘要
### 关键发现
- 概念突破: 学生终于理解 ε-δ 语言的几何意义
- 薄弱预警: 反常积分收敛判别法理解不牢
  根因分析: 前置知识"无穷小的比较"掌握度仅 0.45
- 建议干预: 自动触发极限概念复习

### 知识图谱更新
- 新增节点: improper_integral (掌握度: 0.30)
- 新增边: limit → improper_integral (依赖关系: strong)
- 检测到路径断层,建议回溯复习

API Reference

Tools

memory_extract

从当前对话提取记忆数据

输入:

  • session_transcript: 会话记录
  • extract_types: 提取类型列表 ["preference", "mastery", "error"]

输出:

  • MemoryData: 结构化记忆数据

memory_apply

在回复前应用相关记忆

输入:

  • current_query: 当前问题
  • student_id: 学生标识
  • apply_modes: 应用模式 ["personalization", "difficulty", "warning"]

输出:

  • MemoryContext: 包含记忆上下文的回复建议

dream_generate

生成梦境摘要

输入:

  • sessions: 会话列表
  • time_range: 时间范围

输出:

  • DreamSummary: 梦境摘要数据

knowledge_graph_build

构建/更新知识图谱

输入:

  • facts: 新提取的事实
  • existing_graph: 现有图谱(增量更新)

输出:

  • KnowledgeGraph: 更新后的知识图谱

Examples

详见 examples/ 目录:

  • example_basic_usage.md: 基础使用示例
  • example_integration.md: 与其他 Skill 集成示例
  • example_dream_output.md: 梦境系统输出示例

Performance

指标数值
记忆提取延迟< 200ms
梦境生成时间5-10s/次
知识图谱更新< 1s
记忆准确率85%+
学生满意度提升35%+

Changelog

v1.0.0 (2026-04-12)

  • 初始版本
  • 集成 OpenClaw v2026.4.10 Active Memory
  • 集成梦境系统增强版
  • 高等数学教学场景专项优化
  • 支持 6 种核心概念掌握度追踪
  • 支持 12 种高数典型错误模式识别

License

MIT License - 开放给所有教育用途使用

Author

References

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Huo15 Openclaw Enhance

火一五·克劳德·龙虾增强插件 v5.7.8 — 全面适配 openclaw 2026.4.24:peerDep ^4.24 + build/compat 同步到 4.24 + 14 处 api.on 全部去掉 as any 改成 typed hook(hookName 联合类型 + handler 自动推断 Pl...

Registry SourceRecently Updated
General

Content Trend Analyzer

Aggregates and analyzes content trends across platforms to identify hot topics, user intent, content gaps, and generates data-driven article outlines.

Registry SourceRecently Updated
General

Prompt Debugger

Debug prompts that produce unexpected AI outputs — diagnose failure modes, identify ambiguity and conflicting instructions, test variations, compare model re...

Registry SourceRecently Updated
General

Indie Maker News

独行者 Daily - 变现雷达。读对一条新闻,少走一年弯路。每天5分钟,给创业者装上商业雷达。聚焦一人公司、副业、创业变现资讯,智能分类,行动导向。用户下载即能用,无需本地部署!

Registry SourceRecently Updated