recall_context
Retrieve cached context to avoid redundant operations like reading multiple files. Check for existing data before performing expensive tasks using key-based lookup with glob pattern support.
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:*") |