Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

memory-bench-designer记忆凳设计师

Agent Skill

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

总安装

2,644

周安装

108

GitHub Stars

公开资料未说明

下载量

847
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install memory-bench-designer

简介

memory-bench-designer 为特定用例设计自定义代理内存基准测试方案。

  • 适用于 OpenClaw 中评估不同记忆策略效果、选择最优存储架构或优化检索性能时使用。
  • 可根据任务类型定制评测指标,如召回率、响应延迟与资源占用情况。
  • 安装命令为 openclaw skills install memory-bench-designer,需配置测试环境与数据输入源。
  • 使用前应确保测试数据集不包含真实用户信息,遵循隐私保护最佳实践。

SKILL.md

name
memory-bench-designer
description
Designs a custom agent-memory benchmark for the user's specific use case. Activate when the user asks which memory strategy fits their agent, how to evaluate agent memory, or how to benchmark context/retrieval choices. Conducts elicitation, generates scenario configs, runs benchmarks across five memory strategies, and interprets results.

Memory Bench Designer

An agent memory benchmark designer. The user describes their use case in natural language; you conduct a short multi-turn elicitation, write a scenario config, run the benchmark, and deliver a case-specific interpretation.

The central premise: no single memory strategy wins across use cases. Different scenarios reward different strategies (see references/adapter-profiles.md for empirical evidence). Your job is to figure out which scenario the user actually has, then run the benchmark that exposes which strategy fits.

Four-stage flow

Stage 1 Understanding — conversation with the user (3–5 turns) Stage 2 Ideation — generate scenario.yaml + weights.yaml Stage 3 Rollout — invoke the runner CLI Stage 4 Judgment — interpret the results.md for this specific use case

After Stage 4, always offer: *"Want to refine the scenario and re-run?"* This is the AdaTest-style inner loop.

Stage 1 — Understanding

Goal: extract enough about the user's use case to fill in the scenario DSL.

Turn 1 — examples, not criteria. Ask:

"Give me 1–2 concrete examples of things your agent's memory should keep and retrieve later, and 1–2 examples of things it should discard or at least de-prioritize. Don't worry about defining the rules — just the examples."

Rationale: EvalGen's "criteria drift" finding. Users can't define criteria upfront; they can recognize good/bad examples.

Turn 2 — session shape. Ask two short questions:

"How many conversations/sessions does a typical user have with your agent before memory matters? And how long is one session — roughly how many turns?"

If the user is vague, offer defaults: 10 sessions × 40 steps. These are runner defaults.

Turn 3 — taxonomy check. Show the 4-family × 8-dimension matrix from references/taxonomy.md. Ask which 2–3 dimensions matter most for this use case. Do not force the user to rank all 8 — cognitive load is too high. You are looking for which *families* to weight.

Turn 4 (optional) — archetype mix. If the use case is ambiguous, show 3 candidate archetype mixes (see references/use-case-patterns.md), let the user pick or modify. Never show more than 3 candidates at once (AdaTest's 3–7 cap, we lean to 3).

By the end of Stage 1 you should know:

  • Archetype mix: fractions for core / evolving / episode / noise
  • Context evolution: random / narrow-band-drift / stable / mode-shifts
  • Themes: 3–6 short lists of vocabulary tokens (ask the user for domain words if they're non-obvious)
  • Which families they care about (for the Judgment stage)

If anything is ambiguous, default to the closest pattern in references/use-case-patterns.md and tell the user which pattern you chose and why.

Stage 2 — Ideation

Write two files into the user's current working directory:

  • scenario-<name>.yaml — the scenario config
  • weights-<name>.yaml — family weights for Judgment (optional)

Use templates/scenario.yaml.tmpl and templates/weights.yaml.tmpl as starting points. Substitute the values from Stage 1.

Show the user the generated scenario.yaml and ask: *"Look right, or tweak anything before we run?"* Keep this confirmation to one round — don't re-litigate Stage 1.

Stage 3 — Rollout

Invoke the runner via Bash:

memory-bench run --scenario scenario-<name>.yaml --out results/<name>/ --embedding --composite

The --embedding flag enables the sentence-transformers adapter (first run downloads ~90 MB model). The --composite flag enables the weighted multi-signal adapter. Both are recommended — without them you only get three cheap baselines and the leaderboard is thin.

The runner writes results/<name>/results.md and results/<name>/results.json. Read the markdown file.

Expected runtime: 1–5 minutes. If it's slower, sentence-transformers is doing a cold model download — this is normal on first run.

Stage 4 — Judgment

Read results.md. Do not just paste it back to the user. Write a case-specific interpretation with three sections:

1. Capability profile. For each family the user said matters in Stage 1, state the winner, its score, and whether that score is high or low relative to the other scenarios in references/adapter-profiles.md. A winner with score 0.4 means "best available but still weak" — say that out loud.

2. Tradeoffs observed. Point to 1–2 dimensions where a non-winner adapter came close, and what that means. Example: *"Composite edges out Embedding in Update Coherence by 5%, but loses Personalization by 10%. For your use case, you care more about X, so Embedding is the safer default."*

3. Recommended starting strategy. One sentence: *"Start with <adapter> because <why>. If you see <symptom> in production, try <alternative>."* Be specific.

After these three sections, ask: *"Want to refine the scenario and re-run?"* Common refinements:

  • Bump up an archetype fraction that felt underrepresented
  • Switch context evolution type
  • Add or remove themes
  • Adjust weights.yaml to shift family priorities

Key UX rules (full detail in references/elicitation-flow.md)

  • Grade before criteria — ask for examples before asking for rules
  • Cap at 7 — never show more than 7 candidates/options/dimensions at once; prefer 3
  • Ranking always visible — when you show candidates, show *why* they're ranked in that order
  • Iterate every 5–8 interactions — surface pattern-detected summaries, don't let the conversation wander
  • Organization optional — don't force a taxonomy on the user upfront; let structure emerge from the examples they give

References

  • references/taxonomy.md — the 4×8 matrix shown in Turn 3
  • references/adapter-profiles.md — empirical profile of each strategy (what it wins, what it loses)
  • references/use-case-patterns.md — canonical patterns (game / companion / RAG / coding)
  • references/elicitation-flow.md — the UX rules above, with rationale
  • examples/game-ai-walkthrough.md — a full game-AI scenario elicitation and result
  • examples/npc-cognition-walkthrough.md — long-running NPC with stable persona
  • examples/coding-agent-walkthrough.md — code/PR/design memory with frequent supersedes
  • templates/scenario.yaml.tmpl — the scenario DSL skeleton
  • templates/weights.yaml.tmpl — family weights skeleton

What this skill does not do

  • It does not call any LLM judges — all metrics are mechanical
  • It does not evaluate actual agent responses — it evaluates the retrieval layer feeding them
  • It does not benchmark external memory services (Mem0, Zep, Letta) — it benchmarks algorithmic primitives (Recency, BM25, ACT-R, Embedding, Composite)
  • It does not replace production telemetry — it de-risks the initial strategy choice before you build

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

98.6%
按下载量换算835

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills