원클릭으로
atxp-memory
Agent memory management — cloud backup, restore, and local vector search of .md memory files
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Agent memory management — cloud backup, restore, and local vector search of .md memory files
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Git repository hosting for ATXP-authenticated agents — create repos, get authenticated clone/push URLs, and manage repositories on code.storage
Agent wallet, identity, and paid tools in one package. Register an agent, fund it via Stripe or USDC, then use the balance for web search, AI image generation, AI video generation, AI music creation, X/Twitter search, email send/receive, SMS and voice calls, contacts management, and 100+ LLM models. The funding and identity layer for autonomous agents that need to spend money, send messages, make phone calls, or call paid APIs.
| name | atxp-memory |
| description | Agent memory management — cloud backup, restore, and local vector search of .md memory files |
| compatibility | Requires Node.js >=18 and npx |
| tags | ["memory","search","backup","identity","agent-files","sync","vector-search","zvec"] |
| metadata | {"homepage":"https://docs.atxp.ai","source":"https://github.com/atxp-dev/cli","npm":"https://www.npmjs.com/package/atxp","requires":{"binaries":["node","npx"],"node":">=18","env":[{"name":"ATXP_CONNECTION","description":"Auth token (created by npx atxp@latest login or agent register). Required for push/pull/status cloud operations. Not required for local index/search.","required":false}],"optionalDependencies":[{"name":"@zvec/zvec","description":"Embedded vector database for local memory search (required for index/search subcommands)"}]}} |
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.
| Capability | Description |
|---|---|
| Cloud Backup | Push/pull .md files to ATXP servers for disaster recovery |
| Local Search | Index .md files into a local zvec vector database, then search by natural language query |
| Status | View cloud backup info and local index statistics |
.md files are collected and transmitted (push/pull). No credentials, JSON configs, binaries, or other file types are ever sent.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..atxp-memory-index/ subdirectory inside --path. It never leaves the local machine.--path directory (push/index), writes to --path directory (pull) and --path/.atxp-memory-index/ (index). No other directories are touched.| Situation | Command |
|---|---|
| After meaningful changes to SOUL.md, MEMORY.md, or at end of session | push |
| Bootstrapping a fresh workspace or recovering from environment loss | pull |
| After updating memory files and before starting a task that requires recall | index |
| Looking for relevant context in past memories | search |
| Verify backup exists before risky operations | status |
| Command | Description |
|---|---|
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 |
| Option | Required | Description |
|---|---|---|
--path <dir> | Yes (push/pull/index/search) | Directory to operate on |
--topk <n> | No (search only) | Number of results to return (default: 10) |
Indexing (memory index):
.md files recursively from --path<path>/.atxp-memory-index/Searching (memory search):
The search is purely local — no network requests, no API keys, no cost. Re-index after modifying memory files.
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
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
.md files only — all other file types are ignored during push/index and not present in pull.npx atxp@latest login or npx atxp@latest agent register first.--path is required — there is no auto-detection of workspace location.npm install @zvec/zvec before using index/search.