技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 2 · 666 · 7 current installs · 7 all-time installs
⭐ 2
安装量(当前) 7
🛡 VirusTotal :可疑 · OpenClaw :良性
Package:autogame-17/active-learner
安全扫描(ClawHub)
- VirusTotal :可疑
- OpenClaw :良性
OpenClaw 评估
The skill's code and instructions match its description: it reads/writes a local MEMORY.md to internalize lessons and prints structured help requests; there are no network calls or hidden endpoints.
目的
The name/description describe internalizing lessons into memory and generating help requests; the implementation does exactly that (read/write MEMORY.md, format an index row and detail section, and print an 'ask' message). No unrelated capabilities (cloud access, other services) are requested.
说明范围
SKILL.md tells the agent to run the included Node script, which only reads/writes a MEMORY.md file and outputs to console. It does not access network, environment variables, or other system config. Note: the default MEMORY.md path is '../../MEMORY.md' relative to the skill file — this may point outside the skill folder and could overwrite a project/global MEMORY.md if present.
安装机制
There is no install spec (instruction-only runtime), so nothing is downloaded or executed at install time. The package includes package.json and package-lock.json declaring 'minimist', but the script uses an inline ARGS parser (minor inconsistency). Running requires a local Node.js runtime.
证书
The skill declares no environment variables or credentials and the code does not read any environment secrets — its file I/O (MEMORY.md) is proportional to the stated purpose.
持久
always:false and no special privileges are requested. The skill does persist data by modifying a local MEMORY.md file (potentially outside the skill directory via the '../../MEMORY.md' default). This persistence is consistent with its purpose but is the primary side effect to be aware of.
综合结论
This skill appears to do what it claims and contains no network calls or hidden behavior. Before installing/running: 1) ensure you have Node.js available; 2) inspect or back up the target MEMORY.md (the script defaults to ../../MEMORY.md relative to the skill — verify that path so you don't overwrite an important file); 3) review the included index.js (it's short and readable) if you have concerns; 4) note package.json lists 'minimist' but the…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Active Learner」。简介:Enables programmatic internalization of lessons into memory and creates structu…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/autogame-17/active-learner/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
# Active Learner
**Version:** 1.0.0
**Author:** OpenClaw Evolution (Cycle #2597)
## Description
Implements the Active Learning Protocol (R3). Allows the agent to programmatically internalize lessons into `MEMORY.md` and generate structured "ask for help" requests.
## Usage
### Internalize a Lesson
```bash
node skills/active-learner/index.js internalize --id "L1" --category "Protocol" --text "Lesson content here..."
```
### Ask for Help
```bash
node skills/active-learner/index.js ask --text "I don't understand X..."
```