amplify_context_load
Load saved context for a project at session start to recall past decisions, lessons, and patterns.
Instructions
Load saved context (decisions, lessons, patterns) for the current project at the start of a session.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project | No | Project name. Use this OR project_path. | |
| project_path | No | Absolute path to the project root; the final directory name is used as the project name. | |
| types | No | Which data types to load. Defaults to ['lessons','decisions','patterns']. Pass 'all' to include everything. | |
| max_tokens | No | v1.4.1 — soft token budget for the rendered context. Default 4000. If exceeded, lower-priority lessons are dropped and the output notes 'Showed top N of M'. Use ~20000 to see everything in a large project. | |
| priority | No | v1.4.1 — how to rank lessons when truncating. 'smart' (default) = frequency × 2 + confidence × 3 + recency_bonus + status_weight. 'recent' = newest first. 'frequency' = most-repeated first. |