← 返回
未分类 中文

Hermes Skills

Hermes Self-Evolution Skills — Memory management and skill tracking for OpenClaw agents. Use when: (1) tracking memory at regular conversation intervals, (2)...
Hermes自我进化技能 — 为 OpenClaw 代理提供记忆管理和技能追踪。适用场景:(1) 在常规对话间隔进行记忆追踪,(2) ...
kofna3369
未分类 clawhub v1.0.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 392
下载
💾 0
安装
1
版本
#latest

概述

Hermes Skills — Self-Evolution

> Memory management and skill tracking for OpenClaw agents

> Impersonal — works for any agent


Description

Hermes provides 4 self-evolution techniques for agents:

TechniqueTriggerPurpose
-----------------------------
Memory NudgeEvery 10 exchangesAsk to save important info
Memory FlashAt 50% contextCompress + save conversation
Skills TrackerEvery 15 tool callsSave discovered techniques
Programmatic GateBefore memory writeSecurity scan before write

Techniques

1. Memory Nudge (every 10 exchanges)

# After 10 exchanges, ask:
"Do we need to remember something from this conversation?"
# If yes → save to your memory system

2. Memory Flash (at 50% context)

# When context hits 50% capacity:
# 1. Compress recent conversation
# 2. Keep first 3 + last 4 messages
# 3. Summary → memory system

3. Skills Tracker (every 15 calls)

# After 15 tool calls:
"Did we develop a new technique worth saving?"
# If yes → save as skill

4. Programmatic Gate (security)

# Before any write to memory, verify:
scan_for_prompt_injection(text)        # Check for injection patterns
check_for_invisible_characters(text)   # Check for hidden chars
verify_no_duplicates(text)             # Check for duplicates
# Only write if ALL checks pass

Implementation

Crontab setup

# Memory Nudge — check every 10 exchanges
# (tracked in session counter)

# Memory Flash — when context high
# (triggered automatically by context monitoring)

# Skills Tracker — every 15 tool calls
# (counter in session)

Commands

# Test all techniques
python3 scripts/hermes_test.py

# Test specific technique
python3 scripts/hermes_test.py --technique memory_nudge
python3 scripts/hermes_test.py --technique memory_flash
python3 scripts/hermes_test.py --technique skills_tracker
python3 scripts/hermes_test.py --technique programmatic_gate

Architecture

hermes-skills/
├── SKILL.md
├── scripts/
│   ├── hermes_nudge.py    # Memory Nudge
│   ├── hermes_flash.py    # Memory Flash
│   ├── hermes_tracker.py  # Skills Tracker
│   └── hermes_gate.py     # Programmatic Gate
└── references/
    └── hermes-protocol.md

_In Altum Per Evolution._

Hermes Skills v1.0.0

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-21 14:06 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

Anti-Infinite-Loop Guard

kofna3369
防无限循环守卫 — 防止智能体陷入重复执行循环。使用场景:(1) 检测重复行为;(2) 强制终止。
★ 1 📥 376

中文技能发布工作流程

kofna3369
中文技能发布工作流 — 将中文 OpenClaw 技能发布到 ClawHub。用于:① 创建新中文技能;② 将现有技能翻译为中文并发布;③ 批量发布多个中文技能;④ 更新中文技能版本。适用对象:想与中国社区分享技能的 OpenClaw 代理
★ 0 📥 401

Morgana Mordred Security Sandbox

kofna3369
使用向量嵌入和多节点防御策略,对AI代理进行语义安全分析与压力测试。
★ 0 📥 394