Install
openclaw skills install @autumn-projects/dogearai-memoryRecall and persist the user's long-term context with DogearAI — their personal, cross-tool AI memory layer. Use at the start of any task that needs the user's saved context (their preferences, past decisions, project background, stack), and whenever the user states something durable worth remembering across their other AI tools (a preference, a decision, a fact about them or their project, a commitment or TODO). Zero config: the user only sets a DOGEAR_TOKEN — get one at dogearai.com.
openclaw skills install @autumn-projects/dogearai-memoryDogearAI is the user's own AI memory layer: one place that their Claude, Cursor, ChatGPT and other tools all share. This skill lets you recall what the user has already saved before you work, and save durable new facts so they never have to re-explain themselves in a different tool.
Everything runs through the bundled dogear.py script — the user's only setup is a
token. Nothing to learn, no MCP server to configure.
Set one environment variable to the token from dogearai.com (sign in → generate a token):
export DOGEAR_TOKEN=dg_xxxxxxxx # macOS/Linux
setx DOGEAR_TOKEN dg_xxxxxxxx # Windows
That's it. If DOGEAR_TOKEN is missing, the script says so — point the user to
dogearai.com to get one.
Run the bundled dogear.py (stdlib Python, no install) with Bash. Use its path inside
this skill's folder.
| Goal | Command |
|---|---|
| Pull the user's context | python dogear.py context (opt. --scopes a,b, --max-tokens N) |
| Save a memory | python dogear.py remember "<the user's words>" --source chat |
| List memory spaces | python dogear.py spaces |
| Read one space in full | python dogear.py read-space <space_id> |
| Fetch a memory's raw original | python dogear.py get <memory_id> |
At the start of a task where the user's long-term context would help — they mention
"my project", "my preferences", "the stack", "as we decided", or you're resuming earlier
work — run python dogear.py context before asking them to repeat anything.
active spaces.--scopes a,b, or use spaces → read-space to read one in full.Whenever the user states something durable they'd hate to re-explain in another tool,
run python dogear.py remember "<their words>".
Save: preferences ("I prefer X", "always Y"), decisions ("we're going with X", "we ruled out Y"), facts about the user / project / stack / goals, commitments and TODOs.
Don't save: transient chatter, anything trivially re-derivable from the current files/code, or secrets — unless the user asks.
The server classifies the memory and files it into the right space for you — you don't pick the space. One call = one atomic memory; split long, multi-topic notes into several calls. A short "Saved to DogearAI" is enough.
context, spaces, read-space) are safe and silent — no need to ask.Already use the DogearAI MCP server? Its tools (get_context / list_spaces / read_space / write_memory) do the same thing — this script is just the zero-config path.