recall_context
Retrieve previously cached context to avoid re-reading files. Use at task start to check for relevant cached information before performing expensive operations.
Instructions
Retrieve previously saved context from the cache. Returns the saved content or null if not found. Use this at the START of any task to check if you already have relevant context cached, before doing expensive operations like reading many files. Supports glob patterns: "file:" matches all file summaries, "arch" matches architecture-related keys.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| instance_id | Yes | UUID of the cache instance | |
| key | Yes | The key to look up (supports glob pattern like "file:*") |