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

memory-recall记忆回忆

Agent Skill

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

总安装

188

周安装

8

GitHub Stars

公开资料未说明

下载量

66
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/badrusiddique/enggenie-skill --skill memory-recall

简介

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

  • 它适用于研究检索类任务,可帮助 Agent 实现记忆内容的快速召回和检索。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 核验具体用法和功能边界。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 使用时需注意该技能属于研究检索类别,主要功能聚焦于信息定位而非直接执行系统级操作。

SKILL.md

Cross-Session Memory Recall

Announce: "I'm using enggenie:memory-recall to search previous session context."

Overview

Search past work across sessions using claude-mem's MCP tools. Token-efficient 3-layer retrieval: search the index first, filter, then fetch only what matters.

Requires: claude-mem plugin installed. If not installed:

  • When invoked by other skills → skip silently, proceed without memory
  • When invoked directly by user → show: "enggenie:memory-recall requires the claude-mem plugin. Install with: claude plugin add claude-mem"

3-Layer Workflow

Never fetch full details without filtering first. 10x token savings.

Layer 1: Search - Get Index with IDs

search(query="authentication", limit=20, project="my-project")

Returns a lightweight table (~50-100 tokens per result):

| ID | Time | T | Title | Read |
|----|------|---|-------|------|
| #11131 | 3:48 PM | feature | Added JWT authentication | ~75 |
| #10942 | 2:15 PM | bugfix | Fixed auth token expiration | ~50 |

Parameters:

  • query (string) - Search term
  • limit (number) - Max results, default 20, max 100
  • project (string) - Project name filter
  • type (string, optional) - "observations", "sessions", or "prompts"
  • obs_type (string, optional) - Comma-separated: bugfix, feature, decision, discovery, change
  • dateStart / dateEnd (string, optional) - YYYY-MM-DD or epoch ms
  • offset (number, optional) - Skip N results
  • orderBy (string, optional) - "date_desc" (default), "date_asc", "relevance"

Layer 2: Timeline - Get Context Around Interesting Results

timeline(anchor=11131, depth_before=3, depth_after=3, project="my-project")

Or find anchor automatically:

timeline(query="authentication", depth_before=3, depth_after=3, project="my-project")

Returns chronologically ordered items around the anchor point.

Layer 3: Fetch - Get Full Details ONLY for Filtered IDs

Review titles from Layer 1 and context from Layer 2. Pick relevant IDs. Discard the rest.

get_observations(ids=[11131, 10942])

Returns complete observation objects (~500-1000 tokens each): title, subtitle, narrative, facts, concepts, files.

Always use get_observations for 2+ observations - single request vs N requests.

Code Exploration (AST-Based)

When exploring code structure, use token-efficient AST tools instead of full file reads:

  1. smart_search - Find symbols across codebase (~2-6k tokens vs ~39-59k for Explore agent)
  2. smart_outline - Get file structure (~1-2k tokens vs ~12k+ for full Read)
  3. smart_unfold - See specific function implementation (~400-2k tokens)

How Other Skills Use Memory

Every skill that references memory does this:

IF memory-recall MCP tools available:
  Search for relevant context
  Use findings in skill logic
ELSE:
  Skip silently - proceed without memory
  No error message, no mention of missing feature

Skills that use memory:

  • enggenie:architect-design - "Have we designed something similar?"
  • enggenie:architect-plan - "What patterns did we use last time?"
  • enggenie:pm-refine - "Have we built something similar?"
  • enggenie:dev-debug - "Have we seen this bug pattern before?"

Token Savings

OperationWithout memory-recallWith memory-recall
Find past workRead full conversation logsSearch index: ~100 tokens/result
Explore codeExplore agent: ~39-59k tokenssmart_search: ~2-6k tokens
Read file structureFull Read: ~12k+ tokenssmart_outline: ~1-2k tokens
See one functionRead full file: ~5-10k tokenssmart_unfold: ~400-2k tokens

Examples

Find recent bug fixes:

search(query="bug", type="observations", obs_type="bugfix", limit=20, project="my-project")

Find what happened last week:

search(type="observations", dateStart="2025-11-11", limit=20, project="my-project")

Understand context around a discovery:

timeline(anchor=11131, depth_before=5, depth_after=5, project="my-project")

Batch fetch details:

get_observations(ids=[11131, 10942, 10855], orderBy="date_desc")

When Search Returns No Results

  1. Broaden the query - try synonyms, related terms, or the feature area instead of specific implementation details
  2. Check recent sessions - use timeline with a recent anchor to see what was discussed recently
  3. Skip gracefully - if no relevant results after 2 search attempts, proceed without memory context. Say: "No relevant past context found. Proceeding fresh."

Do not spend more than 2 search attempts. Memory is a shortcut, not a requirement.

Staleness

Memory observations are snapshots in time. Before acting on a recalled decision:

  • Architecture decisions (ADRs, tech choices): Verify the decision is still in effect. Check if the code reflects it.
  • Bug patterns ("we fixed this by..."): Check if the same fix applies. The codebase may have changed.
  • Process decisions ("we agreed to..."): Ask the user if this is still the team convention.

When in doubt, treat memory as a starting point for investigation, not as ground truth.

Recommended Model

Primary: haiku Why: Memory retrieval is about searching indexes and fetching observations. Haiku is fast and efficient for this lookup-heavy work.

This is a recommendation. Ask the user: "Confirm model selection or override?" Do not proceed until the user responds.


Entry Condition

None - available anytime. Invoked by other skills as a utility, or directly by user.

Exit Action

Context provided → resume whatever workflow triggered the recall.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.45%
按下载量换算22

Claude

28.76%
按下载量换算19

Cursor

20.84%
按下载量换算14

Gemini CLI

10.35%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills