返回顶部
f

feedback-learning

Zero-LLM feedback learning system for OpenClaw agents. Detects user feedback (emoji reactions, text signals like "переделай"/"круто"), logs events, tracks positive AND negative patterns, auto-promotes structured rules with behavioral delta test, and generates weekly reports. Supports Russian and English. No API keys needed — runs entirely on shell scripts and Python.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 2.0.0
安全检测
已通过
75
下载量
0
收藏
概述
安装方式
版本历史

feedback-learning

# Feedback Learning System v2 A complete, zero-LLM pipeline for agents to learn from user feedback. Track what works, catch what doesn't, promote durable rules. ## Architecture ``` User feedback / exec error ↓ detect-feedback.py ←── error-catcher.sh (PostToolUse hook) ↓ log-event.sh ──────────────────────────────────────────→ events.jsonl ↓ analyze-patterns.py (nightly) ↓ patterns.json (positive + negative patterns) ↓ (≥3 hits, delta test) genes.json (structured rules: condition→action) ↓ weekly-report.py (Sundays) ↓ reports/WEEKLY_*.md ``` ## Quick Reference | Situation | Action | |-----------|--------| | User gives positive feedback | `log-event.sh <agent> positive user_nlp "<ctx>" "<signal>"` | | User corrects/complains | `log-event.sh <agent> correction user_nlp "<ctx>" "<signal>" "<lesson>"` | | Exec command failed | `log-event.sh <agent> error exec_fail "<ctx>" "<stderr>" "<lesson>"` | | Detect feedback from text | `python3 detect-feedback.py "переделай это"` | | Run pattern analysis now | `python3 analyze-patterns.py` | | Generate report now | `python3 weekly-report.py` | | Check active rules (genes) | `python3 check-genes.py` | | Mark gene as resolved | `python3 check-genes.py --resolve <gene_id>` | ## Setup ### 1. Install files ```bash DIR="${FEEDBACK_LEARNING_DIR:-$HOME/.openclaw/shared/learning}" mkdir -p "$DIR/reports" cp scripts/* "$DIR/" chmod +x "$DIR/log-event.sh" "$DIR/error-catcher.sh" touch "$DIR/events.jsonl" ``` ### 2. Initialize data files ```bash DIR="${FEEDBACK_LEARNING_DIR:-$HOME/.openclaw/shared/learning}" [ -f "$DIR/patterns.json" ] || cat > "$DIR/patterns.json" << 'EOF' {"version": "2.1", "updated": "", "patterns": {"negative": [], "positive": []}} EOF [ -f "$DIR/genes.json" ] || cat > "$DIR/genes.json" << 'EOF' {"version": "2.1", "rules": []} EOF [ -f "$DIR/capsules.json" ] || cat > "$DIR/capsules.json" << 'EOF' {"version": "2.1", "capsules": []} EOF ``` ### 3. Add to AGENTS.md boot sequence ```markdown ## Feedback Learning Before tasks: check `$FEEDBACK_LEARNING_DIR/genes.json` for applicable rules. Auto-detect and log signals: - Positive words/emoji → `bash $DIR/log-event.sh <agent> positive user_nlp "<ctx>" "<signal>"` - Negative/correction → `bash $DIR/log-event.sh <agent> correction user_nlp "<ctx>" "<signal>" "<lesson>"` - Exec fail (exit≠0) → `bash $DIR/log-event.sh <agent> error exec_fail "<ctx>" "<stderr[:200]>" "<lesson>"` ``` ### 4. Set up crons ``` # Pattern analysis (nightly 3:30 AM) schedule: cron 30 3 * * * @ Europe/Moscow payload: python3 ~/.openclaw/shared/learning/analyze-patterns.py # Weekly report (Sundays 4:00 AM) schedule: cron 0 4 * * 0 @ Europe/Moscow payload: python3 ~/.openclaw/shared/learning/weekly-report.py ``` ### 5. (Optional) Hook integration for auto-error capture For Claude Code / Codex hooks: ```json { "hooks": { "PostToolUse": [{ "matcher": "Bash", "hooks": [{"type": "command", "command": "bash ~/.openclaw/shared/learning/error-catcher.sh"}] }] } } ``` ## Usage ### Log events manually ```bash DIR="${FEEDBACK_LEARNING_DIR:-$HOME/.openclaw/shared/learning}" # Error bash "$DIR/log-event.sh" anton error exec_fail \ "updating openclaw.json" "SyntaxError: trailing comma" \ "Always validate JSON with python3 -c before writing" # Positive bash "$DIR/log-event.sh" anton positive user_nlp \ "generated weekly report" "🔥 огонь!" # Correction bash "$DIR/log-event.sh" anton correction user_nlp \ "sent message in wrong format" "не так, в маркдауне давай" \ "Confirm output format before sending to Telegram" ``` ### Detect feedback from text (no LLM) ```bash echo "круто, зашло!" | python3 detect-feedback.py # → {"type": "positive", "source": "user_nlp", "signal": "круто", "confidence": 0.8} python3 detect-feedback.py "переделай это, не тот формат" # → {"type": "correction", "source": "user_nlp", "signal": "переделай", "confidence": 0.8} # Pipe mode for hook usage echo "$TOOL_OUTPUT" | python3 detect-feedback.py --pipe | bash log-event.sh auto ``` ### Check active rules before a task ```bash python3 check-genes.py # Lists active rules, signals stale ones python3 check-genes.py --filter exec_fail # Filter by type python3 check-genes.py --resolve gene_20260310_120000_0 # Mark a resolved rule as inactive ``` ## Data Files | File | Purpose | |------|---------| | `events.jsonl` | Append-only event log (all feedback), deduped by content hash | | `patterns.json` | Grouped patterns: BOTH positive and negative, with counts | | `genes.json` | Promoted structured rules (condition → action → context) | | `capsules.json` | Successful reasoning paths to avoid re-computation | | `reports/` | Weekly synthesis reports | ## Event Schema ```json { "ts": "2026-03-20T12:00:00Z", "id": "sha256_first8", "agent": "anton", "type": "error|correction|positive|requery", "source": "exec_fail|user_nlp|user_emoji|requery|auto", "context": "what agent was doing", "signal": "the trigger text or emoji", "hint": "suggested fix or rule", "heat": 1 } ``` ## Gene (Promoted Rule) Schema v2 ```json { "id": "gene_20260310_120000_0", "status": "active|stale|resolved|wont-fix", "origin": "original signal/pattern text", "type": "error|correction|positive", "condition": "When doing X", "action": "Do Y instead of Z", "context": "Additional context", "agents": ["anton"], "occurrences": 3, "last_seen": "2026-03-20T...", "promoted_at": "2026-03-20T...", "expires": null, "active": true } ``` ## Promotion Flow (v2) 1. Events accumulate in `events.jsonl` (deduped by hash) 2. `analyze-patterns.py` groups similar events (both positive AND negative) 3. Pattern hits ≥3 in 30 days → **Behavioral Delta Test**: would this rule change a future decision? If yes → promote. 4. Promoted gene has structured fields: `condition`, `action`, `context` 5. **Stagnation check**: if gene exists but same pattern keeps recurring → mark gene as `stale` and escalate 6. Genes auto-expire after 90 days of inactivity (no new events matching) 7. `weekly-report.py` includes gene health: active / stale / resolved counts ## Supported Languages - **Russian:** 20+ negative, 19+ positive triggers, correction patterns - **English:** 10 negative, 8 positive triggers - **Emoji:** Universal positive/negative reactions ## What's New in v2 | Feature | v1 | v2 | |---------|----|----| | Positive pattern tracking | ❌ skipped | ✅ tracked separately | | Gene structure | `"AVOID: key_text"` | `condition → action → context` | | Gene lifecycle | active only | active / stale / resolved / wont-fix | | Behavioral Delta Test | ❌ | ✅ promotes only if rule changes future behavior | | Stagnation detection | ❌ | ✅ re-occurring genes flagged as stale | | Path configuration | hardcoded | `$FEEDBACK_LEARNING_DIR` env var | | Event deduplication | ❌ | ✅ content hash | | Hook integration | ❌ | ✅ error-catcher.sh for PostToolUse | | Gene check utility | ❌ | ✅ check-genes.py | | Gene expiry | ❌ | ✅ 90-day inactivity auto-expire |

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 feedback-learning-v2-1776119733 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 feedback-learning-v2-1776119733 技能

通过命令行安装

skillhub install feedback-learning-v2-1776119733

下载 Zip 包

⬇ 下载 feedback-learning v2.0.0

文件大小: 14.31 KB | 发布时间: 2026-4-14 14:44

v2.0.0 最新 2026-4-14 14:44
Version 2.0.0 of feedback-learning introduces major upgrades to feedback detection, tracking, and learning:

- Now tracks both positive and negative patterns—positive triggers are analyzed and promoted alongside corrections.
- Structured rules (genes) use a new detailed schema with condition, action, and context fields for clearer auto-promotion and diagnostics.
- Adds lifecycle statuses for rules: active, stale, resolved, or wont-fix, with automatic resolution and stagnation checks.
- Introduces a Behavioral Delta Test to ensure only meaningful rules are promoted.
- Data files, cron integration, shell/Python automation, and Russian/English feedback detection are thoroughly documented and streamlined.
- Weekly reporting and analysis are enhanced, including rule health and recurring pattern detection.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部