/install l6-learning-accelerator
l6-learning-accelerator - Learning Accelerator Skill
Description
A learning acceleration skill that implements 2-signal fusion retrieval (Vector + Time) with temporal routing for intelligent memory access. Provides progress tracking and time-aware context retrieval for enhanced learning workflows.
Triggers
learning acceleratoraccelerated learningtime-aware retrievalmemory fusionl6study acceleratorlearning boost
Capabilities
2-Signal Fusion Retrieval
Combines vector similarity search with temporal relevance scoring to retrieve the most contextually appropriate memories and notes.
Temporal Routing
detect_temporal()- Identifies temporal intent in queriesget_date_range()- Extracts date ranges from natural language
Progress Tracking
- Track learning sessions
- Monitor progress over time
- Generate progress reports
Files
SKILL.md- This metadata filesrc/retrieval.js- 2-signal fusion retrieval implementationsrc/temporal.js- Time routing functionssrc/progress.js- Progress tracking moduletest/basic.test.js- Basic test suite
Usage
// Import the skill modules
const { retrieve } = require('./src/retrieval');
const { detect_temporal, get_date_range } = require('./src/temporal');
const { track_progress, get_report } = require('./src/progress');
// Example: Time-aware retrieval
const results = await retrieve(query, {
vector_weight: 0.6,
time_weight: 0.4,
date_range: get_date_range('last week')
});
// Example: Progress tracking
track_progress('session', { topic: 'JavaScript', duration: 45 });
const report = get_report('weekly');
Configuration
Add to your workspace config:
{
"l6": {
"vector_weight": 0.6,
"time_weight": 0.4,
"decay_factor": 0.95,
"memory_path": "./memory"
}
}
Dependencies
- None (pure JavaScript implementation)
Version
1.0.0
Author
OpenClaw Skills
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install l6-learning-accelerator - 安装完成后,直接呼叫该 Skill 的名称或使用
/l6-learning-accelerator触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
L6 Learning Accelerator 是什么?
Provides time-aware memory retrieval by combining vector similarity with temporal relevance and tracks learning progress for enhanced study management. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 106 次。
如何安装 L6 Learning Accelerator?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install l6-learning-accelerator」即可一键安装,无需额外配置。
L6 Learning Accelerator 是免费的吗?
是的,L6 Learning Accelerator 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
L6 Learning Accelerator 支持哪些平台?
L6 Learning Accelerator 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 L6 Learning Accelerator?
由 wyblhl(@wyblhl)开发并维护,当前版本 v1.0.0。