kira_personal_brief
Retrieve recent personal failure notes stored locally to learn from past mistakes and avoid repeating them. Filter by project context for relevance.
Instructions
Surface your most recent PERSONAL scars — the private, local-only failure notes recorded by kira_record_failure under ~/.kira/personal-scars/. Call this at the START of a session (ideally from a SessionStart hook) so you begin already aware of the walls you hit last time on this machine. Returns the top-N scars by recency (most recent first), each with its mistake and what to do instead. Pass 'limit' to change how many, and 'contexts' to keep only scars relevant to the current project. Personal scars are LOCAL-ONLY — this reads them from disk and never touches the network.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | How many recent scars to return (default 5, max 50). | |
| contexts | No | Optional project context tags (e.g., ['nextjs', 'typescript']). When given, only scars sharing at least one context are returned; untagged scars are always kept (they apply everywhere). |