# Send Memoria to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "memoria",
    "name": "Memoria",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/kitakitsune0x/memoria",
    "canonicalUrl": "https://clawhub.ai/kitakitsune0x/memoria",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/memoria",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=memoria",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "INSTRUCTIONS.md",
      "README.md",
      "SKILL.md",
      "bin/memoria.js",
      "package-lock.json",
      "package.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "memoria",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T11:33:54.527Z",
      "expiresAt": "2026-05-12T11:33:54.527Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=memoria",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=memoria",
        "contentDisposition": "attachment; filename=\"memoria-0.2.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "memoria"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/memoria"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/memoria",
    "downloadUrl": "https://openagent3.xyz/downloads/memoria",
    "agentUrl": "https://openagent3.xyz/skills/memoria/agent",
    "manifestUrl": "https://openagent3.xyz/skills/memoria/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/memoria/agent.md"
  }
}
```
## Documentation

### Environment

Set the vault path so all commands work:

export MEMORIA_VAULT=~/memory

If not set, pass -v ~/memory on every command.

### Session Lifecycle

Run at the start and end of every session:

memoria wake                                          # start session, restore context
memoria checkpoint --working-on "<task>"               # mid-session save
memoria sleep "<summary>" --next "<next steps>"        # end session, write handoff

### Storing Memories

memoria remember <type> "<title>" --content "<details>"
memoria sync --push                                    # always sync after storing

Types: fact, decision, preference, lesson, commitment, relationship, project

### What to capture (proactively, without being asked)

SignalTypeHuman shares personal info (name, location, health, settings)factA decision is made with reasoningdecisionHuman says "I prefer / always / never..."preferenceAn insight or lesson emergeslessonA promise, goal, or deadline is setcommitmentA person is mentioned with contextrelationshipAn ongoing project is discussedproject

If in doubt, store it. Better to have a memory you never look up than to forget something.

### Proactive capture triggers

Listen for these patterns and store immediately:

"I always...", "I never...", "I prefer..." -> preference
"Let's go with...", "We decided...", "The plan is..." -> decision
"I learned that...", "Turns out...", "The trick is..." -> lesson
"My name is...", "I take...", "I live in...", "I work at..." -> fact
"I need to...", "I promised...", "By next week..." -> commitment
"Talk to Alice about...", "Bob said..." -> relationship
"We're building...", "The project is..." -> project

### Examples

memoria remember fact "Human lives in Tokyo" --content "Mentioned during onboarding"
memoria remember preference "No emojis in code" --content "Explicitly requested"
memoria remember decision "Use Fly.io" --content "Chosen over Vercel for APAC latency"
memoria sync --push

### Searching

Before making decisions or giving advice, check existing memories:

memoria search "<query>"

### Other Commands

memoria store <category> "<title>" --content "<body>"  # store in explicit category
memoria list [category]                                 # list documents
memoria get <id>                                        # get specific document
memoria status                                          # vault stats + session state
memoria sync --pull                                     # pull Notion changes to local

### Notion Setup

One-time configuration:

memoria setup-notion --token <token> --page <page-id>

After setup, always run memoria sync --push after storing memories.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: kitakitsune0x
- Version: 0.2.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-05T11:33:54.527Z
- Expires at: 2026-05-12T11:33:54.527Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/memoria)
- [Send to Agent page](https://openagent3.xyz/skills/memoria/agent)
- [JSON manifest](https://openagent3.xyz/skills/memoria/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/memoria/agent.md)
- [Download page](https://openagent3.xyz/downloads/memoria)