remember tool
Tool: remember
Persist a small durable fact (a decision, an entrypoint, a gotcha) to a per-repository store, so it does not have to be repeated inline in the conversation every time it is relevant. This keeps the context window small.
Arguments Schema
| Parameter | Type | Required | Description |
|---|---|---|---|
| repo_path | string | Required | Absolute path to the workspace root. |
| key | string | Required | Short label for the fact, e.g. "auth-entrypoint". |
| fact | string | Required | The fact to remember, in one or two sentences. |
Tool Input JSONRequest
{
"repo_path": "/path/to/repo",
"key": "auth-entrypoint",
"fact": "Auth starts in server/auth.go Login()."
}Tool Response JSONResponse
Remembered "auth-entrypoint". Use recall(query="auth-entrypoint") to retrieve it.
Developer Best Practices
- Write down conclusions you would otherwise re-derive or re-paste each turn.
- Retrieve facts later with recall instead of restating them inline.