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

atxp-memoryATXP 内存

Agent Skill

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

总安装

16,464

周安装

686

GitHub Stars

9

下载量

5,488
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/atxp-dev/cli --skill atxp-memory

简介

代理 .md 的云备份、恢复和本地矢量搜索

  • 内存文件。
  • 将 Markdown 内存文件推/拉到 ATXP 云服务器,以进行灾难恢复和工作区引导;仅.md
  • 传输文件,而不传输凭据或配置
  • 将本地内存索引到 zvec 矢量数据库中,并使用局部敏感哈希嵌入通过自然语言查询进行搜索,完全离线,无需身份验证
  • 按标题边界对内存进行分块,并返回包含文件路径、标题、行号和相似性分数的排名结果

SKILL.md

ATXP Memory — Agent Memory Management

Manage your agent's .md memory files: back up and restore to/from ATXP cloud servers, and search your local memories using zvec vector similarity search.

Capabilities

CapabilityDescription
Cloud BackupPush/pull .md files to ATXP servers for disaster recovery
Local SearchIndex .md files into a local zvec vector database, then search by natural language query
StatusView cloud backup info and local index statistics

Security Model

  • Only .md files are collected and transmitted (push/pull). No credentials, JSON configs, binaries, or other file types are ever sent.
  • Files are sent to ATXP servers over HTTPS, associated with the authenticated agent's identity.
  • push replaces the server snapshot entirely (latest snapshot only, no history).
  • pull is non-destructive — it writes server files to the local directory but does not delete local files absent from the server.
  • Local search index is stored in a .atxp-memory-index/ subdirectory inside --path. It never leaves the local machine.
  • index and search do not require authentication or network access.
  • Filesystem access: reads from --path directory (push/index), writes to --path directory (pull) and --path/.atxp-memory-index/ (index). No other directories are touched.
  • No modification of OpenClaw config or auth files.

When to Use

SituationCommand
After meaningful changes to SOUL.md, MEMORY.md, or at end of sessionpush
Bootstrapping a fresh workspace or recovering from environment losspull
After updating memory files and before starting a task that requires recallindex
Looking for relevant context in past memoriessearch
Verify backup exists before risky operationsstatus

Commands Reference

CommandDescription
npx atxp@latest memory push --path <dir>Recursively collect all *.md files from <dir> and upload to server
npx atxp@latest memory pull --path <dir>Download backup from server and write files to <dir>
npx atxp@latest memory index --path <dir>Chunk .md files by heading and build a local zvec search index
npx atxp@latest memory search <query> --path <dir>Search indexed memories by similarity
npx atxp@latest memory status [--path <dir>]Show cloud backup info and/or local index stats

Options

OptionRequiredDescription
--path <dir>Yes (push/pull/index/search)Directory to operate on
--topk <n>No (search only)Number of results to return (default: 10)

How Local Search Works

  1. Indexing (memory index):

- Scans all .md files recursively from --path - Splits each file into chunks at heading boundaries (h1/h2/h3) - Converts each chunk into a 256-dimensional feature vector using locality-sensitive hashing (unigrams + bigrams) - Stores vectors and metadata in a local zvec database (HNSW index) at <path>/.atxp-memory-index/

  1. Searching (memory search):

- Converts the query text into the same vector representation - Performs approximate nearest neighbor search via zvec's HNSW index - Returns the top-k most similar chunks with file paths, headings, line numbers, and similarity scores

The search is purely local — no network requests, no API keys, no cost. Re-index after modifying memory files.

Path Conventions

Typical OpenClaw workspace paths:

~/.openclaw/workspace-<id>/
~/.openclaw/workspace-<id>/SOUL.md
~/.openclaw/workspace-<id>/MEMORY.md
~/.openclaw/workspace-<id>/memory/
~/.openclaw/workspace-<id>/AGENTS.md
~/.openclaw/workspace-<id>/USER.md

Backward Compatibility

The backup command is still accepted as an alias for memory:

npx atxp@latest backup push --path <dir>   # works, same as memory push
npx atxp@latest backup pull --path <dir>   # works, same as memory pull
npx atxp@latest backup status              # works, same as memory status

Limitations

  • .md files only — all other file types are ignored during push/index and not present in pull.
  • Latest snapshot only — each push overwrites the previous backup. There is no version history.
  • Requires ATXP auth for cloud operations — run npx atxp@latest login or npx atxp@latest agent register first.
  • --path is required — there is no auto-detection of workspace location.
  • Local search requires @zvec/zvec — install with npm install @zvec/zvec before using index/search.
  • Feature-hash embeddings — local search uses statistical text hashing, not neural embeddings. It works well for keyword and phrase matching but is not a full semantic search. For best results, use specific terms from your memory files.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.38%
按下载量换算1,997

Claude

27.54%
按下载量换算1,511

Cursor

18.07%
按下载量换算992

Gemini CLI

8.99%
按下载量换算493

安全审计

Gen Agent Trust Hub

未通过

Socket

可疑

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills