memory_record
Record a debugging failure and the recovery that resolved it, so future sessions skip the dead end and reuse the workaround. Use after any user-assisted fix.
Instructions
Record a failure and the recovery that worked, so a later session can skip the dead end. Call it after any user-assisted recovery or non-obvious workaround. All four fields are required and validated — a vague entry is worse than none, because it costs context on every future lookup.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| shared | No | Write to the shared team store instead of local, if one is configured. | |
| failure | Yes | What went wrong, concretely. e.g. 'Clicking Save did nothing because the form was still validating.' | |
| pattern | Yes | The reusable rule for next time. e.g. 'Wait for the validation spinner to clear before clicking Save.' | |
| category | Yes | What kind of problem this was. | |
| recovery | Yes | What actually resolved it, as steps someone could repeat. | |
| url_pattern | No | URL substring this applies to, so it can be matched to a page later. |