Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

learning-coordinator学习协调员

Agent Skill

learning-coordinator 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 OpenClaw 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,433

周安装

231

GitHub Stars

公开资料未说明

下载量

1,903
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:learning-coordinator(学习协调员)
来源仓库:https://github.com/whoisme007/learning-coordinator
安装命令:
openclaw skills install learning-coordinator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install learning-coordinator

简介

协调学习信号与阶段管理,增强自我记忆与模式识别能力。

  • 适用于监控修正行为与偏好变化,动态调整学习方向。
  • 跟踪技能改进节点,识别新兴市场机会与薄弱环节。
  • 需与其他学习组件协同工作,单独使用功能受限。learning-coordinator 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 建议初始化时设定基线指标,便于后续效果量化对比。

SKILL.md

name
learning-coordinator
version
2.0.0
layer
processing
function_type
learning_coordination
health
healthy
adapter
learning_coordinator_adapter
dependencies
[]
slug
learning-coordinator
homepage
https://clawhub.com/skills/learning-coordinator
description
Coordinates learning signals, pattern promotion, and stage management
changelog
Initial release – single-function plugin split from SIPA skill.
metadata
clawdbot
emoji
🎓
requires
bins
[]
os
configPaths

When to Use

  • Need to check learning stage of a pattern or correction
  • Want to identify emerging patterns from repeated corrections
  • Need to coordinate promotion/demotion of patterns across memory tiers
  • Integrating with correction‑logger and preference‑tracker for learning workflows

Architecture

NeverOnce 增强功能

  • 有效性反馈集成:从增强correction-logger获取有效性分数,跟踪修正使用历史
  • 动态阶段转换算法:基于有效性的自动阶段提升/降级

- 高有效性模式 → 加速确认 - 低有效性模式 → 自动降级或标记

  • 反馈循环监控:跟踪模式有效性趋势,识别高/低效学习模式
  • 学习速度计算:基于有效性和反馈趋势的学习速度评估
  • 增强报告生成:模式有效性报告、反馈循环统计、学习进度跟踪
  • 自动调整规则:基于置信度的自动阶段调整,减少人工干预

增强算法

  1. 阶段置信度计算
   confidence = (repetition_count * 0.4) + (effectiveness_score * 0.4) + (time_factor * 0.2)
  1. 学习速度评估
   learning_speed = (help_ratio * 0.6) + (effectiveness_trend * 0.4)
  1. 自动调整阈值

- 自动提升: confidence ≥ 0.8 - 自动降级: effectiveness ≤ 0.2

集成说明

  • 依赖: 增强correction-logger v2.0.0+(可选,但推荐)
  • 数据源: 从纠正记录器获取有效性分数和反馈历史
  • 兼容性: 原有API完全兼容,新增增强方法可选使用

The plugin provides a LearningCoordinator class that:

  1. Monitors learning signals – watches corrections and preferences via their respective adapters.
  2. Manages learning stages – tracks patterns through stages: tentative, emerging, pending, confirmed, archived.
  3. Coordinates promotion/demotion – applies rules for when to move patterns between stages and tiers.
  4. Exposes learning statistics – reports on learning progress and pattern evolution.

The plugin does not store its own data; it relies on existing adapters (correction‑logger, preference‑tracker) and the learning‑rules file (learning.md).

Installation

clawhub install learning-coordinator

Or manually copy the plugin directory to your workspace skills folder.

Configuration

Default configuration loads the learning rules file and references other adapters:

learning_rules_file: ~/self-improving/learning.md
correction_adapter: "correction_logger"
preference_adapter: "preference_tracker"
auto_create: true

API Reference

LearningCoordinator Class

from learning_coordinator import LearningCoordinator

coordinator = LearningCoordinator(config=None)

# Get learning statistics
stats = coordinator.get_learning_stats()

# Check emerging patterns
emerging = coordinator.get_emerging_patterns(threshold=2)

# Promote a pattern (after user confirmation)
result = coordinator.promote_pattern(correction_ids=[1, 2, 3], new_status="confirmed")

# Get stage counts
stage_counts = coordinator.get_stage_counts()

# Health check
health = coordinator.health_check()

Adapter Interface

The plugin includes a LearningCoordinatorAdapter that conforms to the star‑architecture MemoryAdapter base class, providing:

  • health_check() – reports availability of required adapters and rule file
  • get_stats() – returns learning statistics (stage counts, promotion rates, etc.)
  • search(query, limit=10) – searches across learning rules and pattern descriptions
  • sync() – ensures coordinator state is in sync (no‑op for this plugin)
  • get_learning_stats(), get_emerging_patterns(), promote_pattern() – convenience methods

Integration with Star Architecture

Once installed and its adapter is registered in the star‑architecture registry, other plugins can query learning coordination via the adapter factory:

from integration.adapter_factory import AdapterFactory

factory = AdapterFactory()
coordinator_adapter = factory.get_adapter("learning_coordinator")
if coordinator_adapter:
    stats = coordinator_adapter.get_learning_stats()
    emerging = coordinator_adapter.get_emerging_patterns(threshold=2)

Learning Rules

The plugin reads the learning.md file (see SIPA skill) to obtain:

  • Trigger definitions – what counts as a learning signal
  • Confirmation flow – how and when to ask for user confirmation
  • Stage evolution – rules for moving between stages
  • Anti‑patterns – what not to learn

The file is treated as read‑only; modifications must be made manually.

Troubleshooting

Missing adapters – If correction‑logger or preference‑tracker adapters are unavailable, the coordinator will operate with limited functionality.

Rule file not found – If learning.md does not exist, the plugin will create a minimal version based on the SIPA skill's default content.

Permission errors – Ensure the process has read access to the learning rules file.

Related Plugins

  • correction‑logger – logs user corrections and system improvements
  • preference‑tracker – manages user preferences and patterns
  • heartbeat‑manager – manages heartbeat state and logs
  • reflection‑logger – logs self‑reflection entries

Version History

  • v0.1.0 – Initial split from SIPA skill, basic coordination, star‑architecture adapter.

错误码

错误码描述解决方案
E001未知错误检查日志,联系开发者
E002配置错误验证配置文件格式
E003依赖缺失安装所需依赖包

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

82.16%
按下载量换算1,564

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills