← 返回
未分类

Learning Coordinator

Coordinates learning signals, pattern promotion, and stage management for self-improving memory. Monitors corrections and preferences to identify emerging pa...
协调学习信号、模式提升与阶段管理,实现自我改进的记忆功能。监控修正与偏好以识别新兴模式。
whoisme007 whoisme007 来源
未分类 clawhub v2.0.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 484
下载
💾 0
安装
1
版本
#latest

概述

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依赖缺失安装所需依赖包

版本历史

共 1 个版本

  • v2.0.0 当前
    2026-05-02 17:08 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-agent

Find Skills

guipi888
场景驱动+关键词双模式技能发现工具。当用户用自然语言描述场景/需求(如"我想做一个海报""帮我分析股票"),或明确说"安装技能/find skills/找个skill"时,自动从官方内置、本地已安装、SkillHub、虾评、GitHub、C
★ 1,492 📥 558,017
dev-programming

Evolution Watcher

whoisme007
自动监控并对比已安装插件版本,生成升级报告,支持星型记忆架构的智能进化决策。
★ 0 📥 697
ai-agent

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,410 📥 325,225