recall_context
Retrieve cached context at task start to avoid re-reading files and expensive operations. Supports glob patterns for batch lookups.
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:*") |