Token导航 LogoToken导航TokenDH.com
效率只读clawhub未标认证来源可访问clear审计通过

memory-governor内存调速器

Agent Skill

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

总安装

5,441

周安装

218

GitHub Stars

1

下载量

1,761
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install memory-governor

简介

用于 AI 代理的内存治理内核,通过显式校正分级、目标类路由、适配器边界和安全来补充 OpenClaw Dreaming。

SKILL.md

name
memory-governor
description
Memory governance kernel for AI agents that complements OpenClaw Dreaming with explicit correction staging, target-class routing, adapter boundaries, and safer manual hardening rules.

Memory Governor

Reusable memory-governance core for different host environments.

The OpenClaw integration in this repository is only a reference host profile, not the only host model.

It is not a second-brain system, sync bus, or knowledge manager. It governs what should be remembered, where it should go, when it should be promoted, and what should be excluded.

It is a governance kernel, not an execution-first productivity skill. Its value is highest when a host already has multiple memory layers, multiple memory-writing skills, or adapter drift.

When to Use

Use this skill when:

  • you need to decide whether something should enter memory
  • you need to choose the right memory layer or target class
  • you need to promote daily, correction, or working state into durable rules
  • multiple skills are starting to define memory differently and need governance

First Reading Path

If this is your first time opening memory-governor, start here:

  1. SKILL.md
  2. references/memory-routing.md
  3. references/promotion-rules.md
  4. references/exclusions.md
  5. references/adapters.md

The remaining reference files are optional on first read.

What Counts as Memory

Only information that improves future judgment, recovery, execution quality, or coordination consistency counts as memory.

Typical examples:

  • stable long-term preferences
  • stable long-term facts
  • key same-day events
  • explicit corrections
  • unproven but promising candidate lessons
  • reusable lessons
  • current progress state
  • short-term recovery hints

For content that should stay out of memory, see references/exclusions.md.

Core Rule

The thing being standardized is the memory contract, not every skill implementation.

That means:

  • all skills should follow the same classification, routing, promotion, and exclusion rules
  • each skill may keep its own internal logic, downstream tools, interaction style, and directory habits

In short:

standardize the core, not everything else

Target Classes

The kernel defines abstract target classes before it defines any optional skill path.

Recommended standard target classes:

  • long_term_memory
  • daily_memory
  • learning_candidates
  • reusable_lessons
  • proactive_state
  • working_buffer
  • project_facts
  • system_rules
  • tool_rules

Concrete file paths are adapter details, not the contract itself.

Notes:

  • learning_candidates is a low-commitment staging layer for corrections and emerging lessons
  • it exists to prevent single observations from hardening too early
  • proactive_state and working_buffer are stateful targets
  • they should not become infinite append-only logs
  • they need freshness, replace or merge, and retention rules by default

Routing Order

When evaluating a candidate memory, reason in this order:

  1. Is it worth remembering at all?
  2. What memory type is it?
  3. Which target class does that type belong to?
  4. Which adapter in the current host should store that target class?
  5. Is it still short-term, or is it ready for promotion?
  6. Does it match any exclusion rule?

See references/memory-routing.md for the routing table.

See references/routing-precedence.md for ambiguity resolution.

Promotion Rules

All promotion should extract and refine before it hardens.

Never:

  • write raw logs directly into long-term memory
  • treat a working buffer as long-term memory
  • use system-governance files as temporary capture inboxes

See references/promotion-rules.md for details.

See references/correction-pipeline.md for the correction-to-candidate-to-rule flow.

See references/candidate-review.md for keep/promote/discard review workflow.

See references/dreaming-integration.md for how this kernel should coexist with OpenClaw Dreaming without duplicate promotion paths.

See references/stateful-targets.md for update semantics on stateful targets.

See references/schema-conventions.md if the host wants stronger structured constraints.

See references/retention-rules.md for lifecycle rules.

See references/read-order.md for recovery-time read order.

Skill Integration

When another skill integrates with this kernel:

  • the skill may declare which information types it emits
  • the skill may declare where those types usually land
  • the skill should not invent a new global memory-layer definition
  • the skill should not bypass exclusion rules
  • the skill should not confuse downstream storage rules with upstream memory rules

See references/skill-integration.md.

Adapters

memory-governor may provide default adapters, but those adapters are not the only truth.

Examples:

  • long_term_memory -> MEMORY.md
  • daily_memory -> memory/YYYY-MM-DD.md
  • reusable_lessons -> ~/self-improving/... if self-improving is installed
  • reusable_lessons -> a local fallback file if self-improving is absent

See references/adapters.md for default adapter behavior.

See references/integration-checklist.md for integration checks.

See references/installation-integration.md for installation and host integration guidance.

See references/host-profiles.md for host differences.

Never Do

  • do not turn this skill into a monolithic personal memory system
  • do not embed Obsidian, Notion, or OmniFocus implementation details into the governance kernel
  • do not force every skill into the same implementation style
  • do not invent a new primary memory directory unless the governance layer explicitly approves it
  • do not write secrets, raw long logs, or short-lived noise into memory

Phase Boundary

The current phase is governance core only.

That means:

  • it may define contracts
  • it may define references
  • it may constrain how other skills write memory
  • it may not quietly grow into a unified execution bus at this stage

If the project later wants an orchestration layer or a full personal memory system, that should be scoped separately after the governance layer is stable.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

78.69%
按下载量换算1,386

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills