Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

ace-context-to-memory王牌记忆上下文

Agent Skill

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

总安装

218

周安装

9

GitHub Stars

公开资料未说明

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/agilebydesign/agile-context-engine --skill ace-context-to-memory

简介

ace-context-to-memory 将文档转换为 Markdown 并分块存入代理记忆。

  • 适用于 PPTX、PDF、DOCX、XLSX 等格式的内容向量化与语义检索。
  • 通过转换、分块和嵌入三步流水线实现内容向记忆系统迁移。
  • 激活条件包括添加新文件或请求刷新记忆上下文。
  • 使用时应确认是否允许读取本地文件和写入向量索引存储。

SKILL.md

Ace-Context-to-Memory

Converts source documents to markdown and chunks them for agent memory. Pipeline: convert (documents → markdown + images) → chunk (markdown → smaller files) → embed (vector index for semantic search).

When to Activate

  • User asks to "add content to memory" or "refresh memory"
  • Wants to convert a folder of documents (PPTX, PDF, DOCX, XLSX) for agent context
  • Mentions "convert and chunk", "ingest for agent", or "memory pipeline"
  • Has added new files and wants them processed
  • "Use memory" / semantic retrieval: User says "use memory", "search memory", "what does memory say about X", "from our content", "from ABD materials", "what do we have on [topic]" — run search_memory "<query>" and inject results into your response
  • Adding content from any folder: When adding a folder's content to memory, run link_workspace_source.py --path <folder> first (on request) if the link does not yet exist

CRITICAL: Respect User Scope

  • One file: When user says "one file", "this file", "just X.pdf", or names a specific file → use --file <path>. Process ONLY that file.
  • Folder: When user says "folder", "all", "everything in X", or explicitly requests a folder → use --memory <path>.
  • Do NOT process entire folders when the user asked for a single file.

OneDrive Folder Clarification

When the user refers to "OneDrive", "OneDrive folder", "slash OneDrive", or similar without specifying which OneDrive:

  • Ask which OneDrive folder they mean (e.g. "OneDrive - Agile by Design", "OneDrive - Personal", "OneDrive - Company Name").
  • If multiple OneDrive folders exist under the user's home and the configured path is missing or unclear, scripts will list them and prompt for choice — do not guess; ask the user to pick.
  • If the user's request is ambiguous (e.g. "use OneDrive" or "get to OneDrive"), ask: "Which OneDrive folder do you want to use? For example: OneDrive - Agile by Design, OneDrive - Personal, or another?"

Source Folder Structure

source/ (under workspace root) contains content sources. Workspace folders can be linked for skill access:

  • source/<link_name> — Junction/symlink to your content folder

Use link_workspace_source.py to create links before converting. Set CONTENT_MEMORY_ROOT if workspace root differs from cwd.

Pipeline Overview

  1. Convert: Use markitdown to convert supported files to markdown. Images extracted and referenced. SharePoint links: When source is in OneDrive, SharePoint URLs are auto-injected from sharepoint_mapping.json so links work for anyone.
  2. Chunk: Split large markdown by slides (decks) or headings (docs). Small files stay as single chunks.
  3. Sync SharePoint URLs: Replace source paths with SharePoint URLs; fix URL order; add wdSlideIndex (pptx) / page (pdf) for direct slide/page links. Run automatically in index_memory --path pipeline.
  4. Embed + Index (RAG): Embed chunks with sentence-transformers, store in ChromaDB for semantic search.

Semantic Search (RAG)

When the user says "use memory", "search memory", "what does memory say about X", "from our content", or asks about ABD materials:

  1. Run from workspace root: python skills/ace-context-to-memory/scripts/search_memory.py "<query>" --k 5
  2. Inject the returned chunks into your response
  3. Cite sources (path, slide/page) when using retrieved content

Requires RAG deps: pip install -r skills/ace-context-to-memory/requirements-rag.txt

See content/rag-retrieval.md for trigger phrases and agent flow.

Scripts

Run from workspace root. Scripts in skills/ace-context-to-memory/scripts/.

RAG (vector search):

  • index_memory.py --path <source_folder> — full pipeline: convert → chunk → sync SharePoint → embed (or chunk + embed if convert already ran)
  • index_memory.py --replace — rebuild entire vector index from all memory
  • search_memory.py "<query>" [--k 5] [--format text|json] — semantic search; returns top-k chunks

Convert + chunk:

  • link_workspace_source.py --path <folder> [--name <link_name>] or --workspace <folder_name>run on request when adding content to memory; creates junction/symlink in source/ so skills can access the folder
  • convert_to_markdown.py --file <file_path>single file only (use when user asks for one file); writes markdown alongside the source file (same folder)
  • convert_to_markdown.py --memory <source_path> — folder (all supported files). When source is in OneDrive, SharePoint URLs are auto-injected via sharepoint_mapping.json.
  • chunk_markdown.py --path <source_folder> [--memory <memory_name>] — reads from source, writes to memory//
  • embed_and_index.py [--memory <memory_name>] [--replace] — embed chunks from memory// into FAISS index (called by index_memory)
  • sync_sharepoint_urls.py [--memory <memory_name>] — run after chunk when source has source/... | https://...; replaces with SharePoint URL, fixes URL order, adds wdSlideIndex (pptx) / page (pdf) for direct links
  • add_sharepoint_mapping.py --prefix "OneDrive - X" --base "<url>" — add OneDrive→SharePoint mapping. Paste URL from browser; script derives base. Use when convert warns about missing mapping.

Export (markdown → Excel, Word, PDF):

  • markdown_to_excel.py <input.md> [output.xlsx] — generic md → Excel (headings, tables, paragraphs)
  • markdown_to_docx.py <input.md> [output.docx] — md → Word (requires pandoc)
  • markdown_to_pdf.py <input.md> [output.pdf] — md → PDF (requires pandoc + PDF engine). Use --pdf-engine weasyprint if pdflatex not installed.

Requires: pip install -r requirements-export.txt (openpyxl, pypandoc). Project-specific exports (e.g. JBOM format) stay in workspace.

When adding content from a folder to memory: Run link_workspace_source.py first if the link does not yet exist. Examples:

python scripts/link_workspace_source.py --path "C:/docs/RFQ materials" --name "JBOM"
python scripts/link_workspace_source.py --workspace "Scotia Talent Journey Based Operating Model" --name "JBOM Agile Support"

SharePoint link creation: When copying content from OneDrive, local paths are not shareable. Configure sharepoint_mapping.json (OneDrive prefix → SharePoint base URL). Convert will auto-inject SharePoint URLs so links work for anyone. If you run convert with OneDrive content but no mapping, you'll get a warning with instructions. Add the mapping with add_sharepoint_mapping.py --prefix "OneDrive - X" --base "<paste_url_from_browser>" (paste any file URL; script derives the base).

See content/script-invocation.md for script usage; content/rag-retrieval.md for semantic search flow.

Build

cd skills/ace-context-to-memory
python scripts/build.py

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.45%
按下载量换算24

Claude

28.75%
按下载量换算20

Cursor

20.81%
按下载量换算15

Gemini CLI

8.47%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills