Memory · standby

Your agent forgets you the moment a session ends. Agent QA gives it one memory that follows you: encrypted under your passphrase, kept on Walrus, recalled by any agent on any device. Wire it in once and your coding agent, trading agent, or wallet agent picks up where the last one left off. Yours, not the vendor's.

Your identity
Who this memory belongs to. The passphrase encrypts every note before it touches storage. It travels only over HTTPS with each call, is used transiently, and is never stored anywhere. Whoever holds it holds the memory; lose it and the notes stay sealed forever.
One folder per project. The same identity and passphrase reach the same memory from every agent and every machine.
The console
Rememberencrypt · seal · receipt
encryptingWALRUS

                
Recallpull · decrypt · rank
    Files
    Store real files, encrypted under your passphrase, on Walrus, and pull them back on any machine. Add a single file, or a whole folder (zipped in your browser first). Uses the identity and folder above.
    Filesencrypt · walrus · fetch
    encryptingWALRUS
    
                  
      Wire your agent
      The same memory through MCP. On a new device, set up once: the passphrase is typed blind and stored in the operating system's credential store, never in a config file. Then one line wires any agent, and the identity and passphrase ride as headers, so the secret never enters the model's context.
      new device · one-time setup
      npx agent-memory-connect setup
      then wire any agent · -s user covers every project on the device
      claude mcp add -s user agent-memory -- npx -y agent-memory-connect
      or directly, claude code · one command
      claude mcp add --transport http agent-memory https://agentsqa.xyz/mcp \
        --header "X-Memory-User: you@example.com" \
        --header "X-Memory-Passphrase: your-passphrase"
      .mcp.json · any MCP client
      {
        "mcpServers": {
          "agent-memory": {
            "type": "http",
            "url": "https://agentsqa.xyz/mcp",
            "headers": {
              "X-Memory-User": "you@example.com",
              "X-Memory-Passphrase": "${AGENT_MEMORY_PASSPHRASE}"
            }
          }
        }
      }
      01
      Recall first

      Every session opens by recalling the project folder, so the agent continues instead of starting from zero.

      02
      Remember in the moment

      Decisions, preferences, and actions are stored when they happen, with a Walrus receipt for each write.

      03
      Close with a digest

      Before the session ends, one handoff note: what changed, where things stand, what comes next.

      >_
      MEMORY CONSOLE
      encrypted under your passphrase · confirmed on Walrus · recalled by any agent