Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

memory-management内存管理

Agent Skill

memory-management 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

636

周安装

26

GitHub Stars

2

下载量

206
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:memory-management(内存管理)
来源仓库:https://github.com/richfrem/agent-plugins-skills
仓库路径:skills/memory-management
安装命令:
npx skills add https://github.com/richfrem/agent-plugins-skills --skill memory-management
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/richfrem/agent-plugins-skills --skill memory-management

简介

memory-management 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装方式:github,使用 npx skills add 命令添加指定仓库的 skill。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Memory Management

Tiered memory system that makes an AI agent a continuous collaborator across sessions.

Architecture

The memory system has six tiers, configurable per project:

Tier 1: HOT CACHE (always loaded at boot -- ~200 lines target)
+-- <primer_file>             Role, identity, constraints
+-- <boot_digest_file>        Tactical status, active tasks
+-- <boot_contract_file>      Immutable constraints
+-- <snapshot_file>           Cognitive Hologram (1 sentence per file)

Tier 2: RLM SUMMARY LEDGER (fast keyword lookup -- loaded on demand)
+-- <summary_cache_file>      Pre-generated text summaries: docs, protocols, research
                              Plugin: rlm-factory | Skill: rlm-search | Profile: project
+-- <tool_cache_file>         Pre-generated text summaries: plugins, skills, scripts
                              Plugin: rlm-factory | Skill: rlm-search | Profile: tools

Tier 3: VECTOR STORE (semantic embedding search -- loaded on demand)
+-- <vector_db_backend>       ChromaDB via vector-db plugin / vector-db-agent skill
                              Profile: knowledge | Port: configured in vector_profiles.json

Tier 4: DEEP STORAGE (filesystem -- authoritative source, loaded on demand)
+-- <domain_data_dir>/        Research topics: {topic}/analysis.md
+-- <design_docs_dir>/        ADRs, RFCs
+-- <governance_dir>/         Protocols, playbooks

Tier 5: VAULT (Obsidian -- linked knowledge graph, loaded on demand)
+-- <vault_dir>/              Plugin: obsidian-integration
                              Skills: obsidian-vault-crud, obsidian-canvas-architect,
                                      obsidian-graph-traversal, obsidian-bases-manager
                              Env: VAULT_PATH or OBSIDIAN_VAULT_PATH

Tier 6: SOUL (external persistence -- optional, synced at session seal)
+-- <traces_file>             Plugin: project-specific (e.g. huggingface-utils)
                              e.g. lineage/, data/, soul_traces.jsonl on HF Hub

Projects define their own file paths for each slot. Tiers may be omitted or added based on project complexity.

Lookup Flow (3-Phase Search Protocol)

When searching for information, ALWAYS escalate in order. Never skip ahead.

Query arrives ->
1. HOT CACHE                     Instant. Boot files cover ~90% of context needs.
2. DEEP STORAGE (topic/decision) Load specific domain dir or design doc by subject.
3. RLM SUMMARY LEDGER (Phase 1)  Keyword search via rlm-factory:rlm-search skill.
4. VECTOR STORE (Phase 2)        Semantic search via vector-db:vector-db-search skill.
5. GREP / EXACT SEARCH (Phase 3) rg/grep scoped to paths from Steps 3 or 4.
6. Ask user                      Unknown? Learn it and persist it.

Phase 1 -- RLM Summary Scan (Table of Contents)

RLM is amortized prework: each file read ONCE, summarized ONCE, cached as plain text JSON. Searching summaries is O(1) keyword lookup -- no embeddings, no inference.

Trigger the rlm-factory:rlm-search skill, providing the profile and search term.

Use Phase 1 when: You need to understand what a file does, find which file owns a feature, or navigate the codebase without reading individual files.

Escalate to Phase 2 when: The summary is insufficient or no match found.

Phase 2 -- Vector Store Semantic Search (Back-of-Book Index)

Embedding-based nearest-neighbor search across all indexed chunks. Returns ranked parent chunks with RLM Super-RAG context pre-injected.

Trigger the vector-db:vector-db-search skill, providing the query, profile, and limit.

Use Phase 2 when: You need specific code snippets, patterns, or implementations.

Escalate to Phase 3 when: You have a file path (from Phase 1 or 2) and need an exact line.

Phase 3 -- Grep / Exact Search (Ctrl+F)

Precise keyword or regex match. Always scope to paths discovered in earlier phases.

# Scoped to a specific path (use paths from Phase 1/2)
grep_search "VectorDBOperations" ../../skills/

# Ripgrep for regex
rg "def query" ../../ --type py

Anti-patterns: Never run a full-repo grep without scoping. Never skip Phase 1.

Dependencies

rlm-factory -- RLM Summary Ledger (Tier 2)

ComponentValue
Plugin.agents/skills/ (rlm-curator, rlm-search, rlm-init, rlm-distill-agent)
Skill (write)skills/rlm-curator/ -- distill, inject, audit, cleanup
Skill (read)skills/rlm-search/ -- query the ledger
Skill (Phase 1 search)rlm-factory:rlm-search
Skill (write/inject)rlm-factory:rlm-curator
Skill (audit coverage)rlm-factory:rlm-curator
Skill (shared config)rlm-factory:rlm-curator
Cache files.agents/learning/rlm_summary_cache.json (docs), .agents/learning/rlm_tool_cache.json (tools)

vector-db -- Vector Store (Tier 3)

ComponentValue
Plugin.agents/skills/ (vector-db-search, vector-db-ingest, vector-db-launch, vector-db-init)
Skillskills/vector-db-agent/ -- ingest, query, operations
Skill (Phase 2 search)vector-db:vector-db-search
Skill (ingest files)vector-db:vector-db-ingest
Skill (operations)vector-db:vector-db-search
Skill (config)vector-db:vector-db-search
BackendChromaDB (chromadb.HttpClient with PersistentClient fallback)

obsidian-integration -- Linked Vault (Tier 5)

ComponentValue
Plugin.agents/skills/ (obsidian-vault-crud, obsidian-init, obsidian-canvas-architect, obsidian-graph-traversal)
Skill: vault setupskills/obsidian-init/ -- prerequisites, .obsidian/ config, exclusion filters
Skill: read/write notesobsidian-integration:obsidian-vault-crud -- atomic create/read/update/append
Skill: CRUD operationsobsidian-integration:obsidian-vault-crud
Skill: parse markdownobsidian-integration:obsidian-vault-crud -- shared markdown parser
Requirespip:ruamel.yaml (lossless YAML frontmatter), Obsidian Desktop
EnvVAULT_PATH -- absolute path to the vault root

Promotion / Demotion Rules

Promote to Hot Cache when:

  • Knowledge is referenced in 3+ consecutive sessions
  • It's critical for active work (current spec, active protocol)
  • It's a constraint or identity anchor

Demote to Deep Storage when:

  • Spec/feature is completed and merged
  • Governing document is superseded by newer version
  • Topic research is concluded
  • Technical decision is ratified (move from draft to archive)

What Goes Where

TypeHot CacheOn-Demand Tier
Active tasksBoot digest--
Identity/rolePrimer file--
ConstraintsBoot contract--
Session stateSnapshot fileTier 6 Soul (traces)
Research topicsSummary in snapshotTier 4: domain_data_dir/{name}/
Design decisionsReferenced by IDTier 4: design_docs_dir/{id}_{name}.md
Governing docsReferenced by IDTier 4: governance_dir/{id}_{name}.md
Plugins/scripts/tools--Tier 2: RLM Summary Ledger (tool cache)
Docs/protocols/research--Tier 2: RLM Summary Ledger (summary cache)
System docs--Tier 2 RLM + Tier 3 Vector Store
Linked notes, canvases--Tier 5: Vault (Obsidian)
External persistence--Tier 6: Soul (HuggingFace or equivalent)

Session Memory Workflow

At Session Start (Boot)

  1. Load hot cache files in order (primer -> contract -> digest -> snapshot)
  2. Integrity check validates snapshot is current
  3. If snapshot stale -> flag for refresh at session end

During Session

  • New learning -> Write to <domain_data_dir>/{topic}/
  • New decision -> Create design document draft
  • New tool -> Register in tool inventory
  • Correction -> Update relevant file + note in disputes log if contradicting

At Session End (Seal)

  1. Update snapshot file with new content learned this session
  2. Seal validates no drift since last audit
  3. Persist traces to external storage (if configured)

Conventions

  • Hot cache target: ~200 lines total across all boot files
  • Snapshot: 1 sentence per file, machine-readable
  • Topic folders: lowercase-hyphens/
  • Document numbering: 3-digit, sequential
  • Always capture corrections and contradictions in a disputes log

Configuration

Projects configure the memory system by setting file paths in their project-specific plugin:

VariablePurpose
MEMORY_PRIMER_FILEPath to cognitive primer / role definition
MEMORY_BOOT_DIGESTPath to tactical boot digest
MEMORY_BOOT_CONTRACTPath to immutable constraints
MEMORY_SNAPSHOT_FILEPath to learning snapshot (hologram)
MEMORY_DOMAIN_DIRDirectory for domain research
MEMORY_DESIGN_DIRDirectory for design docs (e.g. ADRs)
MEMORY_GOVERNANCE_DIRDirectory for governing docs (e.g. Protocols)

Architecture Diagrams

DiagramWhat It Shows
memory_architecture.mmdFull 4-tier memory system with exact plugin/skill/script names per tier
memory_lookup_flow.mmd3-phase search sequence: Hot Cache -> RLM Ledger -> Vector Store -> Grep
memory_session_lifecycle.mmdSession Boot -> Active -> Seal lifecycle with all event types

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.25%
按下载量换算68

Claude

30.58%
按下载量换算63

Cursor

18.56%
按下载量换算38

Gemini CLI

8.54%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills