Skip to content

Releases: haddock-development/claude-reflect-system

v1.3.0 - Meta-Learning (Reflect-on-Reflect)

17 Jan 09:53
41d03d0

Choose a tag to compare

What's New

Meta-Learning System

The reflect system now learns from your own feedback to improve pattern detection over time.

New Features

  • /reflect-meta command: View pattern performance statistics
  • --use-meta flag: Enable score-based confidence adjustments
  • Passive feedback logging: Decisions (Accept/Modify/Skip) are automatically recorded
  • Pattern health tracking: See which patterns work well and which need review

Design Principles

  • Non-invasive: Meta-learning is completely passive by default
  • Opt-in activation: Score-based adjustments require explicit --use-meta flag
  • Non-blocking: Meta-learning failures never break the core reflect workflow
  • Transparent: All data stored in human-readable JSON locally

New Files

File Purpose
scripts/meta_learning.py Core meta-learning module
commands/reflect-meta.md Command documentation

Thresholds

Status Acceptance Rate Adjustment
Excellent >80% +0.1 boost
Healthy 50-80% No change
Needs Review 20-50% -0.15 penalty
Deprecated <20% -0.3 penalty, flagged

Storage

  • ~/.claude/reflect/meta/feedback-log.jsonl - Decision history
  • ~/.claude/reflect/meta/pattern-scores.json - Computed scores

Full Changelog: v1.2.0...v1.3.0

v1.2.0 - Semantic Detection & Cross-Skill Learning

16 Jan 10:22
9c1e221

Choose a tag to compare

What's New in v1.2.0

🧠 Semantic Detection (v1.1)

AI-powered pattern detection using Claude itself as the ML engine.

  • Multi-language support - Works in German, Spanish, French, and any other language
  • Higher accuracy - Understands intent, not just keywords
  • New flag: /reflect --semantic

🔄 Cross-Skill Learning (v1.2)

Track learnings across multiple repositories and promote to global scope.

  • SQLite Ledger - Persistent tracking across skills and repos
  • Scope Analyzer - Intelligent project vs global detection
  • Auto-promotion - When learning appears in 2+ repos → eligible for global
  • New commands: /reflect-stats, /reflect-promote

New Files

  • semantic_detector.py - Claude as ML engine
  • learning_ledger.py - SQLite cross-repo tracking
  • scope_analyzer.py - Project vs Global scope
  • promote_learning.py - Promotion workflow

Usage

# Semantic detection (multi-language)
/reflect --semantic

# View cross-skill stats
/reflect-stats

# Promote learnings to global
/reflect-promote

Full Changelog: v1.0.0...v1.2.0